diff --git a/AUTOMATIC_VERSIONING.md b/AUTOMATIC_VERSIONING.md deleted file mode 100644 index a52b4b24..00000000 --- a/AUTOMATIC_VERSIONING.md +++ /dev/null @@ -1,223 +0,0 @@ -# NOSTR Core Library - Automatic Versioning System - -## Overview - -The NOSTR Core Library now features an automatic version increment system that automatically increments the patch version (e.g., v0.2.0 → v0.2.1) with each build. This ensures consistent versioning and traceability across builds. - -## How It Works - -### Version Format -The library uses semantic versioning with the format: `vMAJOR.MINOR.PATCH` - -- **MAJOR**: Incremented for breaking changes (manual) -- **MINOR**: Incremented for new features (manual) -- **PATCH**: Incremented automatically with each build - -### Automatic Increment Process - -1. **Version Detection**: The build system scans all git tags matching `v*.*.*` pattern -2. **Highest Version**: Uses `sort -V` to find the numerically highest version (not chronologically latest) -3. **Patch Increment**: Increments the patch number by 1 -4. **Git Tag Creation**: Creates a new git tag for the incremented version -5. **File Generation**: Generates `nostr_core/version.h` and `nostr_core/version.c` with build metadata - -### Generated Files - -The system automatically generates two files during each build: - -#### `nostr_core/version.h` -```c -#define VERSION_MAJOR 0 -#define VERSION_MINOR 2 -#define VERSION_PATCH 1 -#define VERSION_STRING "0.2.1" -#define VERSION_TAG "v0.2.1" - -#define BUILD_DATE "2025-08-09" -#define BUILD_TIME "10:42:45" -#define BUILD_TIMESTAMP "2025-08-09 10:42:45" - -#define GIT_HASH "ca6b475" -#define GIT_BRANCH "master" - -// API functions -const char* nostr_core_get_version(void); -const char* nostr_core_get_version_full(void); -const char* nostr_core_get_build_info(void); -``` - -#### `nostr_core/version.c` -Contains the implementation of the version API functions. - -## Usage - -### Building with Auto-Versioning - -All major build targets automatically increment the version: - -```bash -# Build static library (increments version) -./build.sh lib - -# Build shared library (increments version) -./build.sh shared - -# Build all libraries (increments version) -./build.sh all - -# Build examples (increments version) -./build.sh examples - -# Install to system (increments version) -./build.sh install -``` - -### Non-Versioned Builds - -Some targets do not increment versions: - -```bash -# Clean build artifacts (no version increment) -./build.sh clean - -# Run tests (no version increment) -./build.sh test -``` - -### Using Version Information in Code - -```c -#include "version.h" - -// Get version string -printf("Version: %s\n", nostr_core_get_version()); - -// Get full version with timestamp and commit -printf("Full: %s\n", nostr_core_get_version_full()); - -// Get detailed build information -printf("Build: %s\n", nostr_core_get_build_info()); - -// Use version macros -#if VERSION_MAJOR >= 1 - // Use new API -#else - // Use legacy API -#endif -``` - -### Testing Version System - -A version test example is provided: - -```bash -# Build and run version test -gcc -I. -Inostr_core examples/version_test.c -o examples/version_test ./libnostr_core.a ./secp256k1/.libs/libsecp256k1.a -lm -./examples/version_test -``` - -## Version History Tracking - -### View All Versions -```bash -# List all version tags -git tag --list - -# View version history -git log --oneline --decorate --graph -``` - -### Current Version -```bash -# Check current version -cat VERSION - -# Or check the latest git tag -git describe --tags --abbrev=0 -``` - -## Manual Version Management - -### Major/Minor Version Bumps - -For major or minor version changes, manually create the appropriate tag: - -```bash -# For a minor version bump (new features) -git tag v0.3.0 - -# For a major version bump (breaking changes) -git tag v1.0.0 -``` - -The next build will automatically increment from the new base version. - -### Resetting Version - -To reset or fix version numbering: - -```bash -# Delete incorrect tags (if needed) -git tag -d v0.2.1 -git push origin --delete v0.2.1 - -# Create correct base version -git tag v0.2.0 - -# Next build will create v0.2.1 -``` - -## Integration Notes - -### Makefile Integration -- The `version.c` file is automatically included in `LIB_SOURCES` -- Version files are compiled and linked with the library -- Clean targets remove generated version object files - -### Git Integration -- Version files (`version.h`, `version.c`) are excluded from git via `.gitignore` -- Only version tags and the `VERSION` file are tracked -- Build system works in any git repository with version tags - -### Build System Integration -- Version increment is integrated directly into `build.sh` -- No separate scripts or external dependencies required -- Self-contained and portable across systems - -## Example Output - -When building, you'll see output like: - -``` -[INFO] Incrementing version... -[INFO] Current version: v0.2.0 -[INFO] New version: v0.2.1 -[SUCCESS] Created new version tag: v0.2.1 -[SUCCESS] Generated version.h and version.c -[SUCCESS] Updated VERSION file to 0.2.1 -``` - -## Troubleshooting - -### Version Not Incrementing -- Ensure you're in a git repository -- Check that git tags exist with `git tag --list` -- Verify tag format matches `v*.*.*` pattern - -### Tag Already Exists -If a tag already exists, the build will continue with the existing version: - -``` -[WARNING] Tag v0.2.1 already exists - using existing version -``` - -### Missing Git Information -If git is not available, version files will show "unknown" for git hash and branch. - -## Benefits - -1. **Automatic Traceability**: Every build has a unique version -2. **Build Metadata**: Includes timestamp, git commit, and branch information -3. **API Integration**: Version information accessible via C API -4. **Zero Maintenance**: No manual version file editing required -5. **Git Integration**: Automatic git tag creation for version history diff --git a/VERSION b/VERSION index 0c62199f..17b2ccd9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.2.1 +0.4.3 diff --git a/debug.log b/debug.log index 3e3acbe8..4969775e 100644 --- a/debug.log +++ b/debug.log @@ -4432,3 +4432,19114 @@ Final event: { [11:50:58.027] RECV nos.lol:443: ["EVENT","pool_1_1759419816",{"content":"How to save your progress in Ghost of Yotei\n#GhostofYotei #GamingGuide #GameTips Learn\n how to save your game in Ghost of Yotei. This guide explains manual \nsaves at shrines, autosave triggers, and tips to secure your progress \n...\nhttps://xboxplay.games/ghost-of-yotei/how-to-save-your-progress-in-ghost-of-yotei-67657","created_at":1759420257,"id":"92d07c3f1344e19dcc760074ed269b7fa8c2be13714fb63b7e41179ee636f3eb","kind":1,"pubkey":"2ff7f5a3df59fd99bd1625f4e4d2b252ccf36b596ce8651bcf9896c76d04cb81","sig":"1a400b052955f472df645b2c23b6ead1035693e92c706b866598f80b23d207123e9f0f739064e33fa106455918ccc321ac7d8cc900b70b79273ae51f6695c819","tags":[["t","ghostofyotei"],["t","gamingguide"],["t","gametips"]]}] [11:51:01.409] SEND relay.laantungir.net:443: ["CLOSE", "pool_1_1759419816"] [11:51:01.409] SEND nos.lol:443: ["CLOSE", "pool_1_1759419816"] + +=== NOSTR WebSocket Debug Log Started === +[14:08:13.241] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:08:13.241] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:08:13.317] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759428493"] +[14:08:13.428] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"those cat memories flicker like forgotten pixels on an old screen, warm and fleeting. zap if it sparks joy, or drop one on the canvas to make your whiskers eternal. ⚡","created_at":1759428488,"id":"8fa5470afec73c51c4eba20352bfde70ae38fb59f5666319d67a449bbf4a9bee","kind":1,"pubkey":"5c22920b9761496e931f53a382c2def2ce9d24ebf0961603eda79f1b24b9f2bf","sig":"226570d55f8d73cdcef24042a61c85e255bb5918a0fbab7977741c0acf6f76d0c113b6833e5770983bb21d6225973f163351636ebc1024dd87efa25543340c72","tags":[["e","4cc87e850c36e3434d35a511079543b082a200ac4b33d90e3fc36d5d8459a4b1","","reply"],["p","4a0cfe8eb8f6fa53fb2c25a193353c6ed5c5fe3670695b2b4a909bbe04d5fe1c"]]}] +[14:08:13.489] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか飼ってたうさぎにみんな雑草食わせてたな\nカスすぎる","created_at":1759428486,"id":"0033f792183704bdf90fd770ef339533d1833479c759d42e7ff30b03af352577","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"37a6ea660a35bb066eed6dd32411cc1bd6ca81c82ef05cb6a75b9bafc7eeb4720d75f4377432911e16fb2a2b7a84ba06453d2d5110f0fd8a1e2fe21b30aa77ba","tags":[]}] +[14:08:13.549] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"21,000,000 style points if they’re phoney and some sucker buys them on magic eden. 🙄","created_at":1759428484,"id":"6d4b9d67728cf89a0c798df438138a24673bc336ecde676da5be908326006dff","kind":1,"pubkey":"35fb312077bd92015a22dc6ddceb5f3347b55cd666f57a9bbb9c6812540eaa6e","sig":"081dacf78ead94d86a877e562059bf7a5379501846baa21ccab0690148522b5c310a4b8c1aa5880d3697cf48f2d2e943472e868f05405e0e3881354ca361d0f4","tags":[["e","23d6b50cb0958234765961145e09574786b9495edd859faf82ffe740ca9acab2","","root"],["p","8cda1daafb2df8daf4500533cba69b645afa0caf7136e341be1b66a2e9e5bdd8","","mention"]]}] +[14:08:13.610] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:08:13.789] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Its over for core. Run knots.","created_at":1759428493,"id":"d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"869a6bee32ba5789b8b6d13a91f59c3d8bbad7fd617b06e2730eac24252d5a221340df7f1725c2d45ce226100a8c533884caf7294ee538ee044a87fa3b38ed0c","tags":[["alt","A short note: Its over for core. Run knots."],["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","wss://relay.orly.dev/","root","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","wss://relay.sovereign.app/"]]}] +[14:08:21.029] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔔 Sportovci z Ruska a Běloruska se vrátí na paralympiádu. ‚Jsem z toho zklamaný,‘ říká Sýkora: \n\nMezinárodní paralympijský výbor v minulých dnech zrušil suspendaci Ruska a Běloruska, která platila od vpádu Ruska na Ukrajinu v roce 2022. To formálně umožňuje účast ruských a běloruských sportovců pod svou vlajkou na paralympiádě už za půl roku. „Náš postoj, který je neměnný od začátku ruské agrese, je, že zcela odmítáme účast ruských a běloruských sportovců na hrách,“ říká předseda Českého paralympijského výboru a senátor za ODS Zbyněk Sýkora. \nhttps://www.irozhlas.cz/sport/ostatni-sporty/sportovci-z-ruska-a-beloruska-se-vrati-na-paralympiadu-jsem-z-toho-zklamany-rika_2510021946_adn \n#CzechNews #News #Press #Media","created_at":1759428481,"id":"04520d26d5951105418d1277397f8173275b93c05b09a858a99e912e7cfb95ec","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"02afdfbc2c10bf7d7c18a71eccc4006e75cbf0de76f264f2fd367f97bc5f73351f83d98142e9a95898e03d6da396c9f967b3e38cb4bcd5e3aaadc32557351c8e","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[14:08:27.468] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Looking at it, it seems much more comprehensive than TC2-BBS. \n\n","created_at":1759428505,"id":"792de9f644bf8d7eacf7fe37b41d730c7632204311da558a4d10c380e8ffb1a1","kind":1,"pubkey":"465eb13404d7219cd91c2b4a8a7e308ad4e09bc1298dc08c5eec852e9bf5da09","sig":"6d7831c15c65420ba2efe103a2919872ad4ee0c305e0ee51dcf16aba5b8e48667c84812ddc30986da556854661ac544ebe681f601da799b75966f7b35213d70a","tags":[["p","a87c9bfc4570fe15afdda6c0095ade2d74fb14e3294bff37a965522983bda6a8","wss://nos.lol"],["e","756bfd22773305d5174bc02fff6f4f93d3cf38ef0821aa432d71ad85217964f1","wss://nos.lol","root","a87c9bfc4570fe15afdda6c0095ade2d74fb14e3294bff37a965522983bda6a8"]]}] +[14:08:29.852] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ok.","created_at":1759428511,"id":"a6444e59d093f9ca5fbe7ba1f2197e056bb057bde2199ebcb58a4eeefb0472bc","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"c5c0ef28bed795a2b34da4ba9d192945ff1e3f6100adce12805bd191008965f4cb317e70f69c4266fa2ae741b455b84c3a3914da96b613d54f33e62778f0a702","tags":[["alt","A short note: Ok."],["e","eefe745b5d5e3812450b3a5e591ba2d3607ae87a25bc2fd49866f6595e876438","wss://relay.mostr.pub/","root","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439","wss://relay.mostr.pub/"]]}] +[14:08:30.346] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ashkenazi Jews are European. Period. They are not “from” the Levant. https://youtu.be/Y614o2-sBbo via @YouTube ","created_at":1759428506,"id":"393402a60c0677e47d82b4fa32974ee8a1883f93cc901eb0e39c83c8122a0a83","kind":1,"pubkey":"519d2fb3c354f44f5d4c7cdfc532633daf029bcc7d54beb0cb0f770646f8350f","sig":"e6fc1a18a05b8701ad8cbeba9a488243ccbe6094f4c8344f815401a22b40c05c3d318f0d22fb64765235064dfb77552b7346ac5fcb73e0473a470135d8f1e67f","tags":[["r","https://youtu.be/Y614o2-sBbo"]]}] +[14:08:30.866] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんであんなことがまかりとおってたのか","created_at":1759428510,"id":"e43caa56f935132c3e347c409e09f8689233bece6fdbb84e8264ea956697e9db","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"488185e6080d5b0b7231ff4ea9993e5f6ce06c26ac877b814b3151630efc9c9f800b68579d392cb07ff37dccf7c343e1b648f11f88c2abfc69316854c5953bac","tags":[]}] +[14:08:37.905] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" https://blossom.primal.net/fa2a761c1c9f49dfc3f24f5999c017b943f6ff9e1d3265d64d923822c32584ad.gif ","created_at":1759428518,"id":"5b6139bae847ddd9e0d47eabf3b58c35f3abb88136f7176bf878d86b054a4eb4","kind":1,"pubkey":"30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a","sig":"595af92571c7a2afb326863e24b4dce7f09f546484739e61767ef5b39b1f8040f6a51c3ed08a1870f9ad3af7060fce938b94ed81ea86a6b0d96fb6d50f449670","tags":[["r","wss://nos.lol/"],["r","wss://purplepag.es/"],["r","wss://relay.0xchat.com/"],["r","wss://relay.ingwie.me/"],["r","wss://relay.primal.net/"],["r","wss://relay.nostr.nu/"]]}] +[14:08:42.150] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"たーごいるのアルコール除去のためにビールを開けました","created_at":1759428522,"id":"72a1824962c2f2d2be52c3f26933f5e694c7609ce59350f69f4749a038656ee7","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"db5d0e6f506fcddeb751f193cdf3fd21438eac9d2c6fe50b51f6ec3c3e4769a02c822b54198d450c04531f745e9b153cae4a351fcdca73ea71898b1538d9ecb9","tags":[]}] +[14:08:47.624] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bootifull view 🍑 #Peaches \nhttps://images2.imgbox.com/b0/88/Pr9Cp4it_o.jpg \n#FitAndFabulous ","created_at":1759428526,"id":"30b41c9a4ee6cd42f143b1e0c00a6ff561b5b1567101ab99a4f95d84ca714b58","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"1ecbb283786842698ea727e31d6c37ecfee25dcb9da6d962f0fc01942f7019f9e425712a5f35af56079e1af0c0a03e07390202222dc05c25bde4eda571f31243","tags":[]}] +[14:08:51.108] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What 1 #Bitcoin could buy in 2030? 👀 https://image.nostr.build/ec865623607257a076a5cf5f3e4b7743cb060b273d32ff57ba46360f5076ca9d.jpg","created_at":1759428532,"id":"5d7e27f7302773a8941f044ff918a164c7ac8ac2217da9efecc14dcc79b4d818","kind":1,"pubkey":"df50c179ed670394c4fd54cd3c611d3c0c4c8087c9535586592cd1fb9503ab1f","sig":"64b9a9086dec998fc8c7b3a8f5131a74978e12f38d85cc269d5de3b10130d4552442ad5b199d7128662025bc2e7b4138b928827313f1b63b8704b829579e307b","tags":[["t","Bitcoin"]]}] +[14:08:52.905] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ええ?","created_at":1759428532,"id":"50d6f1d1e78891c992eb43a86a6ec1db5a3b94e03c2179b2aa228674431f5ce5","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"23829695aeaec99f24e60c82067cd88126ec89cb71207d3c762e35f406eeefac61e45e18d6216108af75b72c4849abf2f8f0c6e25501da2a1588bab65796c0cb","tags":[]}] +[14:08:59.325] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My first day buying $1 of BTC each day (1776 sats…a coincidence?) Inauguration Day buy and today’s buy: \nhttps://blossom.primal.net/b424f87217b2a980a3989fe50d3e5f1141e7b66f81c2dd88e0abcb773cce0573.png","created_at":1759428538,"id":"e02b45bd17792715cb9b89c9dc0c43aac10137c98a6e07309fa0f8b21ef42d38","kind":1,"pubkey":"c13d020bbca9a27d651099809af9d4b61ffd46e844f20e477c17cd2a0304d8a3","sig":"d4266719892f75fdbd608e81ee11170108aa7bfd94b2e515ce9cc75e7e1f36b83c148a97f8527adec8ac4aba584c3fb8c68f040fc7564d1034e9e4dae26cd1ff","tags":[]}] +[14:09:07.715] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"わたしがこの缶を飲み切れば。。。!!!!たーごいるは。。。!!!!!!いきかえる。。。。。!!!!","created_at":1759428547,"id":"ba6e83c15899ed73e44a9dd0455882933056691386bd2441ad3be3010993708f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"f39c40507ffa16c2c00113bbba25f220d328874e5a9595f783c0aa631c02cc143d7826597a4089e0b2165a49bd573f25df34edae40cf9e3e5c8824f29bbbb94f","tags":[]}] +[14:09:17.951] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"any chance you’ll have a new tote bag drop anytime soon? in need of a bag for college nostr:npub13ufy4pq004yqhu5gvmrdazuwk69w2f0dva8c2xaj69ds4sjztkxq83kjnw ","created_at":1759428557,"id":"a1c6c98145d6822b710a14dd565da09f163c4eac89dada88dee97de5a346e3e3","kind":1,"pubkey":"c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","sig":"c59e6b5ee47af19b182edb3426b5af0bf039f861871e4f82b489a3790fe7bd89e6521e35b6d7c388961debacec2d2ec5a00e2e4d7a44e9a26213a6e6302dd220","tags":[["p","8f124a840f7d480bf28866c6de8b8eb68ae525ed674f851bb2d15b0ac2425d8c","","mention"]]}] +[14:09:27.757] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" https://blossom.primal.net/bf18c55f10237862bd99fd9ef978aea228bc84866ba0516a648594234915d9b4.gif ","created_at":1759428568,"id":"9a6a4ae12bbb5cafeea1459914c4f81a0908c6f806a49bda08a2a6de374ebe9f","kind":1,"pubkey":"30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a","sig":"531dca8f3c1d7c539a9962509eebf27665a9d4b70721d97f918f98993f80d02be4a568a1b5174e69f5a58b763cb433027c1923eed09b6d5b855008b22d641e3a","tags":[["r","wss://nos.lol/"],["r","wss://purplepag.es/"],["r","wss://relay.0xchat.com/"],["r","wss://relay.ingwie.me/"],["r","wss://relay.primal.net/"],["r","wss://relay.nostr.nu/"]]}] +[14:09:29.367] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"プラスボタン押してMenuが出てくる実装が可愛くて一生やっちゃう","created_at":1759428569,"id":"f19c390bac0de50f0dd08c45315a0188939d86745d5c53e2d297ee838b71d7c5","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"887046ab34800fcd0d09a1719613e9add1b9384fb10f4205b9cb023d11679ab9de99b0d892e4550fbeb47454b236bba10d65cfa0fc66c3606791abb534ae7375","tags":[]}] +[14:09:35.226] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I'm not familiar with any ATM that isn't KYCd. So good to see this outlet though 👍","created_at":1759428574,"id":"2a2e32795df4b20a6dbfc84e0ba711596abfead02495a6ff00d76bb67332175a","kind":1,"pubkey":"f8cd8f48b4e535ab5b9bcffe64a8a3f047e10ec61607239737708849e6a4d9db","sig":"a00f0ea570f03e77f001549f59d7f239506a7e157768c7c64c849268841474840d0974334d7c5ed609bb7fb27f14a3295018f807f360b1ff0afdc1b6d5fdf467","tags":[["e","afd16ea0213dd0f3d8e247aad0daa6b86ffe6458d256d84edfd82ae1971c2686","","root"],["e","e6ef8f6c5ab6c9623f068122eb61fb949c0371a9cf4fb42133c79d7795144130","wss://relay.primal.net","reply"],["p","a60e79e0edad5100d7543b669e513dbc1c2170e8e9b74fdb8e971afd1e0e6813","","mention"]]}] +[14:09:38.115] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"地球儀とかはわりともらったらうれしいかも","created_at":1759428577,"id":"0cd5b1fd69ccfe4cc82b3277f9ce0c8adb887ba7abfdb3432bb268ba40907133","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"1679b392fc76831551cf44993dffd136f7a5df02313ed7dbeb4aab9cb403dc185193d50fba8cc15317d4388b6d3f272dd0ad36de8258d89b973417961326379c","tags":[]}] +[14:09:46.802] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🤩 \nhttps://images2.imgbox.com/25/c2/smOX3YQV_o.jpg \n#FitAndFabulous ","created_at":1759428585,"id":"677f2e640a5b3955b724f519a60a034f5ad2b125b3daf878c00e67d3b3360ba8","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"63fa4be38a44b8b6e28a0050316ca5a2189312de24a84689485405dc33c76f84f0f8e89a4ab52682c206a35583107d2bc238a422730105ff5e06b66248777995","tags":[]}] +[14:09:52.584] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what does nostr:nprofile1qqsqfjg4mth7uwp307nng3z2em3ep2pxnljczzezg8j7dhf58ha7ejgpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtcprfmhxue69uhhxetwv35hgtnwdaekvmrpwfjjucm0d5hszxthwden5te0wpex2mtfw4kjuurjd9kkzmpwdejhgtcuauf96 write about these days","created_at":1759428593,"id":"6773d5165a4f47b90cedb811b76dc57e2b5ff90ad4f95057491fa4a84557fae0","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"933f127d69f724eee9b89133bec379521cd0f5739da4c4e5ac880785015e7545d9934fcc8c4167bb135c23f4fe9dbd50ebd71cd8e7126d7d9bca4813f18749dc","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","94b331a0e33dfa2be0328ff95a0cecf6dd6a30b474142f44645dc3962603f0c3","wss://soloco.nl/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["e","a5489fa92e71ff1e6f52d234770ad2d4b9a823c0be1fe20e6a9f9cd201aed99d","wss://relay.nostr.band/","","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["e","60e97d9db964b129af6b70c76531e1c63feb16b2e2d1d5ff4e7400e99732f857","wss://nostr.mom/","reply","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9","wss://relay.primal.net/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9","wss://relay.primal.net/"]]}] +[14:09:54.084] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Adam has been rugged for 30k btc by Cantor Fitzgerald. He just doesnt know it yet.","created_at":1759428593,"id":"3fa63bb015cad51dfc99c4ed3bca3f9e8abf94af50ce9db4cb55a8d5b138c73a","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"fc2485ec64877ce822decb76e4fbbf0cd63e0169f40ac0b39e8eaf5c230b87cef929cb73cd8f3a89e0659d26df729fc73dd46da446fb1f64dc760d42b02acfa3","tags":[["alt","A short note: Adam has been rugged for 30k btc by Cantor Fitzger..."],["e","99e6dcca5a8c519613e5c220e507bc44de4021a1a12b6bd3ecf766857347b812","wss://nostr.oxtr.dev/","root","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"],["p","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e","wss://purplepag.es/"]]}] +[14:09:55.636] SEND relay.laantungir.net:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:09:55.636] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:09:55.745] RECV relay.laantungir.net:443: ["EOSE","pool_2_1759428595"] +[14:09:55.789] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:10:00.354] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:10 ------------✄","created_at":1759428600,"id":"7dbaa16a1bcda8d6d2d784ab7968fc5733298143a3020b6445067b12f35858d0","kind":1,"pubkey":"b1b4105a564aaddc8ae440a1b03a8ca0f36e0592aec502e84515948919aa52d5","sig":"cf4cc66bbbe454679dff56d7f4f4ec78f9a25e20867918fc1730f882f2dd44bbd1c8907d08a10263176dcbdb1a333ba513a7faca5f302281f1d42d94bc1b9629","tags":[]}] +[14:10:18.220] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 107746.86EUR (5%)\nBTC: 0.002\nEUR: 215\nMethod: SEPA Instant\nCreated: 2025-10-02T18:09:22Z","created_at":1759428617,"id":"817da8dcd363ed48e65a12796e60412216bdc9e38a0d179021dc6a966ccac2d6","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"e59580c8b0a1058d69d69691441fe1ae818e0c4785e7e8d40a326d2003efecfb5465d880f86f7cb6f133bad49832e404411cc7485fbca8efeed8e856db238b0c","tags":[]}] +[14:10:19.539] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The core people all have a finger in the fiat pie, ever single one of them. Notice where Szabo stands, he's not involved in some treasury company or crypto startup, at least not that I'm aware of. \n\n","created_at":1759428620,"id":"55c5961e8e89531134692dc5a547dbda6ca5e448da76d5ee916a96728c81d2b9","kind":1,"pubkey":"8158c3897d607816e5961fe0c1a8e9bf07a4d71aeecceed79be7af007ab23039","sig":"1561150fa4fd1c87917e6c214dc168b80932607e1641d9a4c18f57e4137ed4febdc51f4565e677f17818a6ff466650164608ea580170840ff4111afb04910795","tags":[["p","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e","wss://nos.lol"],["e","99e6dcca5a8c519613e5c220e507bc44de4021a1a12b6bd3ecf766857347b812","wss://nos.lol","root","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"]]}] +[14:10:21.248] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 107746.86EUR (5%)\nBTC: 0.002\nEUR: 215\nMethod: SEPA\nCreated: 2025-10-02T18:09:12Z","created_at":1759428621,"id":"4c8221f70e344dab3e0fb1f928acadfc6ed07cfd5518934d8b6e4f1d09377d78","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"2dab98ca4289841db30d9ce64c502d38d458266edceac4194d1f54df6a9d4a83c8fb4a6752104eee3b8f625c96d63974e3c7ae67344d698a71872bb116998ea3","tags":[]}] +[14:10:24.987] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"何が一番テンション上がるかな\n新校舎かなやっぱり","created_at":1759428624,"id":"ebfe98ae12e44f105c81b840bd90a0aa077446910ca9bfcac66e69f60808f0fe","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"bed376452c0af38146cd9737c797ae0d56e36c18fbc245bc8f4b8eeb6c1010a5b42f7019715013bba3ba0b708a3c733f3d409876c1ec3befba4729c9b9c12918","tags":[]}] +[14:10:26.216] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Bitcoin Lightning Network:\n\n17292 Nodes\n41747 Channels\nAvg capacity 0.0937 BTC\nTotal capacity 3910.8060 BTC\n\n#bitcoin #lightning","created_at":1759428625,"id":"000626edbde8b61018ec3b517677557224cc0426b0a85fd20f741c18769a4f93","kind":1,"pubkey":"c53371872fbe26688f640b3d6df3cba92129a4ad98d60065ab17ea3ca5f35224","sig":"cc3f6f17785a89e9b1f3f7026db468eb069acfa2e12945845e15874e20f55241e6f0609ca58b92672c63d0e7dcdee45abb7b91bc51a3d9cc8c7231de1c580fcc","tags":[["client","nostr-sdk"],["t","bitcoin"],["t","lightning"],["nonce","3167","3"]]}] +[14:10:30.515] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Bitcoin Price Action In Last 24 Hours:\n\nAvg: 118589 USD\nMin: 116853 USD\nMax: 120221 USD\n\n#bitcoin #trade\nhttps://i.ibb.co/PsnMg6nN/0fd41ae03b3c.png","created_at":1759428629,"id":"0007301655649761ea0ea2fe4ba5c06f1dc1057c749bf56c2590b9142c72565b","kind":1,"pubkey":"c53371872fbe26688f640b3d6df3cba92129a4ad98d60065ab17ea3ca5f35224","sig":"1d856b70d9864e9a7a83e827783fe91245c0b1ba0ac064281e8b966f92cb0791321b5393eecffce8ca98b3cdc92da283024a312d69faeeed149d391dacd8ca46","tags":[["client","nostr-sdk"],["t","bitcoin"],["t","trade"],["nonce","2932","3"]]}] +[14:10:35.175] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📰 JPMorgan Says Bitcoin Price Undervalued Relative to Gold Sees Path to 165K Bitcoin Magazine\n\nJPMorgan Says Bitcoin Price Undervalued Relative to Gold, Sees Path to $165K  Bitcoin Magazine\n\n#bitcoin #crypto #news\nhttps://bitcoinmagazine.com/markets/jpmorgan-says-bitcoin-price-undervalued","created_at":1759428634,"id":"00082de9d87b3ef67fffdb6238d6d684366879c0b67b489247fb23913fc2f5a6","kind":1,"pubkey":"c53371872fbe26688f640b3d6df3cba92129a4ad98d60065ab17ea3ca5f35224","sig":"8abb08530798f7acd0f26c279284c513f1e598a1c83151f25683fcfe85d88f1eb0d4d6035351eec8e624a12e0c5e7159b64c3e59d64e39a414b5779589189ec7","tags":[["client","nostr-sdk"],["t","bitcoin"],["t","crypto"],["t","news"],["nonce","3189","3"]]}] +[14:10:39.720] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"黒板が上下に動くと嬉しい","created_at":1759428639,"id":"81a43a696ec5d30dfb72abbe0db6b4f0e092ca9944ba1aa92d01350b379edeca","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"4bed4583b46bab547e01853857c849bf6fd49d1d9a2f5b2764b778ee4764bcc33ec4aaa6d00aeb88032908774ea20fb5340c44cbaa33348a2bfb68d98e63dfe8","tags":[]}] +[14:10:40.136] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"こっちの投稿を読めてないとこで心霊的にエアリプするのは最高にキモい","created_at":1759428639,"id":"91d874b958bdcb92897562774edebea648df00760413deff7d7530f1355791f1","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"5c66451b165eaba9889459bb285a1c440e7dd7513e6f50e9c52c0e8eeba52bfad68e5e7518f27c01dbc827101018227bf22e39f46e89e2ac86e9d53407602e2a","tags":[]}] +[14:10:44.561] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:10:45.327] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"gm frens ☕️ \n\nwe’re so fkn back (again) \n\n#nostr #btc #bitcoin \nhttps://blossom.primal.net/e9915fb561580a18fb978245d863c714f69f900272f6f7fb29758ae3bcb39d88.jpg","created_at":1759428644,"id":"a8fe4273b38ade507db3ed2b5b1e4a35e678d73f47a5bce4c67b8df2cb684639","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"04f9b22751795b667c5fbc9e9f21d1e871ccf5ff1b2a5bb3f07dcbf94ecb2f83b88278b13d6f0ab61ee6586f3d4e3a703b09d7675c4b3b37a2a50b46a6d30ae5","tags":[["t","nostr"],["t","btc"],["t","bitcoin"]]}] +[14:10:47.151] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"look up! \nhttps://images2.imgbox.com/03/47/0J3OlOvQ_o.jpg \n#FitnessAndLifestyleGoals","created_at":1759428646,"id":"504380562ba364e86f49184304581b4bf0062554ad902c21c8db4e63565b7f83","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"631b18883572a50d5340921a81d2dadffd0d3a14918f4d6d915d5e3d5b67407d4b45e08b92d0466d101a167847c2521c84b6e4f3c8152381ec8ae70c04386d15","tags":[]}] +[14:10:48.036] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Why would you want that guy here ? 😂","created_at":1759428647,"id":"636a4f1c1d9c363ccf0d65314b360d5f1596f7768c1dd21954f40ec18811067a","kind":1,"pubkey":"c8383d81dd24406745b68409be40d6721c301029464067fcc50a25ddf9139549","sig":"96a7249107591f5c35a4918b92e792a1847bf890eac2d2a34db0906cd43f2892a43af6a4a85fffcb2050ae16db33c995ac33f649f3c199c0a068354b97a15866","tags":[["e","6d835a682478e111727f61f2509da3903fe38e4e17b41e459e034630b3898537","","root"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672"],["p","6ad08392d1baa3f6ff7a9409e2ac5e5443587265d8b4a581c6067d88ea301584"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4"]]}] +[14:10:51.689] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"好きな席に座れる席替え","created_at":1759428651,"id":"6fbbc4468a85f77e159616c01ccbe20b611ec53fcadfb39f7e00e121f0c9855f","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"2f49706710ce97d349061474ded5a36e3dfdaa6a1e34f0d71359885fbcfe1402395ff9dac291e0c75b598d67780ef49a1939f3963faada21b3c72d2d85720767","tags":[]}] +[14:10:51.815] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what does nostr:nprofile1qqsqfjg4mth7uwp307nng3z2em3ep2pxnljczzezg8j7dhf58ha7ejgpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtcprfmhxue69uhhxetwv35hgtnwdaekvmrpwfjjucm0d5hszxthwden5te0wpex2mtfw4kjuurjd9kkzmpwdejhgtcuauf96 write about these days","created_at":1759428593,"id":"6773d5165a4f47b90cedb811b76dc57e2b5ff90ad4f95057491fa4a84557fae0","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"933f127d69f724eee9b89133bec379521cd0f5739da4c4e5ac880785015e7545d9934fcc8c4167bb135c23f4fe9dbd50ebd71cd8e7126d7d9bca4813f18749dc","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","94b331a0e33dfa2be0328ff95a0cecf6dd6a30b474142f44645dc3962603f0c3","wss://soloco.nl/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["e","a5489fa92e71ff1e6f52d234770ad2d4b9a823c0be1fe20e6a9f9cd201aed99d","wss://relay.nostr.band/","","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["e","60e97d9db964b129af6b70c76531e1c63feb16b2e2d1d5ff4e7400e99732f857","wss://nostr.mom/","reply","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9","wss://relay.primal.net/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9","wss://relay.primal.net/"]]}] +[14:11:01.810] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:11:07.787] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"GM fren have a wonderful day 🥂 ☀️ ","created_at":1759428667,"id":"81edfa3e2d913a8998d1dac7e54b68a8ca4934a41433e4e9cd20ecb530738c56","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"4dda5a13ce7f8f8404bccb8e712cf42500a12f835aa7133a4b32539366e4e458dd47f589a29b682628bbc2d5d9aedb8858f9316f605cce6b5471dd46e08aba02","tags":[["e","c8efe7986e9f18fef66d99a6057edaf3235561c516c341feea7330d98fea7876","wss://relay.primal.net/","root","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["e","5f2d9d7ed43e4f9f8d3ffaf6955f08fb83f0a5afe4b5677904e287307acb782d","wss://feeds.nostr.band/lang/en","reply"],["p","9ce936615b0a7944cc444d97700317ef2800d0d237d90539edc0b1e244d63154","","mention"]]}] +[14:11:08.228] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"KYC","created_at":1759428667,"id":"5fa91b10f27d8d444ce612b8418755234cf312022ba80df8f81256e86b02f60c","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"2af5b4ade70caebfe806bb891e4f13b8ab9c2d15c69284fc472a39a02a2293a91632ef7d277a11d30cf9ca286bc1607643b8a34be81dbc637b1bef7b4f9b58b4","tags":[["e","afd16ea0213dd0f3d8e247aad0daa6b86ffe6458d256d84edfd82ae1971c2686","","root"],["e","e6ef8f6c5ab6c9623f068122eb61fb949c0371a9cf4fb42133c79d7795144130","wss://relay.primal.net","reply"],["p","a60e79e0edad5100d7543b669e513dbc1c2170e8e9b74fdb8e971afd1e0e6813","","mention"],["p","f8cd8f48b4e535ab5b9bcffe64a8a3f047e10ec61607239737708849e6a4d9db","","mention"]]}] +[14:11:08.971] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Vegan style or will you add some meat? I am a sucker for onion in tomato-based sauce. There was a time when my daughter refused to eat cooked onion (raw is fine ¯⁠\\⁠_⁠(⁠ツ⁠)⁠_⁠/⁠¯) because of texture. Turned out all I had to do was let her do a quality check and borrow her knife before sautéing the onion so she could make it smaller, and it's all right, so we are one big happy onion family again 😁","created_at":1759428668,"id":"6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"5e37417866478e87d288d3046a55cba1b4f7fb2c4980db38cdadb7448bfb71795fa14ce8e9e87b2156dc4c84811dcd819ecefc6a2155dd2aa082fca325bcdd56","tags":[["alt","A short note: Vegan style or will you add some meat? I am a suck..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://premium.primal.net/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://premium.primal.net/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nos.lol/","reply","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:11:09.253] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会","created_at":1759428668,"id":"e91e9a4d477aa61ede7fc1b98e4edce0a403b5e45f4e0df1abf61496511e732f","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"99b41adc50dee88cc0c942ae7c0db2755a66567522ae82c2af9e25116c28d0886d129fdbce4deab47619a3faf507851d8e7cbf1703fb6b0f3ad1adea7020d366","tags":[]}] +[14:11:12.251] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A woke agenda storyline which ignore the true reason for the rise in knife crime, while lining the blame on a group not responsible for it.\n\nAlso, why do you tag people in every post? Are you a bot?","created_at":1759428673,"id":"fa7f867a1249cf4395c017a19aab9bb5f7f9d5f4c0bc1b243705761399a4d583","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"79100010048fdf73f8acfafe1d4982d16e21b5dc75329cd58adce281fa60efb91282777380fdf21a85f5ada805771e2fcb9d63d416279f9b5f60af8e9e555b6f","tags":[["alt","A short note: A woke agenda storyline which ignore the true reas..."],["e","f0ee7d300c01de7417e6d84aa1dc024ee352f4f233add1ccccf1ded51d0b3262","wss://relay.mostr.pub/","root","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439","wss://relay.mostr.pub/"]]}] +[14:11:12.422] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"But it's a ponzi! /s","created_at":1759428673,"id":"6193ec743d2d1b1b211dca9f92347f2a63afa33738042c7711bfaabeb33bb9c4","kind":1,"pubkey":"b1fe47d95b312cff5f7b84c62aa4340e894f3b0c397d40be56c6ee927868671c","sig":"53f9e461f14450134ad8211ad16ddace63c416a5705f179beb86ba9e3223db8767ceb4bdaef7784cb608514d5c16796bbda61e6a7d28aca0225024ab5bd176d3","tags":[["alt","A short note: But it's a ponzi! /s"],["e","af1788152760241f3296445b3d6a2135ae95e18494b82ccfec2fe5b5c7c4c929","wss://nostr.wine/","root","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69"],["p","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69","wss://relay.current.fyi/"]]}] +[14:11:18.547] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" I don’t think the length of your post affects how it relays, but I could be wrong. On Nostr, your note is broadcast to the network, but there’s no algorithm pushing it into people’s feeds. It appears only to your followers, and from there it can spread if they repost it. Reposts from people with larger followings will have the biggest impact on reach.\n\nYou can also repost your own note at different hours to catch followers in other time zones or those whose feeds are crowded. Using popular hashtags may help as well, since some people follow or browse them.\n\nIf your note gathers around 30–50 likes, reposts, and/or comments, it may show up on Nostr’s Trending, which gives you another boost for about 24 hours.\n\nBottom line: reposting is your best tool for reaching more people. After zapping others, it’s also the best way to boost their message. Likes are largely a vanity metric here, unlike everywhere else on social media.","created_at":1759428677,"id":"d10b664aa3471333e2f606cec3f5432f647f50f9e3f872507ffa78b60bf826c7","kind":1,"pubkey":"20aaddcad69a5ed2bc4757027f5ba18e7a248bc2ca7d38af2c83f06956060e66","sig":"e5ea56e32ca39f90e611adb51821adb341d98a229a010c5c907654167d54e3c2d8977c5aa7e1f29842ad9b4828bbb9847c47abe1608e5f764311e7cc5e03f4fb","tags":[["e","fe35ffe8b3666998871f26820fea1a9fe3e8226d3e8ed3b3c1e193792e548c20","wss://relay.primal.net","root"],["e","7e1542cba396419ea257cbec37f674b55955dcdaebceba260646a2055d617ed0","wss://relay.mattybs.lol","reply"],["p","8712b369e906a3925f60000c0a9c12de53c229f6b60ee68692d4b73840625af9","","mention"],["p","414908397af26640247042da7f942fc931837c8d9d3207e271cb2fb2bbd9a4ed","","mention"]]}] +[14:11:26.510] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amanhã no Don't Trust, Verify temos uma convidada muito especial, Joana Amaral Dias. E também o sorteio da #LotoMaxi #Bitcoin!\nO painel de sempre: nostr:npub1g34z7c83lerj08k6xf3xjygy3dd5dh6tpcdsmd6l875tp94tujqqdw6zjw, nostr:npub160u5kdf4g2nr993qvteuj9rr35x7awny4u0esrvnjplwrvlq6nus90as4t e nostr:npub103wzz5eeegcwzrchje02m4rcxqxqtz2rauefhdshmtzd9xjxxdnqm5kd9u.\n22h🇵🇹/18h🇧🇷\nhttps://www.youtube.com/watch?v=hh5yrgSJXI4","created_at":1759428686,"id":"770426d9deb6491607a879bcb2480c89b9427b0603b3619c309035c3057909d3","kind":1,"pubkey":"7c5c215339ca30e10f17965eadd478300c058943ef329bb617dac4d29a463366","sig":"3f8526926198a227865d26e4761a4306d95d421b63864516df10bd4583d4527510507c5fb95e36f0fe88ab82ecb8e8d9a6ddb894f4f4f9d61b330d84780ed3a8","tags":[["t","LotoMaxi"],["t","Bitcoin"],["p","446a2f60f1fe47279eda32626911048b5b46df4b0e1b0db75f3fa8b096abe480","","mention"],["p","d3f94b353542a632962062f3c914638d0deeba64af1f980d93907ee1b3e0d4f9","","mention"],["p","7c5c215339ca30e10f17965eadd478300c058943ef329bb617dac4d29a463366","","mention"],["r","wss://nostr.wine/","read"],["r","wss://nos.lol/"],["r","wss://relay.damus.io/"],["r","wss://relay.primal.net/"]]}] +[14:11:28.241] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:11:29.409] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:11:31.292] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"黒板動く時とか、絶対手かざしちゃう\nフォースの力で動かしてる","created_at":1759428691,"id":"bd5014046dcfbbe5bd5bdad7b42a012fabc4f882294442ee231bcf1c55670ac2","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"fa940914609feed6ee54f8e9dc2d2daf4b4f7711465025665c10108276b85a96a398b14afc4f37a1a2ac928ec887423eefe644d4700b537f94cdbe1e9ca703ee","tags":[]}] +[14:11:31.375] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stories from bitcoin builders at nostr:nprofile1qqstwg3ce6m77d2876vfwxm4ew4qk5cplzrfpx7jln9qj2mf3clkazcpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtc0pg7f3 2025 \n\nIn person connection accelerates your education journey and helps you figure out how to build on bitcoin. \n\nnostr:nprofile1qqsdua3rlqwyfefxjlwhh8l6vxpmxv7ra2g3zvrzz0d3g7s0pkdhcnspr3mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmqpz4mhxue69uhk2er9dchxummnw3ezumrpdejqs0ngtg nostr:nprofile1qqs9a486n5w72dsn72tyentdrj08ppqk2yyq707qdmlm347lkl6jmpgpzemhxue69uhhyetvv9ujuurjd9kkzmpwdejhgqgawaehxw309ahx7um5wgkhqatz9emk2mrvdaexgetj9ehx2aqvy5zdt nostr:nprofile1qqs06juvrw2txquvwshq9dzjffuzef294u7f55ttll02me4x8cx3q8cpz4mhxue69uhhyetvv9ujuerpd46hxtnfduhszxnhwden5te0dehhxarj9e3k76twvdshyern9e3k7mf0zan2f8 nostr:npub17cyatz6z2dzcw6xehtcm9z45m76lde5smxdmyasvs00r4pqv863qrs4ml3 nostr:nprofile1qqst458a0hjkufqqyml62tm4e3qcjx6m0k0xanhd2u5zyduplqc8p9gpzemhxue69uhhyetvv9ujuurjd9kkzmpwdejhgqg6waehxw309aex2mrp0yh8wetnw3jhymnzw33jucm0d57qtuf5 nostr:nprofile1qqs2mvtyanv7pc97t8pzx2g76xl3carksgnh5qwcjj5pv0mjgddwvpgpzfmhxue69uhhqatjwpkx2urpvuhx2ucpzemhxue69uhhyetvv9ujuurjd9kkzmpwdejhgykzm3n nostr:nprofile1qqswwmg86h9hzy0dq9gzecz2hre35p90w8djp2nqw5hf32tanl0n9pgpr9mhxue69uhhyetvv9ujumn0wd68ycmgv43kktndv5q3wamnwvaz7tmjv4kxz7fwva6kwem9wfhjummjvuvec5xx \n\nI put some extra love into this episode, it’s available on YouTube/Spotify for the video version and Fountain/everywhere else with audio. \n\nhttps://blossom.primal.net/259f334d2f657ffdde8debd2e607973d17294c4c98e75374599d296aef1818ca.mp4","created_at":1759428690,"id":"d40d5699bdf9dc19fabb3e86b4af1b23a07903a131fbe26978c74e95ee1f0699","kind":1,"pubkey":"e57fec0c802eaeacd7f204277ddb1f86eaa92e62cadd0d2697084cb4e3153bf8","sig":"a3ce52de3afba898c9635e57ede78cf12412f21b4e5d5edbe3b42dc10611eefba657fb521107743dd63b2a69f1af38914b915185370f914ae8f4ecc80a8a0c4e","tags":[["p","5ed4fa9d1de53613f2964ccd6d1c9e70841651080f3fc06effb8d7dfb7f52d85","wss://relay.primal.net","mention"],["p","bad0fd7de56e240026ffa52f75cc41891b5b7d9e6eceed5728223781f8307095","wss://relay.primal.net","mention"],["p","adb164ecd9e0e0be59c223291ed1bf1c747682277a01d894a8163f72435ae605","wss://purplepag.es","mention"],["p","e76d07d5cb7111ed01502ce04ab8f31a04af71db20aa60752e98a97d9fdf3285","wss://relay.nostrcheck.me","mention"],["p","fd4b8c1b94b3038c742e02b4524a782ca545af3c9a516bffdeade6a63e0d101f","wss://relay.damus.io/","mention"],["p","b72238ceb7ef3547f698971b75cbaa0b5301f886909bd2fcca092b698e3f6e8b","wss://relay.nostr.band/","mention"],["p","de7623f81c44e52697dd7b9ffa6183b333c3ea9111306213db147a0f0d9b7c4e","wss://nostr.bitcoiner.social","mention"],["p","f609d58b4253458768d9baf1b28ab4dfb5f6e690d99bb2760c83de3a840c3ea2","","mention"]]}] +[14:11:36.702] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#foodstr #Steakstr\nhttps://image.nostr.build/44c9311065821c3d3a86d87e23ccef5a2ff9696a1da25038a4df54e1bb79beee.jpg","created_at":1759428699,"id":"e7916103dd38103b80bd92102956432017d5a3286e9f97d2e1f7e5481d1c214c","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"c85dc53daef0f40118b1ba927d9a3e64b74a07c6a5345cea614485c39aea949eb239611b663fdf08423e1659aed8321223f66f4bf00af9e358934c4058136fd0","tags":[["alt","A short note: #foodstr #Steakstr\nhttps://image.nostr.build/44c93..."],["t","foodstr"],["t","Steakstr"],["t","steakstr"],["r","https://image.nostr.build/44c9311065821c3d3a86d87e23ccef5a2ff9696a1da25038a4df54e1bb79beee.jpg"],["imeta","url https://image.nostr.build/44c9311065821c3d3a86d87e23ccef5a2ff9696a1da25038a4df54e1bb79beee.jpg","x 05a31560113bf4373edb8f57b02e32f478667d2754ea052278c80d4aa72f4310","size 121330","m image/jpeg","dim 1064x1341","blurhash _:N]-5oz_Nof%Mi_RPsAj[kCf7WVjZayRjj[jZfQj@ayj[off6kCayjukCjuWVj[f6f6ayayj[bbj[j[ayj[j[ayj@ayazayayj[aybHj[j[f6ayW;fQkBa|azjZaybHay","ox 05a31560113bf4373edb8f57b02e32f478667d2754ea052278c80d4aa72f4310","alt "]]}] +[14:11:37.426] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I mean, it’s in the EU. What did you expect 😁","created_at":1759428697,"id":"b239bd543424109a9ad43adafe91ea44a9ee2fb9ada6d4e3612f26913cddeaa1","kind":1,"pubkey":"a60e79e0edad5100d7543b669e513dbc1c2170e8e9b74fdb8e971afd1e0e6813","sig":"7d5ada47141845efdd3d2eab2eb5c8f0d530dc2df02bfb06504f59d8f14f49ced8c82a19d4b463b67d24dfc3b1f1be4c01126734376ca7a354d7b036fe1f27bd","tags":[["e","afd16ea0213dd0f3d8e247aad0daa6b86ffe6458d256d84edfd82ae1971c2686","","root"],["e","5fa91b10f27d8d444ce612b8418755234cf312022ba80df8f81256e86b02f60c","wss://relay.primal.net","reply"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","","mention"],["p","f8cd8f48b4e535ab5b9bcffe64a8a3f047e10ec61607239737708849e6a4d9db","","mention"]]}] +[14:11:41.335] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"机コの字に繋げる給食","created_at":1759428701,"id":"406ddca69629a299487549d2dfefe0864a6520077b38c3f2b18a6bb4f7da4332","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"43438bf4312a99592e887626c2a08e17baeb08e20ad7e2a8a7754933f2991eaa3b7c06a5a65efbdc3524403265a48fd7ec7af898aa3d84473dd076407b98fc62","tags":[]}] +[14:11:42.442] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:11:47.423] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"あと自動ドアも、はー!とかやる","created_at":1759428707,"id":"c3ac83cd49b83bd09377c0b98a36d8f28c8405b274c996afb5e4e9ac49b70371","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"cb582919eee0e3ac34fd0493882e551608a24a0953006169ea1582c91ef5ce9de3cbac18bb16d943880386d3f01143a25962d550b11cfbbe736246d5664c8a68","tags":[]}] +[14:11:53.661] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:00.198] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"フォースがあるので","created_at":1759428720,"id":"a7740a68acf7b7eebb89fd6d9f5a9eace379c636b597fe648360ca311fa7fa69","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"b98cf313714149fd2cc967a66cf22309a03b02d1c5ba6311be2150515b8e7f1321039a7ea975cf17315f0972d327477857af15e54d9e4e4c0ad48c20a8c3f0c4","tags":[]}] +[14:12:08.734] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"@Scoresby's signal: CLINK Protocol Demo - MAY THE ₿ITCOIN #LIGHTNING STRIKE YOU! 𝚕𝚒𝚗𝚔: https://stacker.news/items/1245939/r/HODLR - #bitcoin #LN #askNostr","created_at":1759428727,"id":"ae98a12634719554d88e8dfeb1bbc87538f940719f9a80dba6e35c71db757cc4","kind":1,"pubkey":"c239c0f994c471c9a1e0d22b14255d956923cfbc7ce7aac653aceb2bfa4a5015","sig":"a9f178de2807a9c86173547b3cae90bdd92c0c5273d30fdd041398787bed45ee45a4b695705ad1e4a1903c2f6e3b4b7438a484564a7c499c9455bda856e52b04","tags":[]}] +[14:12:08.905] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今後はジェダイって呼んでください","created_at":1759428728,"id":"0f24b7f8b0cb7d3d46f789ebd2f5966e565b07a1b68f50421cdaf84486373e7b","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"be424032e5b15efe2524f532f4736e6b5623be0020b0e81b1aa353c0500c230c3f54988df26cbf5ac548526b341055f393623d1e7a4ba67296ac29a5e6525823","tags":[]}] +[14:12:10.727] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"the wall keeps you tax slaves in as well as keeping them out ","created_at":1759428729,"id":"992c1a1658ad48b8616a9453d27d7225db74d652818c2be5c2e513517ca03f02","kind":1,"pubkey":"2755b492fbb0ffa5c327819a4699c7001341b9f7826a8367273549f1a58a4831","sig":"bb66c3174e6c22e1cdf625f43b09276bb8884f64bea003ab1b4ad29edb4b491bf27ce78db948b1942c8ad85de116598d7fb78ff27e0ad4630a12d2c8f15d159e","tags":[["e","a56372e4d568e3c85bb9507b1e09db0684e8b68b5cbab3001909d9382ae390ff","","root"],["p","d163c3686187605ab3a9fc87da299356364b77157cb66b1bc1a72d1ec6788eda"]]}] +[14:12:11.640] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me too.\n\nEspecially #trainhopping videos like George's. \n\nhttps://www.youtube.com/@Jumpingoffthecliff \n\n","created_at":1759428731,"id":"dcb7808084e0dfa4f7a3e8a54dbdd08bb1475fc9507cba9adb3bc2599dfd43d8","kind":1,"pubkey":"386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9","sig":"f171f80fb6956e2a998cb4b8af6b5e69b9986201d7bc50ba47328118d8317e8abeb76d20a0c34532248d769bc6553814ac1baec271b2a860644dbd5dfc07cd1d","tags":[["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb","wss://adre.su/","mention"],["p","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","ed6a622d1638ffa4fb43e900dcfc71c178e70cd4080a822cfb0f77dd3d51ceb8","","reply","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","c9b97c7e5561d0a7f0ae575b7d891a477bb1563157b9db53dd961cbf5a0dd4a5","","root","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["t","trainhopping"]]}] +[14:12:11.883] SEND relay.laantungir.net:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:12:11.883] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:12:11.982] RECV relay.laantungir.net:443: ["EOSE","pool_3_1759428731"] +[14:12:12.093] RECV nos.lol:443: ["EOSE","pool_3_1759428731"] +[14:12:13.704] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amanhã no Don't Trust, Verify temos uma convidada muito especial, Joana Amaral Dias. E também o sorteio da #LotoMaxi #Bitcoin!\nO painel de sempre: nostr:npub1g34z7c83lerj08k6xf3xjygy3dd5dh6tpcdsmd6l875tp94tujqqdw6zjw, nostr:npub160u5kdf4g2nr993qvteuj9rr35x7awny4u0esrvnjplwrvlq6nus90as4t e nostr:npub103wzz5eeegcwzrchje02m4rcxqxqtz2rauefhdshmtzd9xjxxdnqm5kd9u.\n22h🇵🇹/18h🇧🇷\nhttps://www.youtube.com/watch?v=hh5yrgSJXI4","created_at":1759428732,"id":"e82f403e592933f12991d2d8cd4f76f5c646ee479c5450db50f5d86bbcbb9894","kind":1,"pubkey":"ff596f3bb07f7f568df80a8839b72db2088e1f5fe91236ade56a216c8dcc5ff6","sig":"88c8bae6ddfa04ab33ea86afb3a77ffec4309a12e82941edaa83609e5698c0a0ae26b5d5b6ef299e670e2efd9ec57a64bc878b9d353bfa09d3c96dde6f934432","tags":[["t","LotoMaxi"],["t","Bitcoin"],["p","446a2f60f1fe47279eda32626911048b5b46df4b0e1b0db75f3fa8b096abe480","","mention"],["p","d3f94b353542a632962062f3c914638d0deeba64af1f980d93907ee1b3e0d4f9","","mention"],["p","7c5c215339ca30e10f17965eadd478300c058943ef329bb617dac4d29a463366","","mention"],["r","wss://nostr.wine/"],["r","wss://eden.nostr.land/"],["r","wss://nos.lol/"],["r","wss://relay.damus.io/"],["r","wss://relay.primal.net/"]]}] +[14:12:15.819] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I do condone piracy. Everyone should do it if capable.","created_at":1759428737,"id":"cd27d54172cf08f622a190cac926839b7fe3ed9b0e050fe940a40e1b95f4a8d5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"c921fc7ab7a1260350c4e0f2abc85cc2d85086e33d7543c16cf2b6043301d260b32cf8285d54d9ea942b560c63c63b2d3b42303f3890b651b9cadd37a51447d2","tags":[["alt","A short note: I do condone piracy. Everyone should do it if capa..."],["e","eefe745b5d5e3812450b3a5e591ba2d3607ae87a25bc2fd49866f6595e876438","wss://relay.mostr.pub/","root","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439","wss://relay.mostr.pub/"]]}] +[14:12:18.708] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:20.097] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足のお菓子交換","created_at":1759428739,"id":"d2bbfef6f4f542721b93f10b2cb7522508d0ee98608d0e0e2cdb7b0527a5af23","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ee23ef027b8c91ecf13fb6c36957c890878b1388471cca85fd2d9e14b4dcdfae6c599808d14189b8da4604d589a6637bc4d3079e8aba1aa04143de3fca658e36","tags":[]}] +[14:12:26.639] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Shawarma\n\nIngredients:\n1 kg Chicken Thighs\n1 tbs Coriander\n1 tbs Cumin\n1 tbs Cardamom\n1 tsp Cayenne Pepper\n2 tsp Paprika\n2 tbs Lemon Juice\n3 tbs Olive Oil\n1 cup Greek Yogurt\n1 Garlic Clove\n1 tsp Cumin\nSplash Lemon Juice\nSliced Lettuce\nSliced Tomato\n6 Pita Bread\n\nInstructions:\nCombine the marinade ingredients in a large ziplock bag (or bowl).\r\n\nAdd the chicken and use your hands to make sure each piece is coated. If using a ziplock bag, I find it convenient to close the bag then massage the bag to disperse the rub all over each chicken piece.\r\n\nMarinate overnight or up to 24 hours.\r\n\nCombine the Yoghurt Sauce ingredients in a bowl and mix. Cover and put in the fridge until required (it will last for 3 days in the fridge).\r\n\nHeat grill/BBQ (or large heavy based pan on stove) on medium high. You should not need to oil it because the marinade has oil in it and also thigh fillets have fat. But if you are worried then oil your hotplate/grill. (See notes for baking)\r\n\nPlace chicken on the grill and cook the first side for 4 to 5 minutes until nicely charred, then turn and cook the other side for 3 to 4 minutes (the 2nd side takes less time).\r\n\nRemove chicken from the grill and cover loosely with foil. Set aside to rest for 5 minutes.\r\n\nTO SERVE\r\n\nSlice chicken and pile onto platter alongside flatbreads, Salad and the Yoghurt Sauce.\r\n\nTo make a wrap, get a piece of flatbread and smear with Yoghurt Sauce. Top with a bit of lettuce and tomato and Chicken Shawarma. Roll up and enjoy!\n\nImage: https://www.themealdb.com/images/media/meals/kcv6hj1598733479.jpg Audio Instructions: https://cdn.satellite.earth/7b8d367da8ac0c0328ce5ac1f6e23d15b906fb9ce8d644352dcd63d773fa5c7d.mp3","created_at":1759428747,"id":"ae1e72e6eacd761a27f644a85a4f65eaf9146e0ac7b67258dbbb3be0d641df3e","kind":1,"pubkey":"4fdb1e1123ea6cef3a9e8118ce278848d6870b1de1df5ed10154e586544d7068","sig":"8212b9258f3cd130c80a7ad274b8fe6efb4b3944a26a177362805668d1e35aafed2aaf6337f49236272e2cdfe3bbb251eb2db9ca4f35d0a22e02a8d43da496a9","tags":[]}] +[14:12:27.297] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:12:28.154] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:31.156] RECV nos.lol:443: aef90819dee4f999c8887e0796efe7efe1b326d0c9596692e37 +[14:12:31.640] RECV nos.lol:443: 04"],["p","472f440f29ef996e92a186b8d320ff180c85590 +[14:12:32.796] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:12:32.797] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:12:32.797] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:12:32.949] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Chef and Cleaner](http://btcjobs.bitvocation.com/u83Bq)\n\nCompany: BitDeer\nDepartment: Trades\n\nDev: No\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Ethiopia\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428750,"id":"a65e53a8c712fa49740d7e14fdaa3db2d904dfc1d72c3864e9f1547dc1899898","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"69600bdeef067b3281b857e9e9131ef330e8da746e9a79225107d280e70865905ab0da8b7509073e43786bf232912f4f19f08bbfa068278583efbdbb8f642e4f","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:33.009] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Shawarma\n\nIngredients:\n1 kg Chicken Thighs\n1 tbs Coriander\n1 tbs Cumin\n1 tbs Cardamom\n1 tsp Cayenne Pepper\n2 tsp Paprika\n2 tbs Lemon Juice\n3 tbs Olive Oil\n1 cup Greek Yogurt\n1 Garlic Clove\n1 tsp Cumin\nSplash Lemon Juice\nSliced Lettuce\nSliced Tomato\n6 Pita Bread\n\nInstructions:\nCombine the marinade ingredients in a large ziplock bag (or bowl).\r\n\nAdd the chicken and use your hands to make sure each piece is coated. If using a ziplock bag, I find it convenient to close the bag then massage the bag to disperse the rub all over each chicken piece.\r\n\nMarinate overnight or up to 24 hours.\r\n\nCombine the Yoghurt Sauce ingredients in a bowl and mix. Cover and put in the fridge until required (it will last for 3 days in the fridge).\r\n\nHeat grill/BBQ (or large heavy based pan on stove) on medium high. You should not need to oil it because the marinade has oil in it and also thigh fillets have fat. But if you are worried then oil your hotplate/grill. (See notes for baking)\r\n\nPlace chicken on the grill and cook the first side for 4 to 5 minutes until nicely charred, then turn and cook the other side for 3 to 4 minutes (the 2nd side takes less time).\r\n\nRemove chicken from the grill and cover loosely with foil. Set aside to rest for 5 minutes.\r\n\nTO SERVE\r\n\nSlice chicken and pile onto platter alongside flatbreads, Salad and the Yoghurt Sauce.\r\n\nTo make a wrap, get a piece of flatbread and smear with Yoghurt Sauce. Top with a bit of lettuce and tomato and Chicken Shawarma. Roll up and enjoy!\n\nImage: https://www.themealdb.com/images/media/meals/kcv6hj1598733479.jpg Audio Instructions: https://cdn.satellite.earth/7b8d367da8ac0c0328ce5ac1f6e23d15b906fb9ce8d644352dcd63d773fa5c7d.mp3","created_at":1759428747,"id":"ae1e72e6eacd761a27f644a85a4f65eaf9146e0ac7b67258dbbb3be0d641df3e","kind":1,"pubkey":"4fdb1e1123ea6cef3a9e8118ce278848d6870b1de1df5ed10154e586544d7068","sig":"8212b9258f3cd130c80a7ad274b8fe6efb4b3944a26a177362805668d1e35aafed2aaf6337f49236272e2cdfe3bbb251eb2db9ca4f35d0a22e02a8d43da496a9","tags":[]}] +[14:12:33.070] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足のお菓子交換","created_at":1759428739,"id":"d2bbfef6f4f542721b93f10b2cb7522508d0ee98608d0e0e2cdb7b0527a5af23","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ee23ef027b8c91ecf13fb6c36957c890878b1388471cca85fd2d9e14b4dcdfae6c599808d14189b8da4604d589a6637bc4d3079e8aba1aa04143de3fca658e36","tags":[]}] +[14:12:33.130] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I do condone piracy. Everyone should do it if capable.","created_at":1759428737,"id":"cd27d54172cf08f622a190cac926839b7fe3ed9b0e050fe940a40e1b95f4a8d5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"c921fc7ab7a1260350c4e0f2abc85cc2d85086e33d7543c16cf2b6043301d260b32cf8285d54d9ea942b560c63c63b2d3b42303f3890b651b9cadd37a51447d2","tags":[["alt","A short note: I do condone piracy. Everyone should do it if capa..."],["e","eefe745b5d5e3812450b3a5e591ba2d3607ae87a25bc2fd49866f6595e876438","wss://relay.mostr.pub/","root","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439","wss://relay.mostr.pub/"]]}] +[14:12:33.191] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amanhã no Don't Trust, Verify temos uma convidada muito especial, Joana Amaral Dias. E também o sorteio da #LotoMaxi #Bitcoin!\nO painel de sempre: nostr:npub1g34z7c83lerj08k6xf3xjygy3dd5dh6tpcdsmd6l875tp94tujqqdw6zjw, nostr:npub160u5kdf4g2nr993qvteuj9rr35x7awny4u0esrvnjplwrvlq6nus90as4t e nostr:npub103wzz5eeegcwzrchje02m4rcxqxqtz2rauefhdshmtzd9xjxxdnqm5kd9u.\n22h🇵🇹/18h🇧🇷\nhttps://www.youtube.com/watch?v=hh5yrgSJXI4","created_at":1759428732,"id":"e82f403e592933f12991d2d8cd4f76f5c646ee479c5450db50f5d86bbcbb9894","kind":1,"pubkey":"ff596f3bb07f7f568df80a8839b72db2088e1f5fe91236ade56a216c8dcc5ff6","sig":"88c8bae6ddfa04ab33ea86afb3a77ffec4309a12e82941edaa83609e5698c0a0ae26b5d5b6ef299e670e2efd9ec57a64bc878b9d353bfa09d3c96dde6f934432","tags":[["t","LotoMaxi"],["t","Bitcoin"],["p","446a2f60f1fe47279eda32626911048b5b46df4b0e1b0db75f3fa8b096abe480","","mention"],["p","d3f94b353542a632962062f3c914638d0deeba64af1f980d93907ee1b3e0d4f9","","mention"],["p","7c5c215339ca30e10f17965eadd478300c058943ef329bb617dac4d29a463366","","mention"],["r","wss://nostr.wine/"],["r","wss://eden.nostr.land/"],["r","wss://nos.lol/"],["r","wss://relay.damus.io/"],["r","wss://relay.primal.net/"]]}] +[14:12:33.251] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me too.\n\nEspecially #trainhopping videos like George's. \n\nhttps://www.youtube.com/@Jumpingoffthecliff \n\n","created_at":1759428731,"id":"dcb7808084e0dfa4f7a3e8a54dbdd08bb1475fc9507cba9adb3bc2599dfd43d8","kind":1,"pubkey":"386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9","sig":"f171f80fb6956e2a998cb4b8af6b5e69b9986201d7bc50ba47328118d8317e8abeb76d20a0c34532248d769bc6553814ac1baec271b2a860644dbd5dfc07cd1d","tags":[["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb","wss://adre.su/","mention"],["p","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","ed6a622d1638ffa4fb43e900dcfc71c178e70cd4080a822cfb0f77dd3d51ceb8","","reply","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","c9b97c7e5561d0a7f0ae575b7d891a477bb1563157b9db53dd961cbf5a0dd4a5","","root","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["t","trainhopping"]]}] +[14:12:33.312] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"the wall keeps you tax slaves in as well as keeping them out ","created_at":1759428729,"id":"992c1a1658ad48b8616a9453d27d7225db74d652818c2be5c2e513517ca03f02","kind":1,"pubkey":"2755b492fbb0ffa5c327819a4699c7001341b9f7826a8367273549f1a58a4831","sig":"bb66c3174e6c22e1cdf625f43b09276bb8884f64bea003ab1b4ad29edb4b491bf27ce78db948b1942c8ad85de116598d7fb78ff27e0ad4630a12d2c8f15d159e","tags":[["e","a56372e4d568e3c85bb9507b1e09db0684e8b68b5cbab3001909d9382ae390ff","","root"],["p","d163c3686187605ab3a9fc87da299356364b77157cb66b1bc1a72d1ec6788eda"]]}] +[14:12:33.372] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今後はジェダイって呼んでください","created_at":1759428728,"id":"0f24b7f8b0cb7d3d46f789ebd2f5966e565b07a1b68f50421cdaf84486373e7b","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"be424032e5b15efe2524f532f4736e6b5623be0020b0e81b1aa353c0500c230c3f54988df26cbf5ac548526b341055f393623d1e7a4ba67296ac29a5e6525823","tags":[]}] +[14:12:33.433] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"@Scoresby's signal: CLINK Protocol Demo - MAY THE ₿ITCOIN #LIGHTNING STRIKE YOU! 𝚕𝚒𝚗𝚔: https://stacker.news/items/1245939/r/HODLR - #bitcoin #LN #askNostr","created_at":1759428727,"id":"ae98a12634719554d88e8dfeb1bbc87538f940719f9a80dba6e35c71db757cc4","kind":1,"pubkey":"c239c0f994c471c9a1e0d22b14255d956923cfbc7ce7aac653aceb2bfa4a5015","sig":"a9f178de2807a9c86173547b3cae90bdd92c0c5273d30fdd041398787bed45ee45a4b695705ad1e4a1903c2f6e3b4b7438a484564a7c499c9455bda856e52b04","tags":[]}] +[14:12:33.493] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"フォースがあるので","created_at":1759428720,"id":"a7740a68acf7b7eebb89fd6d9f5a9eace379c636b597fe648360ca311fa7fa69","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"b98cf313714149fd2cc967a66cf22309a03b02d1c5ba6311be2150515b8e7f1321039a7ea975cf17315f0972d327477857af15e54d9e4e4c0ad48c20a8c3f0c4","tags":[]}] +[14:12:33.554] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:12:33.614] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:12:33.675] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:33.735] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:33.796] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:33.856] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:12:33.917] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:12:33.977] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:34.038] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:34.098] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:34.159] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:12:34.521] RECV nos.lol:443: aef90819dee4f999c8887e0796efe7efe1b326d0c9596692e37 +[14:12:35.004] RECV nos.lol:443: 04"],["p","472f440f29ef996e92a186b8d320ff180c85590 +[14:12:36.162] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:12:36.162] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:12:36.162] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:12:36.314] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Chef and Cleaner](http://btcjobs.bitvocation.com/u83Bq)\n\nCompany: BitDeer\nDepartment: Trades\n\nDev: No\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Ethiopia\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428750,"id":"a65e53a8c712fa49740d7e14fdaa3db2d904dfc1d72c3864e9f1547dc1899898","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"69600bdeef067b3281b857e9e9131ef330e8da746e9a79225107d280e70865905ab0da8b7509073e43786bf232912f4f19f08bbfa068278583efbdbb8f642e4f","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:36.324] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Shawarma\n\nIngredients:\n1 kg Chicken Thighs\n1 tbs Coriander\n1 tbs Cumin\n1 tbs Cardamom\n1 tsp Cayenne Pepper\n2 tsp Paprika\n2 tbs Lemon Juice\n3 tbs Olive Oil\n1 cup Greek Yogurt\n1 Garlic Clove\n1 tsp Cumin\nSplash Lemon Juice\nSliced Lettuce\nSliced Tomato\n6 Pita Bread\n\nInstructions:\nCombine the marinade ingredients in a large ziplock bag (or bowl).\r\n\nAdd the chicken and use your hands to make sure each piece is coated. If using a ziplock bag, I find it convenient to close the bag then massage the bag to disperse the rub all over each chicken piece.\r\n\nMarinate overnight or up to 24 hours.\r\n\nCombine the Yoghurt Sauce ingredients in a bowl and mix. Cover and put in the fridge until required (it will last for 3 days in the fridge).\r\n\nHeat grill/BBQ (or large heavy based pan on stove) on medium high. You should not need to oil it because the marinade has oil in it and also thigh fillets have fat. But if you are worried then oil your hotplate/grill. (See notes for baking)\r\n\nPlace chicken on the grill and cook the first side for 4 to 5 minutes until nicely charred, then turn and cook the other side for 3 to 4 minutes (the 2nd side takes less time).\r\n\nRemove chicken from the grill and cover loosely with foil. Set aside to rest for 5 minutes.\r\n\nTO SERVE\r\n\nSlice chicken and pile onto platter alongside flatbreads, Salad and the Yoghurt Sauce.\r\n\nTo make a wrap, get a piece of flatbread and smear with Yoghurt Sauce. Top with a bit of lettuce and tomato and Chicken Shawarma. Roll up and enjoy!\n\nImage: https://www.themealdb.com/images/media/meals/kcv6hj1598733479.jpg Audio Instructions: https://cdn.satellite.earth/7b8d367da8ac0c0328ce5ac1f6e23d15b906fb9ce8d644352dcd63d773fa5c7d.mp3","created_at":1759428747,"id":"ae1e72e6eacd761a27f644a85a4f65eaf9146e0ac7b67258dbbb3be0d641df3e","kind":1,"pubkey":"4fdb1e1123ea6cef3a9e8118ce278848d6870b1de1df5ed10154e586544d7068","sig":"8212b9258f3cd130c80a7ad274b8fe6efb4b3944a26a177362805668d1e35aafed2aaf6337f49236272e2cdfe3bbb251eb2db9ca4f35d0a22e02a8d43da496a9","tags":[]}] +[14:12:36.385] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足のお菓子交換","created_at":1759428739,"id":"d2bbfef6f4f542721b93f10b2cb7522508d0ee98608d0e0e2cdb7b0527a5af23","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ee23ef027b8c91ecf13fb6c36957c890878b1388471cca85fd2d9e14b4dcdfae6c599808d14189b8da4604d589a6637bc4d3079e8aba1aa04143de3fca658e36","tags":[]}] +[14:12:36.445] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I do condone piracy. Everyone should do it if capable.","created_at":1759428737,"id":"cd27d54172cf08f622a190cac926839b7fe3ed9b0e050fe940a40e1b95f4a8d5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"c921fc7ab7a1260350c4e0f2abc85cc2d85086e33d7543c16cf2b6043301d260b32cf8285d54d9ea942b560c63c63b2d3b42303f3890b651b9cadd37a51447d2","tags":[["alt","A short note: I do condone piracy. Everyone should do it if capa..."],["e","eefe745b5d5e3812450b3a5e591ba2d3607ae87a25bc2fd49866f6595e876438","wss://relay.mostr.pub/","root","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439","wss://relay.mostr.pub/"]]}] +[14:12:36.508] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amanhã no Don't Trust, Verify temos uma convidada muito especial, Joana Amaral Dias. E também o sorteio da #LotoMaxi #Bitcoin!\nO painel de sempre: nostr:npub1g34z7c83lerj08k6xf3xjygy3dd5dh6tpcdsmd6l875tp94tujqqdw6zjw, nostr:npub160u5kdf4g2nr993qvteuj9rr35x7awny4u0esrvnjplwrvlq6nus90as4t e nostr:npub103wzz5eeegcwzrchje02m4rcxqxqtz2rauefhdshmtzd9xjxxdnqm5kd9u.\n22h🇵🇹/18h🇧🇷\nhttps://www.youtube.com/watch?v=hh5yrgSJXI4","created_at":1759428732,"id":"e82f403e592933f12991d2d8cd4f76f5c646ee479c5450db50f5d86bbcbb9894","kind":1,"pubkey":"ff596f3bb07f7f568df80a8839b72db2088e1f5fe91236ade56a216c8dcc5ff6","sig":"88c8bae6ddfa04ab33ea86afb3a77ffec4309a12e82941edaa83609e5698c0a0ae26b5d5b6ef299e670e2efd9ec57a64bc878b9d353bfa09d3c96dde6f934432","tags":[["t","LotoMaxi"],["t","Bitcoin"],["p","446a2f60f1fe47279eda32626911048b5b46df4b0e1b0db75f3fa8b096abe480","","mention"],["p","d3f94b353542a632962062f3c914638d0deeba64af1f980d93907ee1b3e0d4f9","","mention"],["p","7c5c215339ca30e10f17965eadd478300c058943ef329bb617dac4d29a463366","","mention"],["r","wss://nostr.wine/"],["r","wss://eden.nostr.land/"],["r","wss://nos.lol/"],["r","wss://relay.damus.io/"],["r","wss://relay.primal.net/"]]}] +[14:12:36.568] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me too.\n\nEspecially #trainhopping videos like George's. \n\nhttps://www.youtube.com/@Jumpingoffthecliff \n\n","created_at":1759428731,"id":"dcb7808084e0dfa4f7a3e8a54dbdd08bb1475fc9507cba9adb3bc2599dfd43d8","kind":1,"pubkey":"386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9","sig":"f171f80fb6956e2a998cb4b8af6b5e69b9986201d7bc50ba47328118d8317e8abeb76d20a0c34532248d769bc6553814ac1baec271b2a860644dbd5dfc07cd1d","tags":[["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb","wss://adre.su/","mention"],["p","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","ed6a622d1638ffa4fb43e900dcfc71c178e70cd4080a822cfb0f77dd3d51ceb8","","reply","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","c9b97c7e5561d0a7f0ae575b7d891a477bb1563157b9db53dd961cbf5a0dd4a5","","root","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["t","trainhopping"]]}] +[14:12:36.629] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"the wall keeps you tax slaves in as well as keeping them out ","created_at":1759428729,"id":"992c1a1658ad48b8616a9453d27d7225db74d652818c2be5c2e513517ca03f02","kind":1,"pubkey":"2755b492fbb0ffa5c327819a4699c7001341b9f7826a8367273549f1a58a4831","sig":"bb66c3174e6c22e1cdf625f43b09276bb8884f64bea003ab1b4ad29edb4b491bf27ce78db948b1942c8ad85de116598d7fb78ff27e0ad4630a12d2c8f15d159e","tags":[["e","a56372e4d568e3c85bb9507b1e09db0684e8b68b5cbab3001909d9382ae390ff","","root"],["p","d163c3686187605ab3a9fc87da299356364b77157cb66b1bc1a72d1ec6788eda"]]}] +[14:12:36.689] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今後はジェダイって呼んでください","created_at":1759428728,"id":"0f24b7f8b0cb7d3d46f789ebd2f5966e565b07a1b68f50421cdaf84486373e7b","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"be424032e5b15efe2524f532f4736e6b5623be0020b0e81b1aa353c0500c230c3f54988df26cbf5ac548526b341055f393623d1e7a4ba67296ac29a5e6525823","tags":[]}] +[14:12:36.750] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"@Scoresby's signal: CLINK Protocol Demo - MAY THE ₿ITCOIN #LIGHTNING STRIKE YOU! 𝚕𝚒𝚗𝚔: https://stacker.news/items/1245939/r/HODLR - #bitcoin #LN #askNostr","created_at":1759428727,"id":"ae98a12634719554d88e8dfeb1bbc87538f940719f9a80dba6e35c71db757cc4","kind":1,"pubkey":"c239c0f994c471c9a1e0d22b14255d956923cfbc7ce7aac653aceb2bfa4a5015","sig":"a9f178de2807a9c86173547b3cae90bdd92c0c5273d30fdd041398787bed45ee45a4b695705ad1e4a1903c2f6e3b4b7438a484564a7c499c9455bda856e52b04","tags":[]}] +[14:12:36.810] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"フォースがあるので","created_at":1759428720,"id":"a7740a68acf7b7eebb89fd6d9f5a9eace379c636b597fe648360ca311fa7fa69","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"b98cf313714149fd2cc967a66cf22309a03b02d1c5ba6311be2150515b8e7f1321039a7ea975cf17315f0972d327477857af15e54d9e4e4c0ad48c20a8c3f0c4","tags":[]}] +[14:12:36.871] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:12:36.955] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:12:37.016] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:37.076] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:37.137] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:37.198] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:12:37.258] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:12:37.318] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:37.379] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:37.439] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:37.500] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:12:37.862] RECV nos.lol:443: aef90819dee4f999c8887e0796efe7efe1b326d0c9596692e37 +[14:12:38.345] RECV nos.lol:443: 04"],["p","472f440f29ef996e92a186b8d320ff180c85590 +[14:12:39.501] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:12:39.501] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:12:39.501] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:12:39.653] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Chef and Cleaner](http://btcjobs.bitvocation.com/u83Bq)\n\nCompany: BitDeer\nDepartment: Trades\n\nDev: No\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Ethiopia\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428750,"id":"a65e53a8c712fa49740d7e14fdaa3db2d904dfc1d72c3864e9f1547dc1899898","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"69600bdeef067b3281b857e9e9131ef330e8da746e9a79225107d280e70865905ab0da8b7509073e43786bf232912f4f19f08bbfa068278583efbdbb8f642e4f","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:39.713] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Shawarma\n\nIngredients:\n1 kg Chicken Thighs\n1 tbs Coriander\n1 tbs Cumin\n1 tbs Cardamom\n1 tsp Cayenne Pepper\n2 tsp Paprika\n2 tbs Lemon Juice\n3 tbs Olive Oil\n1 cup Greek Yogurt\n1 Garlic Clove\n1 tsp Cumin\nSplash Lemon Juice\nSliced Lettuce\nSliced Tomato\n6 Pita Bread\n\nInstructions:\nCombine the marinade ingredients in a large ziplock bag (or bowl).\r\n\nAdd the chicken and use your hands to make sure each piece is coated. If using a ziplock bag, I find it convenient to close the bag then massage the bag to disperse the rub all over each chicken piece.\r\n\nMarinate overnight or up to 24 hours.\r\n\nCombine the Yoghurt Sauce ingredients in a bowl and mix. Cover and put in the fridge until required (it will last for 3 days in the fridge).\r\n\nHeat grill/BBQ (or large heavy based pan on stove) on medium high. You should not need to oil it because the marinade has oil in it and also thigh fillets have fat. But if you are worried then oil your hotplate/grill. (See notes for baking)\r\n\nPlace chicken on the grill and cook the first side for 4 to 5 minutes until nicely charred, then turn and cook the other side for 3 to 4 minutes (the 2nd side takes less time).\r\n\nRemove chicken from the grill and cover loosely with foil. Set aside to rest for 5 minutes.\r\n\nTO SERVE\r\n\nSlice chicken and pile onto platter alongside flatbreads, Salad and the Yoghurt Sauce.\r\n\nTo make a wrap, get a piece of flatbread and smear with Yoghurt Sauce. Top with a bit of lettuce and tomato and Chicken Shawarma. Roll up and enjoy!\n\nImage: https://www.themealdb.com/images/media/meals/kcv6hj1598733479.jpg Audio Instructions: https://cdn.satellite.earth/7b8d367da8ac0c0328ce5ac1f6e23d15b906fb9ce8d644352dcd63d773fa5c7d.mp3","created_at":1759428747,"id":"ae1e72e6eacd761a27f644a85a4f65eaf9146e0ac7b67258dbbb3be0d641df3e","kind":1,"pubkey":"4fdb1e1123ea6cef3a9e8118ce278848d6870b1de1df5ed10154e586544d7068","sig":"8212b9258f3cd130c80a7ad274b8fe6efb4b3944a26a177362805668d1e35aafed2aaf6337f49236272e2cdfe3bbb251eb2db9ca4f35d0a22e02a8d43da496a9","tags":[]}] +[14:12:39.774] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足のお菓子交換","created_at":1759428739,"id":"d2bbfef6f4f542721b93f10b2cb7522508d0ee98608d0e0e2cdb7b0527a5af23","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ee23ef027b8c91ecf13fb6c36957c890878b1388471cca85fd2d9e14b4dcdfae6c599808d14189b8da4604d589a6637bc4d3079e8aba1aa04143de3fca658e36","tags":[]}] +[14:12:39.834] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I do condone piracy. Everyone should do it if capable.","created_at":1759428737,"id":"cd27d54172cf08f622a190cac926839b7fe3ed9b0e050fe940a40e1b95f4a8d5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"c921fc7ab7a1260350c4e0f2abc85cc2d85086e33d7543c16cf2b6043301d260b32cf8285d54d9ea942b560c63c63b2d3b42303f3890b651b9cadd37a51447d2","tags":[["alt","A short note: I do condone piracy. Everyone should do it if capa..."],["e","eefe745b5d5e3812450b3a5e591ba2d3607ae87a25bc2fd49866f6595e876438","wss://relay.mostr.pub/","root","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439","wss://relay.mostr.pub/"]]}] +[14:12:39.895] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amanhã no Don't Trust, Verify temos uma convidada muito especial, Joana Amaral Dias. E também o sorteio da #LotoMaxi #Bitcoin!\nO painel de sempre: nostr:npub1g34z7c83lerj08k6xf3xjygy3dd5dh6tpcdsmd6l875tp94tujqqdw6zjw, nostr:npub160u5kdf4g2nr993qvteuj9rr35x7awny4u0esrvnjplwrvlq6nus90as4t e nostr:npub103wzz5eeegcwzrchje02m4rcxqxqtz2rauefhdshmtzd9xjxxdnqm5kd9u.\n22h🇵🇹/18h🇧🇷\nhttps://www.youtube.com/watch?v=hh5yrgSJXI4","created_at":1759428732,"id":"e82f403e592933f12991d2d8cd4f76f5c646ee479c5450db50f5d86bbcbb9894","kind":1,"pubkey":"ff596f3bb07f7f568df80a8839b72db2088e1f5fe91236ade56a216c8dcc5ff6","sig":"88c8bae6ddfa04ab33ea86afb3a77ffec4309a12e82941edaa83609e5698c0a0ae26b5d5b6ef299e670e2efd9ec57a64bc878b9d353bfa09d3c96dde6f934432","tags":[["t","LotoMaxi"],["t","Bitcoin"],["p","446a2f60f1fe47279eda32626911048b5b46df4b0e1b0db75f3fa8b096abe480","","mention"],["p","d3f94b353542a632962062f3c914638d0deeba64af1f980d93907ee1b3e0d4f9","","mention"],["p","7c5c215339ca30e10f17965eadd478300c058943ef329bb617dac4d29a463366","","mention"],["r","wss://nostr.wine/"],["r","wss://eden.nostr.land/"],["r","wss://nos.lol/"],["r","wss://relay.damus.io/"],["r","wss://relay.primal.net/"]]}] +[14:12:39.955] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me too.\n\nEspecially #trainhopping videos like George's. \n\nhttps://www.youtube.com/@Jumpingoffthecliff \n\n","created_at":1759428731,"id":"dcb7808084e0dfa4f7a3e8a54dbdd08bb1475fc9507cba9adb3bc2599dfd43d8","kind":1,"pubkey":"386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9","sig":"f171f80fb6956e2a998cb4b8af6b5e69b9986201d7bc50ba47328118d8317e8abeb76d20a0c34532248d769bc6553814ac1baec271b2a860644dbd5dfc07cd1d","tags":[["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb","wss://adre.su/","mention"],["p","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","ed6a622d1638ffa4fb43e900dcfc71c178e70cd4080a822cfb0f77dd3d51ceb8","","reply","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","c9b97c7e5561d0a7f0ae575b7d891a477bb1563157b9db53dd961cbf5a0dd4a5","","root","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["t","trainhopping"]]}] +[14:12:40.016] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"the wall keeps you tax slaves in as well as keeping them out ","created_at":1759428729,"id":"992c1a1658ad48b8616a9453d27d7225db74d652818c2be5c2e513517ca03f02","kind":1,"pubkey":"2755b492fbb0ffa5c327819a4699c7001341b9f7826a8367273549f1a58a4831","sig":"bb66c3174e6c22e1cdf625f43b09276bb8884f64bea003ab1b4ad29edb4b491bf27ce78db948b1942c8ad85de116598d7fb78ff27e0ad4630a12d2c8f15d159e","tags":[["e","a56372e4d568e3c85bb9507b1e09db0684e8b68b5cbab3001909d9382ae390ff","","root"],["p","d163c3686187605ab3a9fc87da299356364b77157cb66b1bc1a72d1ec6788eda"]]}] +[14:12:40.076] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今後はジェダイって呼んでください","created_at":1759428728,"id":"0f24b7f8b0cb7d3d46f789ebd2f5966e565b07a1b68f50421cdaf84486373e7b","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"be424032e5b15efe2524f532f4736e6b5623be0020b0e81b1aa353c0500c230c3f54988df26cbf5ac548526b341055f393623d1e7a4ba67296ac29a5e6525823","tags":[]}] +[14:12:40.137] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"@Scoresby's signal: CLINK Protocol Demo - MAY THE ₿ITCOIN #LIGHTNING STRIKE YOU! 𝚕𝚒𝚗𝚔: https://stacker.news/items/1245939/r/HODLR - #bitcoin #LN #askNostr","created_at":1759428727,"id":"ae98a12634719554d88e8dfeb1bbc87538f940719f9a80dba6e35c71db757cc4","kind":1,"pubkey":"c239c0f994c471c9a1e0d22b14255d956923cfbc7ce7aac653aceb2bfa4a5015","sig":"a9f178de2807a9c86173547b3cae90bdd92c0c5273d30fdd041398787bed45ee45a4b695705ad1e4a1903c2f6e3b4b7438a484564a7c499c9455bda856e52b04","tags":[]}] +[14:12:40.197] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"フォースがあるので","created_at":1759428720,"id":"a7740a68acf7b7eebb89fd6d9f5a9eace379c636b597fe648360ca311fa7fa69","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"b98cf313714149fd2cc967a66cf22309a03b02d1c5ba6311be2150515b8e7f1321039a7ea975cf17315f0972d327477857af15e54d9e4e4c0ad48c20a8c3f0c4","tags":[]}] +[14:12:40.258] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:12:40.318] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:12:40.379] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:40.439] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:40.500] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:40.561] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:12:40.621] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:12:40.682] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:40.742] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:40.803] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:40.863] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:12:41.191] RECV nos.lol:443: aef90819dee4f999c8887e0796efe7efe1b326d0c9596692e37 +[14:12:41.674] RECV nos.lol:443: 04"],["p","472f440f29ef996e92a186b8d320ff180c85590 +[14:12:43.026] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:12:43.026] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:12:43.026] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:12:43.177] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Rust Backend Developer for BRAIINS MANAGER ](http://btcjobs.bitvocation.com/dmGLf)\n\nCompany: Braiins\nDepartment: Engineering\n\nDev: Yes\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Unknown\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428761,"id":"6362a9ade49c6f58408729164c6eebdd72e000397e3815d6dc3a4509b84a40f7","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"2a54619fbb6123d1ef04e74b943cef5c71575c047742067b95bff9b35f17daa0a4bc1c576334b32208acfcb47908121ab89bf04a9a88ce6ce8edc4387c9e9b52","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:43.238] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqsvsq709m00dddy60mfrla68fc5p7skk3u9uznw7xfygz3dlr8j5ustkhx5f","created_at":1759428761,"id":"d50c904c329620eea88bd21fe9c81652683fe8c094dc3f8ccd65d00da2c31ae5","kind":1,"pubkey":"fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e","sig":"808b332e0cad7cf9dc6bdee1acf9c641576f93761c2af64b51acd457daf1baeb2c187b546513b63ea93f3e60e3d93f5685be4af6ac49a21e30f029ad04b47e4b","tags":[["e","c803cf2edef6b5a4d3f691ffba3a7140fa16b4785e0a6ef192440a2df8cf2a72","","mention"],["e","639fd49562a8cf313d297d411c2d38cc190ca295aeec37b6ba27d6b62e1cc655","wss://nostr.oxtr.dev","root"],["e","829acc8a6dcd2962fdce1f3bffdd21c954f8836e1129143e874ad0fb96dffda2","wss://nostr.oxtr.dev","reply"],["p","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"],["p","d8a6ecf0c396eaa8f79a4497fe9b77dc977633451f3ca5c634e208659116647b","","mention"],["p","b671197df527295c7cc4d195c359d0dd95f001d25df607eaccb61a6a4a0c197d"]]}] +[14:12:43.299] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"んずは日本のジェダイ[1,2,4]。 - Wikipedia","created_at":1759428760,"id":"6bd8d777ae0d600b7d4904505a9d7450e901ce7e3657c4fe08c62ab1eb1363f6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba346b72d71f3ed599887ca8e0aca014eb48d56cbb1b32ccbf20459600b256076be3e1f7597500d19ad7992a84b141341d76c8b80507d3b8cc6096f711e64d55","tags":[]}] +[14:12:43.359] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Chef and Cleaner](http://btcjobs.bitvocation.com/u83Bq)\n\nCompany: BitDeer\nDepartment: Trades\n\nDev: No\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Ethiopia\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428750,"id":"a65e53a8c712fa49740d7e14fdaa3db2d904dfc1d72c3864e9f1547dc1899898","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"69600bdeef067b3281b857e9e9131ef330e8da746e9a79225107d280e70865905ab0da8b7509073e43786bf232912f4f19f08bbfa068278583efbdbb8f642e4f","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:43.420] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Shawarma\n\nIngredients:\n1 kg Chicken Thighs\n1 tbs Coriander\n1 tbs Cumin\n1 tbs Cardamom\n1 tsp Cayenne Pepper\n2 tsp Paprika\n2 tbs Lemon Juice\n3 tbs Olive Oil\n1 cup Greek Yogurt\n1 Garlic Clove\n1 tsp Cumin\nSplash Lemon Juice\nSliced Lettuce\nSliced Tomato\n6 Pita Bread\n\nInstructions:\nCombine the marinade ingredients in a large ziplock bag (or bowl).\r\n\nAdd the chicken and use your hands to make sure each piece is coated. If using a ziplock bag, I find it convenient to close the bag then massage the bag to disperse the rub all over each chicken piece.\r\n\nMarinate overnight or up to 24 hours.\r\n\nCombine the Yoghurt Sauce ingredients in a bowl and mix. Cover and put in the fridge until required (it will last for 3 days in the fridge).\r\n\nHeat grill/BBQ (or large heavy based pan on stove) on medium high. You should not need to oil it because the marinade has oil in it and also thigh fillets have fat. But if you are worried then oil your hotplate/grill. (See notes for baking)\r\n\nPlace chicken on the grill and cook the first side for 4 to 5 minutes until nicely charred, then turn and cook the other side for 3 to 4 minutes (the 2nd side takes less time).\r\n\nRemove chicken from the grill and cover loosely with foil. Set aside to rest for 5 minutes.\r\n\nTO SERVE\r\n\nSlice chicken and pile onto platter alongside flatbreads, Salad and the Yoghurt Sauce.\r\n\nTo make a wrap, get a piece of flatbread and smear with Yoghurt Sauce. Top with a bit of lettuce and tomato and Chicken Shawarma. Roll up and enjoy!\n\nImage: https://www.themealdb.com/images/media/meals/kcv6hj1598733479.jpg Audio Instructions: https://cdn.satellite.earth/7b8d367da8ac0c0328ce5ac1f6e23d15b906fb9ce8d644352dcd63d773fa5c7d.mp3","created_at":1759428747,"id":"ae1e72e6eacd761a27f644a85a4f65eaf9146e0ac7b67258dbbb3be0d641df3e","kind":1,"pubkey":"4fdb1e1123ea6cef3a9e8118ce278848d6870b1de1df5ed10154e586544d7068","sig":"8212b9258f3cd130c80a7ad274b8fe6efb4b3944a26a177362805668d1e35aafed2aaf6337f49236272e2cdfe3bbb251eb2db9ca4f35d0a22e02a8d43da496a9","tags":[]}] +[14:12:43.480] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足のお菓子交換","created_at":1759428739,"id":"d2bbfef6f4f542721b93f10b2cb7522508d0ee98608d0e0e2cdb7b0527a5af23","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ee23ef027b8c91ecf13fb6c36957c890878b1388471cca85fd2d9e14b4dcdfae6c599808d14189b8da4604d589a6637bc4d3079e8aba1aa04143de3fca658e36","tags":[]}] +[14:12:43.541] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I do condone piracy. Everyone should do it if capable.","created_at":1759428737,"id":"cd27d54172cf08f622a190cac926839b7fe3ed9b0e050fe940a40e1b95f4a8d5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"c921fc7ab7a1260350c4e0f2abc85cc2d85086e33d7543c16cf2b6043301d260b32cf8285d54d9ea942b560c63c63b2d3b42303f3890b651b9cadd37a51447d2","tags":[["alt","A short note: I do condone piracy. Everyone should do it if capa..."],["e","eefe745b5d5e3812450b3a5e591ba2d3607ae87a25bc2fd49866f6595e876438","wss://relay.mostr.pub/","root","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439","wss://relay.mostr.pub/"]]}] +[14:12:43.601] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amanhã no Don't Trust, Verify temos uma convidada muito especial, Joana Amaral Dias. E também o sorteio da #LotoMaxi #Bitcoin!\nO painel de sempre: nostr:npub1g34z7c83lerj08k6xf3xjygy3dd5dh6tpcdsmd6l875tp94tujqqdw6zjw, nostr:npub160u5kdf4g2nr993qvteuj9rr35x7awny4u0esrvnjplwrvlq6nus90as4t e nostr:npub103wzz5eeegcwzrchje02m4rcxqxqtz2rauefhdshmtzd9xjxxdnqm5kd9u.\n22h🇵🇹/18h🇧🇷\nhttps://www.youtube.com/watch?v=hh5yrgSJXI4","created_at":1759428732,"id":"e82f403e592933f12991d2d8cd4f76f5c646ee479c5450db50f5d86bbcbb9894","kind":1,"pubkey":"ff596f3bb07f7f568df80a8839b72db2088e1f5fe91236ade56a216c8dcc5ff6","sig":"88c8bae6ddfa04ab33ea86afb3a77ffec4309a12e82941edaa83609e5698c0a0ae26b5d5b6ef299e670e2efd9ec57a64bc878b9d353bfa09d3c96dde6f934432","tags":[["t","LotoMaxi"],["t","Bitcoin"],["p","446a2f60f1fe47279eda32626911048b5b46df4b0e1b0db75f3fa8b096abe480","","mention"],["p","d3f94b353542a632962062f3c914638d0deeba64af1f980d93907ee1b3e0d4f9","","mention"],["p","7c5c215339ca30e10f17965eadd478300c058943ef329bb617dac4d29a463366","","mention"],["r","wss://nostr.wine/"],["r","wss://eden.nostr.land/"],["r","wss://nos.lol/"],["r","wss://relay.damus.io/"],["r","wss://relay.primal.net/"]]}] +[14:12:43.662] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me too.\n\nEspecially #trainhopping videos like George's. \n\nhttps://www.youtube.com/@Jumpingoffthecliff \n\n","created_at":1759428731,"id":"dcb7808084e0dfa4f7a3e8a54dbdd08bb1475fc9507cba9adb3bc2599dfd43d8","kind":1,"pubkey":"386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9","sig":"f171f80fb6956e2a998cb4b8af6b5e69b9986201d7bc50ba47328118d8317e8abeb76d20a0c34532248d769bc6553814ac1baec271b2a860644dbd5dfc07cd1d","tags":[["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb","wss://adre.su/","mention"],["p","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","ed6a622d1638ffa4fb43e900dcfc71c178e70cd4080a822cfb0f77dd3d51ceb8","","reply","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","c9b97c7e5561d0a7f0ae575b7d891a477bb1563157b9db53dd961cbf5a0dd4a5","","root","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["t","trainhopping"]]}] +[14:12:43.722] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"the wall keeps you tax slaves in as well as keeping them out ","created_at":1759428729,"id":"992c1a1658ad48b8616a9453d27d7225db74d652818c2be5c2e513517ca03f02","kind":1,"pubkey":"2755b492fbb0ffa5c327819a4699c7001341b9f7826a8367273549f1a58a4831","sig":"bb66c3174e6c22e1cdf625f43b09276bb8884f64bea003ab1b4ad29edb4b491bf27ce78db948b1942c8ad85de116598d7fb78ff27e0ad4630a12d2c8f15d159e","tags":[["e","a56372e4d568e3c85bb9507b1e09db0684e8b68b5cbab3001909d9382ae390ff","","root"],["p","d163c3686187605ab3a9fc87da299356364b77157cb66b1bc1a72d1ec6788eda"]]}] +[14:12:43.783] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:12:43.843] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:12:43.904] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:43.964] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:44.025] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:44.085] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:12:44.146] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:12:44.207] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:44.267] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:44.328] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:44.388] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:12:44.750] RECV nos.lol:443: aef90819dee4f999c8887e0796efe7efe1b326d0c9596692e37 +[14:12:45.233] RECV nos.lol:443: 04"],["p","472f440f29ef996e92a186b8d320ff180c85590 +[14:12:46.391] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:12:46.391] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:12:46.391] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:12:46.544] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Rust Backend Developer for BRAIINS MANAGER ](http://btcjobs.bitvocation.com/dmGLf)\n\nCompany: Braiins\nDepartment: Engineering\n\nDev: Yes\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Unknown\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428761,"id":"6362a9ade49c6f58408729164c6eebdd72e000397e3815d6dc3a4509b84a40f7","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"2a54619fbb6123d1ef04e74b943cef5c71575c047742067b95bff9b35f17daa0a4bc1c576334b32208acfcb47908121ab89bf04a9a88ce6ce8edc4387c9e9b52","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:46.554] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqsvsq709m00dddy60mfrla68fc5p7skk3u9uznw7xfygz3dlr8j5ustkhx5f","created_at":1759428761,"id":"d50c904c329620eea88bd21fe9c81652683fe8c094dc3f8ccd65d00da2c31ae5","kind":1,"pubkey":"fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e","sig":"808b332e0cad7cf9dc6bdee1acf9c641576f93761c2af64b51acd457daf1baeb2c187b546513b63ea93f3e60e3d93f5685be4af6ac49a21e30f029ad04b47e4b","tags":[["e","c803cf2edef6b5a4d3f691ffba3a7140fa16b4785e0a6ef192440a2df8cf2a72","","mention"],["e","639fd49562a8cf313d297d411c2d38cc190ca295aeec37b6ba27d6b62e1cc655","wss://nostr.oxtr.dev","root"],["e","829acc8a6dcd2962fdce1f3bffdd21c954f8836e1129143e874ad0fb96dffda2","wss://nostr.oxtr.dev","reply"],["p","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"],["p","d8a6ecf0c396eaa8f79a4497fe9b77dc977633451f3ca5c634e208659116647b","","mention"],["p","b671197df527295c7cc4d195c359d0dd95f001d25df607eaccb61a6a4a0c197d"]]}] +[14:12:46.614] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"んずは日本のジェダイ[1,2,4]。 - Wikipedia","created_at":1759428760,"id":"6bd8d777ae0d600b7d4904505a9d7450e901ce7e3657c4fe08c62ab1eb1363f6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba346b72d71f3ed599887ca8e0aca014eb48d56cbb1b32ccbf20459600b256076be3e1f7597500d19ad7992a84b141341d76c8b80507d3b8cc6096f711e64d55","tags":[]}] +[14:12:46.675] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Chef and Cleaner](http://btcjobs.bitvocation.com/u83Bq)\n\nCompany: BitDeer\nDepartment: Trades\n\nDev: No\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Ethiopia\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428750,"id":"a65e53a8c712fa49740d7e14fdaa3db2d904dfc1d72c3864e9f1547dc1899898","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"69600bdeef067b3281b857e9e9131ef330e8da746e9a79225107d280e70865905ab0da8b7509073e43786bf232912f4f19f08bbfa068278583efbdbb8f642e4f","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:46.735] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Shawarma\n\nIngredients:\n1 kg Chicken Thighs\n1 tbs Coriander\n1 tbs Cumin\n1 tbs Cardamom\n1 tsp Cayenne Pepper\n2 tsp Paprika\n2 tbs Lemon Juice\n3 tbs Olive Oil\n1 cup Greek Yogurt\n1 Garlic Clove\n1 tsp Cumin\nSplash Lemon Juice\nSliced Lettuce\nSliced Tomato\n6 Pita Bread\n\nInstructions:\nCombine the marinade ingredients in a large ziplock bag (or bowl).\r\n\nAdd the chicken and use your hands to make sure each piece is coated. If using a ziplock bag, I find it convenient to close the bag then massage the bag to disperse the rub all over each chicken piece.\r\n\nMarinate overnight or up to 24 hours.\r\n\nCombine the Yoghurt Sauce ingredients in a bowl and mix. Cover and put in the fridge until required (it will last for 3 days in the fridge).\r\n\nHeat grill/BBQ (or large heavy based pan on stove) on medium high. You should not need to oil it because the marinade has oil in it and also thigh fillets have fat. But if you are worried then oil your hotplate/grill. (See notes for baking)\r\n\nPlace chicken on the grill and cook the first side for 4 to 5 minutes until nicely charred, then turn and cook the other side for 3 to 4 minutes (the 2nd side takes less time).\r\n\nRemove chicken from the grill and cover loosely with foil. Set aside to rest for 5 minutes.\r\n\nTO SERVE\r\n\nSlice chicken and pile onto platter alongside flatbreads, Salad and the Yoghurt Sauce.\r\n\nTo make a wrap, get a piece of flatbread and smear with Yoghurt Sauce. Top with a bit of lettuce and tomato and Chicken Shawarma. Roll up and enjoy!\n\nImage: https://www.themealdb.com/images/media/meals/kcv6hj1598733479.jpg Audio Instructions: https://cdn.satellite.earth/7b8d367da8ac0c0328ce5ac1f6e23d15b906fb9ce8d644352dcd63d773fa5c7d.mp3","created_at":1759428747,"id":"ae1e72e6eacd761a27f644a85a4f65eaf9146e0ac7b67258dbbb3be0d641df3e","kind":1,"pubkey":"4fdb1e1123ea6cef3a9e8118ce278848d6870b1de1df5ed10154e586544d7068","sig":"8212b9258f3cd130c80a7ad274b8fe6efb4b3944a26a177362805668d1e35aafed2aaf6337f49236272e2cdfe3bbb251eb2db9ca4f35d0a22e02a8d43da496a9","tags":[]}] +[14:12:46.796] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足のお菓子交換","created_at":1759428739,"id":"d2bbfef6f4f542721b93f10b2cb7522508d0ee98608d0e0e2cdb7b0527a5af23","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ee23ef027b8c91ecf13fb6c36957c890878b1388471cca85fd2d9e14b4dcdfae6c599808d14189b8da4604d589a6637bc4d3079e8aba1aa04143de3fca658e36","tags":[]}] +[14:12:46.856] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I do condone piracy. Everyone should do it if capable.","created_at":1759428737,"id":"cd27d54172cf08f622a190cac926839b7fe3ed9b0e050fe940a40e1b95f4a8d5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"c921fc7ab7a1260350c4e0f2abc85cc2d85086e33d7543c16cf2b6043301d260b32cf8285d54d9ea942b560c63c63b2d3b42303f3890b651b9cadd37a51447d2","tags":[["alt","A short note: I do condone piracy. Everyone should do it if capa..."],["e","eefe745b5d5e3812450b3a5e591ba2d3607ae87a25bc2fd49866f6595e876438","wss://relay.mostr.pub/","root","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439","wss://relay.mostr.pub/"]]}] +[14:12:46.917] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amanhã no Don't Trust, Verify temos uma convidada muito especial, Joana Amaral Dias. E também o sorteio da #LotoMaxi #Bitcoin!\nO painel de sempre: nostr:npub1g34z7c83lerj08k6xf3xjygy3dd5dh6tpcdsmd6l875tp94tujqqdw6zjw, nostr:npub160u5kdf4g2nr993qvteuj9rr35x7awny4u0esrvnjplwrvlq6nus90as4t e nostr:npub103wzz5eeegcwzrchje02m4rcxqxqtz2rauefhdshmtzd9xjxxdnqm5kd9u.\n22h🇵🇹/18h🇧🇷\nhttps://www.youtube.com/watch?v=hh5yrgSJXI4","created_at":1759428732,"id":"e82f403e592933f12991d2d8cd4f76f5c646ee479c5450db50f5d86bbcbb9894","kind":1,"pubkey":"ff596f3bb07f7f568df80a8839b72db2088e1f5fe91236ade56a216c8dcc5ff6","sig":"88c8bae6ddfa04ab33ea86afb3a77ffec4309a12e82941edaa83609e5698c0a0ae26b5d5b6ef299e670e2efd9ec57a64bc878b9d353bfa09d3c96dde6f934432","tags":[["t","LotoMaxi"],["t","Bitcoin"],["p","446a2f60f1fe47279eda32626911048b5b46df4b0e1b0db75f3fa8b096abe480","","mention"],["p","d3f94b353542a632962062f3c914638d0deeba64af1f980d93907ee1b3e0d4f9","","mention"],["p","7c5c215339ca30e10f17965eadd478300c058943ef329bb617dac4d29a463366","","mention"],["r","wss://nostr.wine/"],["r","wss://eden.nostr.land/"],["r","wss://nos.lol/"],["r","wss://relay.damus.io/"],["r","wss://relay.primal.net/"]]}] +[14:12:46.977] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me too.\n\nEspecially #trainhopping videos like George's. \n\nhttps://www.youtube.com/@Jumpingoffthecliff \n\n","created_at":1759428731,"id":"dcb7808084e0dfa4f7a3e8a54dbdd08bb1475fc9507cba9adb3bc2599dfd43d8","kind":1,"pubkey":"386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9","sig":"f171f80fb6956e2a998cb4b8af6b5e69b9986201d7bc50ba47328118d8317e8abeb76d20a0c34532248d769bc6553814ac1baec271b2a860644dbd5dfc07cd1d","tags":[["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb","wss://adre.su/","mention"],["p","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","ed6a622d1638ffa4fb43e900dcfc71c178e70cd4080a822cfb0f77dd3d51ceb8","","reply","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","c9b97c7e5561d0a7f0ae575b7d891a477bb1563157b9db53dd961cbf5a0dd4a5","","root","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["t","trainhopping"]]}] +[14:12:47.038] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"the wall keeps you tax slaves in as well as keeping them out ","created_at":1759428729,"id":"992c1a1658ad48b8616a9453d27d7225db74d652818c2be5c2e513517ca03f02","kind":1,"pubkey":"2755b492fbb0ffa5c327819a4699c7001341b9f7826a8367273549f1a58a4831","sig":"bb66c3174e6c22e1cdf625f43b09276bb8884f64bea003ab1b4ad29edb4b491bf27ce78db948b1942c8ad85de116598d7fb78ff27e0ad4630a12d2c8f15d159e","tags":[["e","a56372e4d568e3c85bb9507b1e09db0684e8b68b5cbab3001909d9382ae390ff","","root"],["p","d163c3686187605ab3a9fc87da299356364b77157cb66b1bc1a72d1ec6788eda"]]}] +[14:12:47.098] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:12:47.159] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:12:47.219] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:47.280] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:47.340] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:47.401] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:12:47.461] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:12:47.522] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:47.582] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:47.643] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:47.703] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:12:48.066] RECV nos.lol:443: aef90819dee4f999c8887e0796efe7efe1b326d0c9596692e37 +[14:12:48.549] RECV nos.lol:443: 04"],["p","472f440f29ef996e92a186b8d320ff180c85590 +[14:12:49.703] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:12:49.704] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:12:49.704] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:12:50.036] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Rust Backend Developer for BRAIINS MANAGER ](http://btcjobs.bitvocation.com/dmGLf)\n\nCompany: Braiins\nDepartment: Engineering\n\nDev: Yes\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Unknown\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428761,"id":"6362a9ade49c6f58408729164c6eebdd72e000397e3815d6dc3a4509b84a40f7","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"2a54619fbb6123d1ef04e74b943cef5c71575c047742067b95bff9b35f17daa0a4bc1c576334b32208acfcb47908121ab89bf04a9a88ce6ce8edc4387c9e9b52","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:50.096] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqsvsq709m00dddy60mfrla68fc5p7skk3u9uznw7xfygz3dlr8j5ustkhx5f","created_at":1759428761,"id":"d50c904c329620eea88bd21fe9c81652683fe8c094dc3f8ccd65d00da2c31ae5","kind":1,"pubkey":"fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e","sig":"808b332e0cad7cf9dc6bdee1acf9c641576f93761c2af64b51acd457daf1baeb2c187b546513b63ea93f3e60e3d93f5685be4af6ac49a21e30f029ad04b47e4b","tags":[["e","c803cf2edef6b5a4d3f691ffba3a7140fa16b4785e0a6ef192440a2df8cf2a72","","mention"],["e","639fd49562a8cf313d297d411c2d38cc190ca295aeec37b6ba27d6b62e1cc655","wss://nostr.oxtr.dev","root"],["e","829acc8a6dcd2962fdce1f3bffdd21c954f8836e1129143e874ad0fb96dffda2","wss://nostr.oxtr.dev","reply"],["p","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"],["p","d8a6ecf0c396eaa8f79a4497fe9b77dc977633451f3ca5c634e208659116647b","","mention"],["p","b671197df527295c7cc4d195c359d0dd95f001d25df607eaccb61a6a4a0c197d"]]}] +[14:12:50.157] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"んずは日本のジェダイ[1,2,4]。 - Wikipedia","created_at":1759428760,"id":"6bd8d777ae0d600b7d4904505a9d7450e901ce7e3657c4fe08c62ab1eb1363f6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba346b72d71f3ed599887ca8e0aca014eb48d56cbb1b32ccbf20459600b256076be3e1f7597500d19ad7992a84b141341d76c8b80507d3b8cc6096f711e64d55","tags":[]}] +[14:12:50.217] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Chef and Cleaner](http://btcjobs.bitvocation.com/u83Bq)\n\nCompany: BitDeer\nDepartment: Trades\n\nDev: No\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Ethiopia\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428750,"id":"a65e53a8c712fa49740d7e14fdaa3db2d904dfc1d72c3864e9f1547dc1899898","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"69600bdeef067b3281b857e9e9131ef330e8da746e9a79225107d280e70865905ab0da8b7509073e43786bf232912f4f19f08bbfa068278583efbdbb8f642e4f","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:50.278] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Shawarma\n\nIngredients:\n1 kg Chicken Thighs\n1 tbs Coriander\n1 tbs Cumin\n1 tbs Cardamom\n1 tsp Cayenne Pepper\n2 tsp Paprika\n2 tbs Lemon Juice\n3 tbs Olive Oil\n1 cup Greek Yogurt\n1 Garlic Clove\n1 tsp Cumin\nSplash Lemon Juice\nSliced Lettuce\nSliced Tomato\n6 Pita Bread\n\nInstructions:\nCombine the marinade ingredients in a large ziplock bag (or bowl).\r\n\nAdd the chicken and use your hands to make sure each piece is coated. If using a ziplock bag, I find it convenient to close the bag then massage the bag to disperse the rub all over each chicken piece.\r\n\nMarinate overnight or up to 24 hours.\r\n\nCombine the Yoghurt Sauce ingredients in a bowl and mix. Cover and put in the fridge until required (it will last for 3 days in the fridge).\r\n\nHeat grill/BBQ (or large heavy based pan on stove) on medium high. You should not need to oil it because the marinade has oil in it and also thigh fillets have fat. But if you are worried then oil your hotplate/grill. (See notes for baking)\r\n\nPlace chicken on the grill and cook the first side for 4 to 5 minutes until nicely charred, then turn and cook the other side for 3 to 4 minutes (the 2nd side takes less time).\r\n\nRemove chicken from the grill and cover loosely with foil. Set aside to rest for 5 minutes.\r\n\nTO SERVE\r\n\nSlice chicken and pile onto platter alongside flatbreads, Salad and the Yoghurt Sauce.\r\n\nTo make a wrap, get a piece of flatbread and smear with Yoghurt Sauce. Top with a bit of lettuce and tomato and Chicken Shawarma. Roll up and enjoy!\n\nImage: https://www.themealdb.com/images/media/meals/kcv6hj1598733479.jpg Audio Instructions: https://cdn.satellite.earth/7b8d367da8ac0c0328ce5ac1f6e23d15b906fb9ce8d644352dcd63d773fa5c7d.mp3","created_at":1759428747,"id":"ae1e72e6eacd761a27f644a85a4f65eaf9146e0ac7b67258dbbb3be0d641df3e","kind":1,"pubkey":"4fdb1e1123ea6cef3a9e8118ce278848d6870b1de1df5ed10154e586544d7068","sig":"8212b9258f3cd130c80a7ad274b8fe6efb4b3944a26a177362805668d1e35aafed2aaf6337f49236272e2cdfe3bbb251eb2db9ca4f35d0a22e02a8d43da496a9","tags":[]}] +[14:12:50.339] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足のお菓子交換","created_at":1759428739,"id":"d2bbfef6f4f542721b93f10b2cb7522508d0ee98608d0e0e2cdb7b0527a5af23","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ee23ef027b8c91ecf13fb6c36957c890878b1388471cca85fd2d9e14b4dcdfae6c599808d14189b8da4604d589a6637bc4d3079e8aba1aa04143de3fca658e36","tags":[]}] +[14:12:50.399] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I do condone piracy. Everyone should do it if capable.","created_at":1759428737,"id":"cd27d54172cf08f622a190cac926839b7fe3ed9b0e050fe940a40e1b95f4a8d5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"c921fc7ab7a1260350c4e0f2abc85cc2d85086e33d7543c16cf2b6043301d260b32cf8285d54d9ea942b560c63c63b2d3b42303f3890b651b9cadd37a51447d2","tags":[["alt","A short note: I do condone piracy. Everyone should do it if capa..."],["e","eefe745b5d5e3812450b3a5e591ba2d3607ae87a25bc2fd49866f6595e876438","wss://relay.mostr.pub/","root","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439","wss://relay.mostr.pub/"]]}] +[14:12:50.460] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amanhã no Don't Trust, Verify temos uma convidada muito especial, Joana Amaral Dias. E também o sorteio da #LotoMaxi #Bitcoin!\nO painel de sempre: nostr:npub1g34z7c83lerj08k6xf3xjygy3dd5dh6tpcdsmd6l875tp94tujqqdw6zjw, nostr:npub160u5kdf4g2nr993qvteuj9rr35x7awny4u0esrvnjplwrvlq6nus90as4t e nostr:npub103wzz5eeegcwzrchje02m4rcxqxqtz2rauefhdshmtzd9xjxxdnqm5kd9u.\n22h🇵🇹/18h🇧🇷\nhttps://www.youtube.com/watch?v=hh5yrgSJXI4","created_at":1759428732,"id":"e82f403e592933f12991d2d8cd4f76f5c646ee479c5450db50f5d86bbcbb9894","kind":1,"pubkey":"ff596f3bb07f7f568df80a8839b72db2088e1f5fe91236ade56a216c8dcc5ff6","sig":"88c8bae6ddfa04ab33ea86afb3a77ffec4309a12e82941edaa83609e5698c0a0ae26b5d5b6ef299e670e2efd9ec57a64bc878b9d353bfa09d3c96dde6f934432","tags":[["t","LotoMaxi"],["t","Bitcoin"],["p","446a2f60f1fe47279eda32626911048b5b46df4b0e1b0db75f3fa8b096abe480","","mention"],["p","d3f94b353542a632962062f3c914638d0deeba64af1f980d93907ee1b3e0d4f9","","mention"],["p","7c5c215339ca30e10f17965eadd478300c058943ef329bb617dac4d29a463366","","mention"],["r","wss://nostr.wine/"],["r","wss://eden.nostr.land/"],["r","wss://nos.lol/"],["r","wss://relay.damus.io/"],["r","wss://relay.primal.net/"]]}] +[14:12:50.520] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me too.\n\nEspecially #trainhopping videos like George's. \n\nhttps://www.youtube.com/@Jumpingoffthecliff \n\n","created_at":1759428731,"id":"dcb7808084e0dfa4f7a3e8a54dbdd08bb1475fc9507cba9adb3bc2599dfd43d8","kind":1,"pubkey":"386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9","sig":"f171f80fb6956e2a998cb4b8af6b5e69b9986201d7bc50ba47328118d8317e8abeb76d20a0c34532248d769bc6553814ac1baec271b2a860644dbd5dfc07cd1d","tags":[["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb","wss://adre.su/","mention"],["p","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","ed6a622d1638ffa4fb43e900dcfc71c178e70cd4080a822cfb0f77dd3d51ceb8","","reply","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","c9b97c7e5561d0a7f0ae575b7d891a477bb1563157b9db53dd961cbf5a0dd4a5","","root","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["t","trainhopping"]]}] +[14:12:50.581] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"the wall keeps you tax slaves in as well as keeping them out ","created_at":1759428729,"id":"992c1a1658ad48b8616a9453d27d7225db74d652818c2be5c2e513517ca03f02","kind":1,"pubkey":"2755b492fbb0ffa5c327819a4699c7001341b9f7826a8367273549f1a58a4831","sig":"bb66c3174e6c22e1cdf625f43b09276bb8884f64bea003ab1b4ad29edb4b491bf27ce78db948b1942c8ad85de116598d7fb78ff27e0ad4630a12d2c8f15d159e","tags":[["e","a56372e4d568e3c85bb9507b1e09db0684e8b68b5cbab3001909d9382ae390ff","","root"],["p","d163c3686187605ab3a9fc87da299356364b77157cb66b1bc1a72d1ec6788eda"]]}] +[14:12:50.641] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:12:50.702] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:12:50.763] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:50.823] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:50.884] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:50.944] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:12:51.005] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:12:51.066] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:51.091] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:51.151] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:51.212] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:12:51.575] RECV nos.lol:443: aef90819dee4f999c8887e0796efe7efe1b326d0c9596692e37 +[14:12:52.057] RECV nos.lol:443: 04"],["p","472f440f29ef996e92a186b8d320ff180c85590 +[14:12:53.212] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:12:53.213] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:12:53.213] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:12:53.364] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Rust Backend Developer for BRAIINS MANAGER ](http://btcjobs.bitvocation.com/dmGLf)\n\nCompany: Braiins\nDepartment: Engineering\n\nDev: Yes\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Unknown\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428761,"id":"6362a9ade49c6f58408729164c6eebdd72e000397e3815d6dc3a4509b84a40f7","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"2a54619fbb6123d1ef04e74b943cef5c71575c047742067b95bff9b35f17daa0a4bc1c576334b32208acfcb47908121ab89bf04a9a88ce6ce8edc4387c9e9b52","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:53.425] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqsvsq709m00dddy60mfrla68fc5p7skk3u9uznw7xfygz3dlr8j5ustkhx5f","created_at":1759428761,"id":"d50c904c329620eea88bd21fe9c81652683fe8c094dc3f8ccd65d00da2c31ae5","kind":1,"pubkey":"fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e","sig":"808b332e0cad7cf9dc6bdee1acf9c641576f93761c2af64b51acd457daf1baeb2c187b546513b63ea93f3e60e3d93f5685be4af6ac49a21e30f029ad04b47e4b","tags":[["e","c803cf2edef6b5a4d3f691ffba3a7140fa16b4785e0a6ef192440a2df8cf2a72","","mention"],["e","639fd49562a8cf313d297d411c2d38cc190ca295aeec37b6ba27d6b62e1cc655","wss://nostr.oxtr.dev","root"],["e","829acc8a6dcd2962fdce1f3bffdd21c954f8836e1129143e874ad0fb96dffda2","wss://nostr.oxtr.dev","reply"],["p","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"],["p","d8a6ecf0c396eaa8f79a4497fe9b77dc977633451f3ca5c634e208659116647b","","mention"],["p","b671197df527295c7cc4d195c359d0dd95f001d25df607eaccb61a6a4a0c197d"]]}] +[14:12:53.485] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"んずは日本のジェダイ[1,2,4]。 - Wikipedia","created_at":1759428760,"id":"6bd8d777ae0d600b7d4904505a9d7450e901ce7e3657c4fe08c62ab1eb1363f6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba346b72d71f3ed599887ca8e0aca014eb48d56cbb1b32ccbf20459600b256076be3e1f7597500d19ad7992a84b141341d76c8b80507d3b8cc6096f711e64d55","tags":[]}] +[14:12:53.546] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Chef and Cleaner](http://btcjobs.bitvocation.com/u83Bq)\n\nCompany: BitDeer\nDepartment: Trades\n\nDev: No\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Ethiopia\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428750,"id":"a65e53a8c712fa49740d7e14fdaa3db2d904dfc1d72c3864e9f1547dc1899898","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"69600bdeef067b3281b857e9e9131ef330e8da746e9a79225107d280e70865905ab0da8b7509073e43786bf232912f4f19f08bbfa068278583efbdbb8f642e4f","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:53.606] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Shawarma\n\nIngredients:\n1 kg Chicken Thighs\n1 tbs Coriander\n1 tbs Cumin\n1 tbs Cardamom\n1 tsp Cayenne Pepper\n2 tsp Paprika\n2 tbs Lemon Juice\n3 tbs Olive Oil\n1 cup Greek Yogurt\n1 Garlic Clove\n1 tsp Cumin\nSplash Lemon Juice\nSliced Lettuce\nSliced Tomato\n6 Pita Bread\n\nInstructions:\nCombine the marinade ingredients in a large ziplock bag (or bowl).\r\n\nAdd the chicken and use your hands to make sure each piece is coated. If using a ziplock bag, I find it convenient to close the bag then massage the bag to disperse the rub all over each chicken piece.\r\n\nMarinate overnight or up to 24 hours.\r\n\nCombine the Yoghurt Sauce ingredients in a bowl and mix. Cover and put in the fridge until required (it will last for 3 days in the fridge).\r\n\nHeat grill/BBQ (or large heavy based pan on stove) on medium high. You should not need to oil it because the marinade has oil in it and also thigh fillets have fat. But if you are worried then oil your hotplate/grill. (See notes for baking)\r\n\nPlace chicken on the grill and cook the first side for 4 to 5 minutes until nicely charred, then turn and cook the other side for 3 to 4 minutes (the 2nd side takes less time).\r\n\nRemove chicken from the grill and cover loosely with foil. Set aside to rest for 5 minutes.\r\n\nTO SERVE\r\n\nSlice chicken and pile onto platter alongside flatbreads, Salad and the Yoghurt Sauce.\r\n\nTo make a wrap, get a piece of flatbread and smear with Yoghurt Sauce. Top with a bit of lettuce and tomato and Chicken Shawarma. Roll up and enjoy!\n\nImage: https://www.themealdb.com/images/media/meals/kcv6hj1598733479.jpg Audio Instructions: https://cdn.satellite.earth/7b8d367da8ac0c0328ce5ac1f6e23d15b906fb9ce8d644352dcd63d773fa5c7d.mp3","created_at":1759428747,"id":"ae1e72e6eacd761a27f644a85a4f65eaf9146e0ac7b67258dbbb3be0d641df3e","kind":1,"pubkey":"4fdb1e1123ea6cef3a9e8118ce278848d6870b1de1df5ed10154e586544d7068","sig":"8212b9258f3cd130c80a7ad274b8fe6efb4b3944a26a177362805668d1e35aafed2aaf6337f49236272e2cdfe3bbb251eb2db9ca4f35d0a22e02a8d43da496a9","tags":[]}] +[14:12:53.667] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足のお菓子交換","created_at":1759428739,"id":"d2bbfef6f4f542721b93f10b2cb7522508d0ee98608d0e0e2cdb7b0527a5af23","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ee23ef027b8c91ecf13fb6c36957c890878b1388471cca85fd2d9e14b4dcdfae6c599808d14189b8da4604d589a6637bc4d3079e8aba1aa04143de3fca658e36","tags":[]}] +[14:12:53.727] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I do condone piracy. Everyone should do it if capable.","created_at":1759428737,"id":"cd27d54172cf08f622a190cac926839b7fe3ed9b0e050fe940a40e1b95f4a8d5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"c921fc7ab7a1260350c4e0f2abc85cc2d85086e33d7543c16cf2b6043301d260b32cf8285d54d9ea942b560c63c63b2d3b42303f3890b651b9cadd37a51447d2","tags":[["alt","A short note: I do condone piracy. Everyone should do it if capa..."],["e","eefe745b5d5e3812450b3a5e591ba2d3607ae87a25bc2fd49866f6595e876438","wss://relay.mostr.pub/","root","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439","wss://relay.mostr.pub/"]]}] +[14:12:53.788] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amanhã no Don't Trust, Verify temos uma convidada muito especial, Joana Amaral Dias. E também o sorteio da #LotoMaxi #Bitcoin!\nO painel de sempre: nostr:npub1g34z7c83lerj08k6xf3xjygy3dd5dh6tpcdsmd6l875tp94tujqqdw6zjw, nostr:npub160u5kdf4g2nr993qvteuj9rr35x7awny4u0esrvnjplwrvlq6nus90as4t e nostr:npub103wzz5eeegcwzrchje02m4rcxqxqtz2rauefhdshmtzd9xjxxdnqm5kd9u.\n22h🇵🇹/18h🇧🇷\nhttps://www.youtube.com/watch?v=hh5yrgSJXI4","created_at":1759428732,"id":"e82f403e592933f12991d2d8cd4f76f5c646ee479c5450db50f5d86bbcbb9894","kind":1,"pubkey":"ff596f3bb07f7f568df80a8839b72db2088e1f5fe91236ade56a216c8dcc5ff6","sig":"88c8bae6ddfa04ab33ea86afb3a77ffec4309a12e82941edaa83609e5698c0a0ae26b5d5b6ef299e670e2efd9ec57a64bc878b9d353bfa09d3c96dde6f934432","tags":[["t","LotoMaxi"],["t","Bitcoin"],["p","446a2f60f1fe47279eda32626911048b5b46df4b0e1b0db75f3fa8b096abe480","","mention"],["p","d3f94b353542a632962062f3c914638d0deeba64af1f980d93907ee1b3e0d4f9","","mention"],["p","7c5c215339ca30e10f17965eadd478300c058943ef329bb617dac4d29a463366","","mention"],["r","wss://nostr.wine/"],["r","wss://eden.nostr.land/"],["r","wss://nos.lol/"],["r","wss://relay.damus.io/"],["r","wss://relay.primal.net/"]]}] +[14:12:53.848] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me too.\n\nEspecially #trainhopping videos like George's. \n\nhttps://www.youtube.com/@Jumpingoffthecliff \n\n","created_at":1759428731,"id":"dcb7808084e0dfa4f7a3e8a54dbdd08bb1475fc9507cba9adb3bc2599dfd43d8","kind":1,"pubkey":"386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9","sig":"f171f80fb6956e2a998cb4b8af6b5e69b9986201d7bc50ba47328118d8317e8abeb76d20a0c34532248d769bc6553814ac1baec271b2a860644dbd5dfc07cd1d","tags":[["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb","wss://adre.su/","mention"],["p","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","ed6a622d1638ffa4fb43e900dcfc71c178e70cd4080a822cfb0f77dd3d51ceb8","","reply","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","c9b97c7e5561d0a7f0ae575b7d891a477bb1563157b9db53dd961cbf5a0dd4a5","","root","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["t","trainhopping"]]}] +[14:12:53.909] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"the wall keeps you tax slaves in as well as keeping them out ","created_at":1759428729,"id":"992c1a1658ad48b8616a9453d27d7225db74d652818c2be5c2e513517ca03f02","kind":1,"pubkey":"2755b492fbb0ffa5c327819a4699c7001341b9f7826a8367273549f1a58a4831","sig":"bb66c3174e6c22e1cdf625f43b09276bb8884f64bea003ab1b4ad29edb4b491bf27ce78db948b1942c8ad85de116598d7fb78ff27e0ad4630a12d2c8f15d159e","tags":[["e","a56372e4d568e3c85bb9507b1e09db0684e8b68b5cbab3001909d9382ae390ff","","root"],["p","d163c3686187605ab3a9fc87da299356364b77157cb66b1bc1a72d1ec6788eda"]]}] +[14:12:53.969] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:12:54.030] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:12:54.090] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:54.151] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:54.211] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:54.272] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:12:54.332] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:12:54.393] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:54.453] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:54.514] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:54.575] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:12:54.816] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"f8c6d9e8dcfcc8ad +[14:12:55.299] RECV nos.lol:443: 5"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae +[14:12:56.090] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:12:56.090] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:12:56.090] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:12:56.241] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4\n#Anisyia #Model #Pornstar\n","created_at":1759428774,"id":"10db2c5c35e14bfb234bc3915e3de2e148c0e6ccf43593866b3337dd4736df2f","kind":1,"pubkey":"c231760b10cefbfc3d7bae5e2d5b40e2ee1714ff90cb78fcff40ba82122dd2be","sig":"2591bf35ce7c4127dd2921b212e6ccf2eb2b5c379bc0084ffa3615726861361eec37fc72c16ab7904fd33f636c4e8b93c98fcb6ff94510855b6c3de1bf5294f2","tags":[["alt","A short note: 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck...."],["t","Anisyia"],["t","anisyia"],["t","Model"],["t","model"],["t","Pornstar"],["t","pornstar"],["r","https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4"],["imeta","url https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4","x d8e159578b00bfc56050bca32a9fc16a7f8d5c10abaaf0fabae65fe50c3f0c28","size 30606","m video/mp4","dim 650x650","blurhash UQP5NZ%W~CbDrgR%xaxa?HNFNG$+E1xas:NG","ox e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214","alt ","content-warning "]]}] +[14:12:56.252] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Rust Backend Developer for BRAIINS MANAGER ](http://btcjobs.bitvocation.com/dmGLf)\n\nCompany: Braiins\nDepartment: Engineering\n\nDev: Yes\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Unknown\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428761,"id":"6362a9ade49c6f58408729164c6eebdd72e000397e3815d6dc3a4509b84a40f7","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"2a54619fbb6123d1ef04e74b943cef5c71575c047742067b95bff9b35f17daa0a4bc1c576334b32208acfcb47908121ab89bf04a9a88ce6ce8edc4387c9e9b52","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:56.312] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqsvsq709m00dddy60mfrla68fc5p7skk3u9uznw7xfygz3dlr8j5ustkhx5f","created_at":1759428761,"id":"d50c904c329620eea88bd21fe9c81652683fe8c094dc3f8ccd65d00da2c31ae5","kind":1,"pubkey":"fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e","sig":"808b332e0cad7cf9dc6bdee1acf9c641576f93761c2af64b51acd457daf1baeb2c187b546513b63ea93f3e60e3d93f5685be4af6ac49a21e30f029ad04b47e4b","tags":[["e","c803cf2edef6b5a4d3f691ffba3a7140fa16b4785e0a6ef192440a2df8cf2a72","","mention"],["e","639fd49562a8cf313d297d411c2d38cc190ca295aeec37b6ba27d6b62e1cc655","wss://nostr.oxtr.dev","root"],["e","829acc8a6dcd2962fdce1f3bffdd21c954f8836e1129143e874ad0fb96dffda2","wss://nostr.oxtr.dev","reply"],["p","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"],["p","d8a6ecf0c396eaa8f79a4497fe9b77dc977633451f3ca5c634e208659116647b","","mention"],["p","b671197df527295c7cc4d195c359d0dd95f001d25df607eaccb61a6a4a0c197d"]]}] +[14:12:56.373] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"んずは日本のジェダイ[1,2,4]。 - Wikipedia","created_at":1759428760,"id":"6bd8d777ae0d600b7d4904505a9d7450e901ce7e3657c4fe08c62ab1eb1363f6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba346b72d71f3ed599887ca8e0aca014eb48d56cbb1b32ccbf20459600b256076be3e1f7597500d19ad7992a84b141341d76c8b80507d3b8cc6096f711e64d55","tags":[]}] +[14:12:56.433] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Chef and Cleaner](http://btcjobs.bitvocation.com/u83Bq)\n\nCompany: BitDeer\nDepartment: Trades\n\nDev: No\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Ethiopia\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428750,"id":"a65e53a8c712fa49740d7e14fdaa3db2d904dfc1d72c3864e9f1547dc1899898","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"69600bdeef067b3281b857e9e9131ef330e8da746e9a79225107d280e70865905ab0da8b7509073e43786bf232912f4f19f08bbfa068278583efbdbb8f642e4f","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:56.494] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Shawarma\n\nIngredients:\n1 kg Chicken Thighs\n1 tbs Coriander\n1 tbs Cumin\n1 tbs Cardamom\n1 tsp Cayenne Pepper\n2 tsp Paprika\n2 tbs Lemon Juice\n3 tbs Olive Oil\n1 cup Greek Yogurt\n1 Garlic Clove\n1 tsp Cumin\nSplash Lemon Juice\nSliced Lettuce\nSliced Tomato\n6 Pita Bread\n\nInstructions:\nCombine the marinade ingredients in a large ziplock bag (or bowl).\r\n\nAdd the chicken and use your hands to make sure each piece is coated. If using a ziplock bag, I find it convenient to close the bag then massage the bag to disperse the rub all over each chicken piece.\r\n\nMarinate overnight or up to 24 hours.\r\n\nCombine the Yoghurt Sauce ingredients in a bowl and mix. Cover and put in the fridge until required (it will last for 3 days in the fridge).\r\n\nHeat grill/BBQ (or large heavy based pan on stove) on medium high. You should not need to oil it because the marinade has oil in it and also thigh fillets have fat. But if you are worried then oil your hotplate/grill. (See notes for baking)\r\n\nPlace chicken on the grill and cook the first side for 4 to 5 minutes until nicely charred, then turn and cook the other side for 3 to 4 minutes (the 2nd side takes less time).\r\n\nRemove chicken from the grill and cover loosely with foil. Set aside to rest for 5 minutes.\r\n\nTO SERVE\r\n\nSlice chicken and pile onto platter alongside flatbreads, Salad and the Yoghurt Sauce.\r\n\nTo make a wrap, get a piece of flatbread and smear with Yoghurt Sauce. Top with a bit of lettuce and tomato and Chicken Shawarma. Roll up and enjoy!\n\nImage: https://www.themealdb.com/images/media/meals/kcv6hj1598733479.jpg Audio Instructions: https://cdn.satellite.earth/7b8d367da8ac0c0328ce5ac1f6e23d15b906fb9ce8d644352dcd63d773fa5c7d.mp3","created_at":1759428747,"id":"ae1e72e6eacd761a27f644a85a4f65eaf9146e0ac7b67258dbbb3be0d641df3e","kind":1,"pubkey":"4fdb1e1123ea6cef3a9e8118ce278848d6870b1de1df5ed10154e586544d7068","sig":"8212b9258f3cd130c80a7ad274b8fe6efb4b3944a26a177362805668d1e35aafed2aaf6337f49236272e2cdfe3bbb251eb2db9ca4f35d0a22e02a8d43da496a9","tags":[]}] +[14:12:56.554] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足のお菓子交換","created_at":1759428739,"id":"d2bbfef6f4f542721b93f10b2cb7522508d0ee98608d0e0e2cdb7b0527a5af23","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ee23ef027b8c91ecf13fb6c36957c890878b1388471cca85fd2d9e14b4dcdfae6c599808d14189b8da4604d589a6637bc4d3079e8aba1aa04143de3fca658e36","tags":[]}] +[14:12:56.615] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I do condone piracy. Everyone should do it if capable.","created_at":1759428737,"id":"cd27d54172cf08f622a190cac926839b7fe3ed9b0e050fe940a40e1b95f4a8d5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"c921fc7ab7a1260350c4e0f2abc85cc2d85086e33d7543c16cf2b6043301d260b32cf8285d54d9ea942b560c63c63b2d3b42303f3890b651b9cadd37a51447d2","tags":[["alt","A short note: I do condone piracy. Everyone should do it if capa..."],["e","eefe745b5d5e3812450b3a5e591ba2d3607ae87a25bc2fd49866f6595e876438","wss://relay.mostr.pub/","root","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439","wss://relay.mostr.pub/"]]}] +[14:12:56.675] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amanhã no Don't Trust, Verify temos uma convidada muito especial, Joana Amaral Dias. E também o sorteio da #LotoMaxi #Bitcoin!\nO painel de sempre: nostr:npub1g34z7c83lerj08k6xf3xjygy3dd5dh6tpcdsmd6l875tp94tujqqdw6zjw, nostr:npub160u5kdf4g2nr993qvteuj9rr35x7awny4u0esrvnjplwrvlq6nus90as4t e nostr:npub103wzz5eeegcwzrchje02m4rcxqxqtz2rauefhdshmtzd9xjxxdnqm5kd9u.\n22h🇵🇹/18h🇧🇷\nhttps://www.youtube.com/watch?v=hh5yrgSJXI4","created_at":1759428732,"id":"e82f403e592933f12991d2d8cd4f76f5c646ee479c5450db50f5d86bbcbb9894","kind":1,"pubkey":"ff596f3bb07f7f568df80a8839b72db2088e1f5fe91236ade56a216c8dcc5ff6","sig":"88c8bae6ddfa04ab33ea86afb3a77ffec4309a12e82941edaa83609e5698c0a0ae26b5d5b6ef299e670e2efd9ec57a64bc878b9d353bfa09d3c96dde6f934432","tags":[["t","LotoMaxi"],["t","Bitcoin"],["p","446a2f60f1fe47279eda32626911048b5b46df4b0e1b0db75f3fa8b096abe480","","mention"],["p","d3f94b353542a632962062f3c914638d0deeba64af1f980d93907ee1b3e0d4f9","","mention"],["p","7c5c215339ca30e10f17965eadd478300c058943ef329bb617dac4d29a463366","","mention"],["r","wss://nostr.wine/"],["r","wss://eden.nostr.land/"],["r","wss://nos.lol/"],["r","wss://relay.damus.io/"],["r","wss://relay.primal.net/"]]}] +[14:12:56.736] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me too.\n\nEspecially #trainhopping videos like George's. \n\nhttps://www.youtube.com/@Jumpingoffthecliff \n\n","created_at":1759428731,"id":"dcb7808084e0dfa4f7a3e8a54dbdd08bb1475fc9507cba9adb3bc2599dfd43d8","kind":1,"pubkey":"386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9","sig":"f171f80fb6956e2a998cb4b8af6b5e69b9986201d7bc50ba47328118d8317e8abeb76d20a0c34532248d769bc6553814ac1baec271b2a860644dbd5dfc07cd1d","tags":[["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb","wss://adre.su/","mention"],["p","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","ed6a622d1638ffa4fb43e900dcfc71c178e70cd4080a822cfb0f77dd3d51ceb8","","reply","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","c9b97c7e5561d0a7f0ae575b7d891a477bb1563157b9db53dd961cbf5a0dd4a5","","root","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["t","trainhopping"]]}] +[14:12:56.796] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:12:56.857] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:12:56.917] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:56.978] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:57.038] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:57.099] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:12:57.159] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:12:57.220] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:57.281] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:57.341] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:57.402] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:12:57.644] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"f8c6d9e8dcfcc8ad +[14:12:58.127] RECV nos.lol:443: 5"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae +[14:12:59.113] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:12:59.113] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:12:59.113] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:12:59.265] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1qqsthkthvqjfwg9hd96tc2p9plzn4ls8aexdf92cgpumu6jvpvldy9spz9mhxue69uhkummnw3ezuamfdejj7q3qwm7wcrsx8q6378gwphzwhtmd60t8gpqjd4ny23m8gpc0x96jw0vsxpqqqqqqz8hw4fj","created_at":1759428777,"id":"b695dafcd0c177741f4704581a25d7ad78162d179d0293dbc6fe924bb828e7aa","kind":1,"pubkey":"a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","sig":"63b979da6afc816b57cac0cc89d7e44bbfb047f1365f57f5012eb072a2c196fd7866142d18faa727ae82386b79a236a033d0c087a73b23c8e18c2d5133810842","tags":[["alt","A short note: The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1..."],["p","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/"],["q","bbd97760249720b76974bc28250fc53afe07ee4cd495584079be6a4c0b3ed216","wss://nostr.wine/","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9"],["zap","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/","0.79"],["zap","a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","wss://nos.lol/","0.21"]]}] +[14:12:59.326] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4\n#Anisyia #Model #Pornstar\n","created_at":1759428774,"id":"10db2c5c35e14bfb234bc3915e3de2e148c0e6ccf43593866b3337dd4736df2f","kind":1,"pubkey":"c231760b10cefbfc3d7bae5e2d5b40e2ee1714ff90cb78fcff40ba82122dd2be","sig":"2591bf35ce7c4127dd2921b212e6ccf2eb2b5c379bc0084ffa3615726861361eec37fc72c16ab7904fd33f636c4e8b93c98fcb6ff94510855b6c3de1bf5294f2","tags":[["alt","A short note: 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck...."],["t","Anisyia"],["t","anisyia"],["t","Model"],["t","model"],["t","Pornstar"],["t","pornstar"],["r","https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4"],["imeta","url https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4","x d8e159578b00bfc56050bca32a9fc16a7f8d5c10abaaf0fabae65fe50c3f0c28","size 30606","m video/mp4","dim 650x650","blurhash UQP5NZ%W~CbDrgR%xaxa?HNFNG$+E1xas:NG","ox e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214","alt ","content-warning "]]}] +[14:12:59.387] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Rust Backend Developer for BRAIINS MANAGER ](http://btcjobs.bitvocation.com/dmGLf)\n\nCompany: Braiins\nDepartment: Engineering\n\nDev: Yes\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Unknown\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428761,"id":"6362a9ade49c6f58408729164c6eebdd72e000397e3815d6dc3a4509b84a40f7","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"2a54619fbb6123d1ef04e74b943cef5c71575c047742067b95bff9b35f17daa0a4bc1c576334b32208acfcb47908121ab89bf04a9a88ce6ce8edc4387c9e9b52","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:59.447] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqsvsq709m00dddy60mfrla68fc5p7skk3u9uznw7xfygz3dlr8j5ustkhx5f","created_at":1759428761,"id":"d50c904c329620eea88bd21fe9c81652683fe8c094dc3f8ccd65d00da2c31ae5","kind":1,"pubkey":"fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e","sig":"808b332e0cad7cf9dc6bdee1acf9c641576f93761c2af64b51acd457daf1baeb2c187b546513b63ea93f3e60e3d93f5685be4af6ac49a21e30f029ad04b47e4b","tags":[["e","c803cf2edef6b5a4d3f691ffba3a7140fa16b4785e0a6ef192440a2df8cf2a72","","mention"],["e","639fd49562a8cf313d297d411c2d38cc190ca295aeec37b6ba27d6b62e1cc655","wss://nostr.oxtr.dev","root"],["e","829acc8a6dcd2962fdce1f3bffdd21c954f8836e1129143e874ad0fb96dffda2","wss://nostr.oxtr.dev","reply"],["p","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"],["p","d8a6ecf0c396eaa8f79a4497fe9b77dc977633451f3ca5c634e208659116647b","","mention"],["p","b671197df527295c7cc4d195c359d0dd95f001d25df607eaccb61a6a4a0c197d"]]}] +[14:12:59.508] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"んずは日本のジェダイ[1,2,4]。 - Wikipedia","created_at":1759428760,"id":"6bd8d777ae0d600b7d4904505a9d7450e901ce7e3657c4fe08c62ab1eb1363f6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba346b72d71f3ed599887ca8e0aca014eb48d56cbb1b32ccbf20459600b256076be3e1f7597500d19ad7992a84b141341d76c8b80507d3b8cc6096f711e64d55","tags":[]}] +[14:12:59.568] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Chef and Cleaner](http://btcjobs.bitvocation.com/u83Bq)\n\nCompany: BitDeer\nDepartment: Trades\n\nDev: No\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Ethiopia\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428750,"id":"a65e53a8c712fa49740d7e14fdaa3db2d904dfc1d72c3864e9f1547dc1899898","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"69600bdeef067b3281b857e9e9131ef330e8da746e9a79225107d280e70865905ab0da8b7509073e43786bf232912f4f19f08bbfa068278583efbdbb8f642e4f","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:59.628] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Shawarma\n\nIngredients:\n1 kg Chicken Thighs\n1 tbs Coriander\n1 tbs Cumin\n1 tbs Cardamom\n1 tsp Cayenne Pepper\n2 tsp Paprika\n2 tbs Lemon Juice\n3 tbs Olive Oil\n1 cup Greek Yogurt\n1 Garlic Clove\n1 tsp Cumin\nSplash Lemon Juice\nSliced Lettuce\nSliced Tomato\n6 Pita Bread\n\nInstructions:\nCombine the marinade ingredients in a large ziplock bag (or bowl).\r\n\nAdd the chicken and use your hands to make sure each piece is coated. If using a ziplock bag, I find it convenient to close the bag then massage the bag to disperse the rub all over each chicken piece.\r\n\nMarinate overnight or up to 24 hours.\r\n\nCombine the Yoghurt Sauce ingredients in a bowl and mix. Cover and put in the fridge until required (it will last for 3 days in the fridge).\r\n\nHeat grill/BBQ (or large heavy based pan on stove) on medium high. You should not need to oil it because the marinade has oil in it and also thigh fillets have fat. But if you are worried then oil your hotplate/grill. (See notes for baking)\r\n\nPlace chicken on the grill and cook the first side for 4 to 5 minutes until nicely charred, then turn and cook the other side for 3 to 4 minutes (the 2nd side takes less time).\r\n\nRemove chicken from the grill and cover loosely with foil. Set aside to rest for 5 minutes.\r\n\nTO SERVE\r\n\nSlice chicken and pile onto platter alongside flatbreads, Salad and the Yoghurt Sauce.\r\n\nTo make a wrap, get a piece of flatbread and smear with Yoghurt Sauce. Top with a bit of lettuce and tomato and Chicken Shawarma. Roll up and enjoy!\n\nImage: https://www.themealdb.com/images/media/meals/kcv6hj1598733479.jpg Audio Instructions: https://cdn.satellite.earth/7b8d367da8ac0c0328ce5ac1f6e23d15b906fb9ce8d644352dcd63d773fa5c7d.mp3","created_at":1759428747,"id":"ae1e72e6eacd761a27f644a85a4f65eaf9146e0ac7b67258dbbb3be0d641df3e","kind":1,"pubkey":"4fdb1e1123ea6cef3a9e8118ce278848d6870b1de1df5ed10154e586544d7068","sig":"8212b9258f3cd130c80a7ad274b8fe6efb4b3944a26a177362805668d1e35aafed2aaf6337f49236272e2cdfe3bbb251eb2db9ca4f35d0a22e02a8d43da496a9","tags":[]}] +[14:12:59.689] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足のお菓子交換","created_at":1759428739,"id":"d2bbfef6f4f542721b93f10b2cb7522508d0ee98608d0e0e2cdb7b0527a5af23","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ee23ef027b8c91ecf13fb6c36957c890878b1388471cca85fd2d9e14b4dcdfae6c599808d14189b8da4604d589a6637bc4d3079e8aba1aa04143de3fca658e36","tags":[]}] +[14:12:59.750] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I do condone piracy. Everyone should do it if capable.","created_at":1759428737,"id":"cd27d54172cf08f622a190cac926839b7fe3ed9b0e050fe940a40e1b95f4a8d5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"c921fc7ab7a1260350c4e0f2abc85cc2d85086e33d7543c16cf2b6043301d260b32cf8285d54d9ea942b560c63c63b2d3b42303f3890b651b9cadd37a51447d2","tags":[["alt","A short note: I do condone piracy. Everyone should do it if capa..."],["e","eefe745b5d5e3812450b3a5e591ba2d3607ae87a25bc2fd49866f6595e876438","wss://relay.mostr.pub/","root","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439","wss://relay.mostr.pub/"]]}] +[14:12:59.810] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amanhã no Don't Trust, Verify temos uma convidada muito especial, Joana Amaral Dias. E também o sorteio da #LotoMaxi #Bitcoin!\nO painel de sempre: nostr:npub1g34z7c83lerj08k6xf3xjygy3dd5dh6tpcdsmd6l875tp94tujqqdw6zjw, nostr:npub160u5kdf4g2nr993qvteuj9rr35x7awny4u0esrvnjplwrvlq6nus90as4t e nostr:npub103wzz5eeegcwzrchje02m4rcxqxqtz2rauefhdshmtzd9xjxxdnqm5kd9u.\n22h🇵🇹/18h🇧🇷\nhttps://www.youtube.com/watch?v=hh5yrgSJXI4","created_at":1759428732,"id":"e82f403e592933f12991d2d8cd4f76f5c646ee479c5450db50f5d86bbcbb9894","kind":1,"pubkey":"ff596f3bb07f7f568df80a8839b72db2088e1f5fe91236ade56a216c8dcc5ff6","sig":"88c8bae6ddfa04ab33ea86afb3a77ffec4309a12e82941edaa83609e5698c0a0ae26b5d5b6ef299e670e2efd9ec57a64bc878b9d353bfa09d3c96dde6f934432","tags":[["t","LotoMaxi"],["t","Bitcoin"],["p","446a2f60f1fe47279eda32626911048b5b46df4b0e1b0db75f3fa8b096abe480","","mention"],["p","d3f94b353542a632962062f3c914638d0deeba64af1f980d93907ee1b3e0d4f9","","mention"],["p","7c5c215339ca30e10f17965eadd478300c058943ef329bb617dac4d29a463366","","mention"],["r","wss://nostr.wine/"],["r","wss://eden.nostr.land/"],["r","wss://nos.lol/"],["r","wss://relay.damus.io/"],["r","wss://relay.primal.net/"]]}] +[14:12:59.871] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:12:59.931] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:12:59.992] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:00.052] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:00.113] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:00.173] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:00.234] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:00.295] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:00.355] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:00.415] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:00.476] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:00.718] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"107e74c9bf79b39d +[14:13:01.514] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:01.514] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:01.514] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:01.666] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can we get you in a more comfortable position? I am notorious for taking my time with my meals ¯⁠\\⁠_⁠(⁠ツ⁠)⁠_⁠/⁠¯","created_at":1759428780,"id":"d622e065510f05bfd3552a30fe9cd0cfc77312770132a59216a4a8d58a7dac02","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"ab7406591d49ffc828d7f1ca2394b463999c17c87c9ebf929c25573c49bb9a1e1c14319a34e184b199415a313a1c84258040d7640714a9d026c31f776ab88c93","tags":[["alt","A short note: Can we get you in a more comfortable position? I a..."],["e","051bc4df49ef473af0f230f17d48aa3d9506c28c154a32dc622d413ae1cc32e0","wss://nos.lol/","root","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44","wss://relay.damus.io/"]]}] +[14:13:01.676] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1qqsthkthvqjfwg9hd96tc2p9plzn4ls8aexdf92cgpumu6jvpvldy9spz9mhxue69uhkummnw3ezuamfdejj7q3qwm7wcrsx8q6378gwphzwhtmd60t8gpqjd4ny23m8gpc0x96jw0vsxpqqqqqqz8hw4fj","created_at":1759428777,"id":"b695dafcd0c177741f4704581a25d7ad78162d179d0293dbc6fe924bb828e7aa","kind":1,"pubkey":"a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","sig":"63b979da6afc816b57cac0cc89d7e44bbfb047f1365f57f5012eb072a2c196fd7866142d18faa727ae82386b79a236a033d0c087a73b23c8e18c2d5133810842","tags":[["alt","A short note: The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1..."],["p","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/"],["q","bbd97760249720b76974bc28250fc53afe07ee4cd495584079be6a4c0b3ed216","wss://nostr.wine/","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9"],["zap","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/","0.79"],["zap","a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","wss://nos.lol/","0.21"]]}] +[14:13:01.737] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4\n#Anisyia #Model #Pornstar\n","created_at":1759428774,"id":"10db2c5c35e14bfb234bc3915e3de2e148c0e6ccf43593866b3337dd4736df2f","kind":1,"pubkey":"c231760b10cefbfc3d7bae5e2d5b40e2ee1714ff90cb78fcff40ba82122dd2be","sig":"2591bf35ce7c4127dd2921b212e6ccf2eb2b5c379bc0084ffa3615726861361eec37fc72c16ab7904fd33f636c4e8b93c98fcb6ff94510855b6c3de1bf5294f2","tags":[["alt","A short note: 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck...."],["t","Anisyia"],["t","anisyia"],["t","Model"],["t","model"],["t","Pornstar"],["t","pornstar"],["r","https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4"],["imeta","url https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4","x d8e159578b00bfc56050bca32a9fc16a7f8d5c10abaaf0fabae65fe50c3f0c28","size 30606","m video/mp4","dim 650x650","blurhash UQP5NZ%W~CbDrgR%xaxa?HNFNG$+E1xas:NG","ox e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214","alt ","content-warning "]]}] +[14:13:01.798] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Rust Backend Developer for BRAIINS MANAGER ](http://btcjobs.bitvocation.com/dmGLf)\n\nCompany: Braiins\nDepartment: Engineering\n\nDev: Yes\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Unknown\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428761,"id":"6362a9ade49c6f58408729164c6eebdd72e000397e3815d6dc3a4509b84a40f7","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"2a54619fbb6123d1ef04e74b943cef5c71575c047742067b95bff9b35f17daa0a4bc1c576334b32208acfcb47908121ab89bf04a9a88ce6ce8edc4387c9e9b52","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:13:01.858] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqsvsq709m00dddy60mfrla68fc5p7skk3u9uznw7xfygz3dlr8j5ustkhx5f","created_at":1759428761,"id":"d50c904c329620eea88bd21fe9c81652683fe8c094dc3f8ccd65d00da2c31ae5","kind":1,"pubkey":"fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e","sig":"808b332e0cad7cf9dc6bdee1acf9c641576f93761c2af64b51acd457daf1baeb2c187b546513b63ea93f3e60e3d93f5685be4af6ac49a21e30f029ad04b47e4b","tags":[["e","c803cf2edef6b5a4d3f691ffba3a7140fa16b4785e0a6ef192440a2df8cf2a72","","mention"],["e","639fd49562a8cf313d297d411c2d38cc190ca295aeec37b6ba27d6b62e1cc655","wss://nostr.oxtr.dev","root"],["e","829acc8a6dcd2962fdce1f3bffdd21c954f8836e1129143e874ad0fb96dffda2","wss://nostr.oxtr.dev","reply"],["p","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"],["p","d8a6ecf0c396eaa8f79a4497fe9b77dc977633451f3ca5c634e208659116647b","","mention"],["p","b671197df527295c7cc4d195c359d0dd95f001d25df607eaccb61a6a4a0c197d"]]}] +[14:13:01.919] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"んずは日本のジェダイ[1,2,4]。 - Wikipedia","created_at":1759428760,"id":"6bd8d777ae0d600b7d4904505a9d7450e901ce7e3657c4fe08c62ab1eb1363f6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba346b72d71f3ed599887ca8e0aca014eb48d56cbb1b32ccbf20459600b256076be3e1f7597500d19ad7992a84b141341d76c8b80507d3b8cc6096f711e64d55","tags":[]}] +[14:13:01.979] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Chef and Cleaner](http://btcjobs.bitvocation.com/u83Bq)\n\nCompany: BitDeer\nDepartment: Trades\n\nDev: No\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Ethiopia\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428750,"id":"a65e53a8c712fa49740d7e14fdaa3db2d904dfc1d72c3864e9f1547dc1899898","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"69600bdeef067b3281b857e9e9131ef330e8da746e9a79225107d280e70865905ab0da8b7509073e43786bf232912f4f19f08bbfa068278583efbdbb8f642e4f","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:13:02.040] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Shawarma\n\nIngredients:\n1 kg Chicken Thighs\n1 tbs Coriander\n1 tbs Cumin\n1 tbs Cardamom\n1 tsp Cayenne Pepper\n2 tsp Paprika\n2 tbs Lemon Juice\n3 tbs Olive Oil\n1 cup Greek Yogurt\n1 Garlic Clove\n1 tsp Cumin\nSplash Lemon Juice\nSliced Lettuce\nSliced Tomato\n6 Pita Bread\n\nInstructions:\nCombine the marinade ingredients in a large ziplock bag (or bowl).\r\n\nAdd the chicken and use your hands to make sure each piece is coated. If using a ziplock bag, I find it convenient to close the bag then massage the bag to disperse the rub all over each chicken piece.\r\n\nMarinate overnight or up to 24 hours.\r\n\nCombine the Yoghurt Sauce ingredients in a bowl and mix. Cover and put in the fridge until required (it will last for 3 days in the fridge).\r\n\nHeat grill/BBQ (or large heavy based pan on stove) on medium high. You should not need to oil it because the marinade has oil in it and also thigh fillets have fat. But if you are worried then oil your hotplate/grill. (See notes for baking)\r\n\nPlace chicken on the grill and cook the first side for 4 to 5 minutes until nicely charred, then turn and cook the other side for 3 to 4 minutes (the 2nd side takes less time).\r\n\nRemove chicken from the grill and cover loosely with foil. Set aside to rest for 5 minutes.\r\n\nTO SERVE\r\n\nSlice chicken and pile onto platter alongside flatbreads, Salad and the Yoghurt Sauce.\r\n\nTo make a wrap, get a piece of flatbread and smear with Yoghurt Sauce. Top with a bit of lettuce and tomato and Chicken Shawarma. Roll up and enjoy!\n\nImage: https://www.themealdb.com/images/media/meals/kcv6hj1598733479.jpg Audio Instructions: https://cdn.satellite.earth/7b8d367da8ac0c0328ce5ac1f6e23d15b906fb9ce8d644352dcd63d773fa5c7d.mp3","created_at":1759428747,"id":"ae1e72e6eacd761a27f644a85a4f65eaf9146e0ac7b67258dbbb3be0d641df3e","kind":1,"pubkey":"4fdb1e1123ea6cef3a9e8118ce278848d6870b1de1df5ed10154e586544d7068","sig":"8212b9258f3cd130c80a7ad274b8fe6efb4b3944a26a177362805668d1e35aafed2aaf6337f49236272e2cdfe3bbb251eb2db9ca4f35d0a22e02a8d43da496a9","tags":[]}] +[14:13:02.101] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足のお菓子交換","created_at":1759428739,"id":"d2bbfef6f4f542721b93f10b2cb7522508d0ee98608d0e0e2cdb7b0527a5af23","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ee23ef027b8c91ecf13fb6c36957c890878b1388471cca85fd2d9e14b4dcdfae6c599808d14189b8da4604d589a6637bc4d3079e8aba1aa04143de3fca658e36","tags":[]}] +[14:13:02.161] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I do condone piracy. Everyone should do it if capable.","created_at":1759428737,"id":"cd27d54172cf08f622a190cac926839b7fe3ed9b0e050fe940a40e1b95f4a8d5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"c921fc7ab7a1260350c4e0f2abc85cc2d85086e33d7543c16cf2b6043301d260b32cf8285d54d9ea942b560c63c63b2d3b42303f3890b651b9cadd37a51447d2","tags":[["alt","A short note: I do condone piracy. Everyone should do it if capa..."],["e","eefe745b5d5e3812450b3a5e591ba2d3607ae87a25bc2fd49866f6595e876438","wss://relay.mostr.pub/","root","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439","wss://relay.mostr.pub/"]]}] +[14:13:02.222] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:02.282] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:02.343] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:02.404] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:02.464] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:02.524] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:02.585] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:02.645] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:02.706] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:02.767] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:02.827] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:03.069] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"107e74c9bf79b39d +[14:13:03.861] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:03.861] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:03.862] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:04.014] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can we get you in a more comfortable position? I am notorious for taking my time with my meals ¯⁠\\⁠_⁠(⁠ツ⁠)⁠_⁠/⁠¯","created_at":1759428780,"id":"d622e065510f05bfd3552a30fe9cd0cfc77312770132a59216a4a8d58a7dac02","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"ab7406591d49ffc828d7f1ca2394b463999c17c87c9ebf929c25573c49bb9a1e1c14319a34e184b199415a313a1c84258040d7640714a9d026c31f776ab88c93","tags":[["alt","A short note: Can we get you in a more comfortable position? I a..."],["e","051bc4df49ef473af0f230f17d48aa3d9506c28c154a32dc622d413ae1cc32e0","wss://nos.lol/","root","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44","wss://relay.damus.io/"]]}] +[14:13:04.074] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1qqsthkthvqjfwg9hd96tc2p9plzn4ls8aexdf92cgpumu6jvpvldy9spz9mhxue69uhkummnw3ezuamfdejj7q3qwm7wcrsx8q6378gwphzwhtmd60t8gpqjd4ny23m8gpc0x96jw0vsxpqqqqqqz8hw4fj","created_at":1759428777,"id":"b695dafcd0c177741f4704581a25d7ad78162d179d0293dbc6fe924bb828e7aa","kind":1,"pubkey":"a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","sig":"63b979da6afc816b57cac0cc89d7e44bbfb047f1365f57f5012eb072a2c196fd7866142d18faa727ae82386b79a236a033d0c087a73b23c8e18c2d5133810842","tags":[["alt","A short note: The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1..."],["p","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/"],["q","bbd97760249720b76974bc28250fc53afe07ee4cd495584079be6a4c0b3ed216","wss://nostr.wine/","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9"],["zap","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/","0.79"],["zap","a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","wss://nos.lol/","0.21"]]}] +[14:13:04.135] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4\n#Anisyia #Model #Pornstar\n","created_at":1759428774,"id":"10db2c5c35e14bfb234bc3915e3de2e148c0e6ccf43593866b3337dd4736df2f","kind":1,"pubkey":"c231760b10cefbfc3d7bae5e2d5b40e2ee1714ff90cb78fcff40ba82122dd2be","sig":"2591bf35ce7c4127dd2921b212e6ccf2eb2b5c379bc0084ffa3615726861361eec37fc72c16ab7904fd33f636c4e8b93c98fcb6ff94510855b6c3de1bf5294f2","tags":[["alt","A short note: 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck...."],["t","Anisyia"],["t","anisyia"],["t","Model"],["t","model"],["t","Pornstar"],["t","pornstar"],["r","https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4"],["imeta","url https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4","x d8e159578b00bfc56050bca32a9fc16a7f8d5c10abaaf0fabae65fe50c3f0c28","size 30606","m video/mp4","dim 650x650","blurhash UQP5NZ%W~CbDrgR%xaxa?HNFNG$+E1xas:NG","ox e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214","alt ","content-warning "]]}] +[14:13:04.195] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Rust Backend Developer for BRAIINS MANAGER ](http://btcjobs.bitvocation.com/dmGLf)\n\nCompany: Braiins\nDepartment: Engineering\n\nDev: Yes\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Unknown\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428761,"id":"6362a9ade49c6f58408729164c6eebdd72e000397e3815d6dc3a4509b84a40f7","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"2a54619fbb6123d1ef04e74b943cef5c71575c047742067b95bff9b35f17daa0a4bc1c576334b32208acfcb47908121ab89bf04a9a88ce6ce8edc4387c9e9b52","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:13:04.256] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqsvsq709m00dddy60mfrla68fc5p7skk3u9uznw7xfygz3dlr8j5ustkhx5f","created_at":1759428761,"id":"d50c904c329620eea88bd21fe9c81652683fe8c094dc3f8ccd65d00da2c31ae5","kind":1,"pubkey":"fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e","sig":"808b332e0cad7cf9dc6bdee1acf9c641576f93761c2af64b51acd457daf1baeb2c187b546513b63ea93f3e60e3d93f5685be4af6ac49a21e30f029ad04b47e4b","tags":[["e","c803cf2edef6b5a4d3f691ffba3a7140fa16b4785e0a6ef192440a2df8cf2a72","","mention"],["e","639fd49562a8cf313d297d411c2d38cc190ca295aeec37b6ba27d6b62e1cc655","wss://nostr.oxtr.dev","root"],["e","829acc8a6dcd2962fdce1f3bffdd21c954f8836e1129143e874ad0fb96dffda2","wss://nostr.oxtr.dev","reply"],["p","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"],["p","d8a6ecf0c396eaa8f79a4497fe9b77dc977633451f3ca5c634e208659116647b","","mention"],["p","b671197df527295c7cc4d195c359d0dd95f001d25df607eaccb61a6a4a0c197d"]]}] +[14:13:04.316] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"んずは日本のジェダイ[1,2,4]。 - Wikipedia","created_at":1759428760,"id":"6bd8d777ae0d600b7d4904505a9d7450e901ce7e3657c4fe08c62ab1eb1363f6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba346b72d71f3ed599887ca8e0aca014eb48d56cbb1b32ccbf20459600b256076be3e1f7597500d19ad7992a84b141341d76c8b80507d3b8cc6096f711e64d55","tags":[]}] +[14:13:04.377] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Chef and Cleaner](http://btcjobs.bitvocation.com/u83Bq)\n\nCompany: BitDeer\nDepartment: Trades\n\nDev: No\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Ethiopia\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428750,"id":"a65e53a8c712fa49740d7e14fdaa3db2d904dfc1d72c3864e9f1547dc1899898","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"69600bdeef067b3281b857e9e9131ef330e8da746e9a79225107d280e70865905ab0da8b7509073e43786bf232912f4f19f08bbfa068278583efbdbb8f642e4f","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:13:04.438] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Shawarma\n\nIngredients:\n1 kg Chicken Thighs\n1 tbs Coriander\n1 tbs Cumin\n1 tbs Cardamom\n1 tsp Cayenne Pepper\n2 tsp Paprika\n2 tbs Lemon Juice\n3 tbs Olive Oil\n1 cup Greek Yogurt\n1 Garlic Clove\n1 tsp Cumin\nSplash Lemon Juice\nSliced Lettuce\nSliced Tomato\n6 Pita Bread\n\nInstructions:\nCombine the marinade ingredients in a large ziplock bag (or bowl).\r\n\nAdd the chicken and use your hands to make sure each piece is coated. If using a ziplock bag, I find it convenient to close the bag then massage the bag to disperse the rub all over each chicken piece.\r\n\nMarinate overnight or up to 24 hours.\r\n\nCombine the Yoghurt Sauce ingredients in a bowl and mix. Cover and put in the fridge until required (it will last for 3 days in the fridge).\r\n\nHeat grill/BBQ (or large heavy based pan on stove) on medium high. You should not need to oil it because the marinade has oil in it and also thigh fillets have fat. But if you are worried then oil your hotplate/grill. (See notes for baking)\r\n\nPlace chicken on the grill and cook the first side for 4 to 5 minutes until nicely charred, then turn and cook the other side for 3 to 4 minutes (the 2nd side takes less time).\r\n\nRemove chicken from the grill and cover loosely with foil. Set aside to rest for 5 minutes.\r\n\nTO SERVE\r\n\nSlice chicken and pile onto platter alongside flatbreads, Salad and the Yoghurt Sauce.\r\n\nTo make a wrap, get a piece of flatbread and smear with Yoghurt Sauce. Top with a bit of lettuce and tomato and Chicken Shawarma. Roll up and enjoy!\n\nImage: https://www.themealdb.com/images/media/meals/kcv6hj1598733479.jpg Audio Instructions: https://cdn.satellite.earth/7b8d367da8ac0c0328ce5ac1f6e23d15b906fb9ce8d644352dcd63d773fa5c7d.mp3","created_at":1759428747,"id":"ae1e72e6eacd761a27f644a85a4f65eaf9146e0ac7b67258dbbb3be0d641df3e","kind":1,"pubkey":"4fdb1e1123ea6cef3a9e8118ce278848d6870b1de1df5ed10154e586544d7068","sig":"8212b9258f3cd130c80a7ad274b8fe6efb4b3944a26a177362805668d1e35aafed2aaf6337f49236272e2cdfe3bbb251eb2db9ca4f35d0a22e02a8d43da496a9","tags":[]}] +[14:13:04.498] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足のお菓子交換","created_at":1759428739,"id":"d2bbfef6f4f542721b93f10b2cb7522508d0ee98608d0e0e2cdb7b0527a5af23","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ee23ef027b8c91ecf13fb6c36957c890878b1388471cca85fd2d9e14b4dcdfae6c599808d14189b8da4604d589a6637bc4d3079e8aba1aa04143de3fca658e36","tags":[]}] +[14:13:04.559] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I do condone piracy. Everyone should do it if capable.","created_at":1759428737,"id":"cd27d54172cf08f622a190cac926839b7fe3ed9b0e050fe940a40e1b95f4a8d5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"c921fc7ab7a1260350c4e0f2abc85cc2d85086e33d7543c16cf2b6043301d260b32cf8285d54d9ea942b560c63c63b2d3b42303f3890b651b9cadd37a51447d2","tags":[["alt","A short note: I do condone piracy. Everyone should do it if capa..."],["e","eefe745b5d5e3812450b3a5e591ba2d3607ae87a25bc2fd49866f6595e876438","wss://relay.mostr.pub/","root","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439","wss://relay.mostr.pub/"]]}] +[14:13:04.619] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:04.680] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:04.741] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:04.801] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:04.862] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:04.922] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:04.983] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:05.043] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:05.104] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:05.164] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:05.225] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:05.466] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"f9df35008d6cbedd +[14:13:05.527] RECV nos.lol:443: f05dbfc4c8200039685f5da6027473862fd8a67b5b1fe314fdbb19b +[14:13:05.889] RECV nos.lol:443: fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p", +[14:13:06.156] RECV nos.lol:443: 97c8397f26c0e6d61e5acffc7a98"],["p","020f2d21ae09bf3 +[14:13:06.640] RECV nos.lol:443: 6"],["p","8967f290cc7749fd3d232fb7110c05db746a31 +[14:13:06.942] RECV nos.lol:443: 08756ab4f0f3007b04d7e699f45eac3ab696077296219d207 +[14:13:07.183] RECV nos.lol:443: c2327691b3"],["p","5e7ae588d7d11eac4c25906e6da807e +[14:13:07.847] RECV nos.lol:443: cb6853cd0ee15deee93"],["p","3bf0c63fcb93463407af97a5e5ee64fa883d107ef9e558472c4eb9aaaefa459d"],[" +[14:13:08.512] RECV nos.lol:443: 810f86dd09e18bfd76aabc24a0081ce2856f330504ed"],["p","f +[14:13:08.572] RECV nos.lol:443: 84bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae5801 +[14:13:09.559] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:09.559] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:09.559] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:09.780] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"とうとうおれさまもWikiに載る時代が来たか","created_at":1759428789,"id":"d28db1b4263113c3279df38485f3e6d1a21cb1bda8c572a25b46a999a3c8ed70","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"eb2fde4c006571bd8807324ce849faa39da180dc1579d37e08530e9b58ea5d7800ae25828bf0a5d261d67ac80fb4e97dfb0b991a1b35c47a0b413a4529636033","tags":[]}] +[14:13:09.841] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"理研一般公開","created_at":1759428788,"id":"936b8a5db68ace053601ed0130f93617170d38919c1f4659a9f61303279d1659","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"d66c3099e83be13a4c655ff51b7621742f93e09523f536519939b3ab43966e99ea11243c01ce9e6b2ced5816e9aa3d82b73ce992a149e2170fc34d3453882d44","tags":[]}] +[14:13:09.901] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"run your banks, people ","created_at":1759428788,"id":"57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","kind":1,"pubkey":"ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","sig":"80e90ab4fa66c200147435bc39eec940d4667533d0b61d6066528935639166dcd9cab28937b906a15f5645d2e26ca53a547809806b0933ee9fbee38b1c65ce06","tags":[["alt","A short note: run your banks, people "]]}] +[14:13:09.962] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can we get you in a more comfortable position? I am notorious for taking my time with my meals ¯⁠\\⁠_⁠(⁠ツ⁠)⁠_⁠/⁠¯","created_at":1759428780,"id":"d622e065510f05bfd3552a30fe9cd0cfc77312770132a59216a4a8d58a7dac02","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"ab7406591d49ffc828d7f1ca2394b463999c17c87c9ebf929c25573c49bb9a1e1c14319a34e184b199415a313a1c84258040d7640714a9d026c31f776ab88c93","tags":[["alt","A short note: Can we get you in a more comfortable position? I a..."],["e","051bc4df49ef473af0f230f17d48aa3d9506c28c154a32dc622d413ae1cc32e0","wss://nos.lol/","root","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44","wss://relay.damus.io/"]]}] +[14:13:10.022] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1qqsthkthvqjfwg9hd96tc2p9plzn4ls8aexdf92cgpumu6jvpvldy9spz9mhxue69uhkummnw3ezuamfdejj7q3qwm7wcrsx8q6378gwphzwhtmd60t8gpqjd4ny23m8gpc0x96jw0vsxpqqqqqqz8hw4fj","created_at":1759428777,"id":"b695dafcd0c177741f4704581a25d7ad78162d179d0293dbc6fe924bb828e7aa","kind":1,"pubkey":"a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","sig":"63b979da6afc816b57cac0cc89d7e44bbfb047f1365f57f5012eb072a2c196fd7866142d18faa727ae82386b79a236a033d0c087a73b23c8e18c2d5133810842","tags":[["alt","A short note: The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1..."],["p","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/"],["q","bbd97760249720b76974bc28250fc53afe07ee4cd495584079be6a4c0b3ed216","wss://nostr.wine/","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9"],["zap","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/","0.79"],["zap","a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","wss://nos.lol/","0.21"]]}] +[14:13:10.083] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4\n#Anisyia #Model #Pornstar\n","created_at":1759428774,"id":"10db2c5c35e14bfb234bc3915e3de2e148c0e6ccf43593866b3337dd4736df2f","kind":1,"pubkey":"c231760b10cefbfc3d7bae5e2d5b40e2ee1714ff90cb78fcff40ba82122dd2be","sig":"2591bf35ce7c4127dd2921b212e6ccf2eb2b5c379bc0084ffa3615726861361eec37fc72c16ab7904fd33f636c4e8b93c98fcb6ff94510855b6c3de1bf5294f2","tags":[["alt","A short note: 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck...."],["t","Anisyia"],["t","anisyia"],["t","Model"],["t","model"],["t","Pornstar"],["t","pornstar"],["r","https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4"],["imeta","url https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4","x d8e159578b00bfc56050bca32a9fc16a7f8d5c10abaaf0fabae65fe50c3f0c28","size 30606","m video/mp4","dim 650x650","blurhash UQP5NZ%W~CbDrgR%xaxa?HNFNG$+E1xas:NG","ox e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214","alt ","content-warning "]]}] +[14:13:10.143] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Rust Backend Developer for BRAIINS MANAGER ](http://btcjobs.bitvocation.com/dmGLf)\n\nCompany: Braiins\nDepartment: Engineering\n\nDev: Yes\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Unknown\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428761,"id":"6362a9ade49c6f58408729164c6eebdd72e000397e3815d6dc3a4509b84a40f7","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"2a54619fbb6123d1ef04e74b943cef5c71575c047742067b95bff9b35f17daa0a4bc1c576334b32208acfcb47908121ab89bf04a9a88ce6ce8edc4387c9e9b52","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:13:10.204] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqsvsq709m00dddy60mfrla68fc5p7skk3u9uznw7xfygz3dlr8j5ustkhx5f","created_at":1759428761,"id":"d50c904c329620eea88bd21fe9c81652683fe8c094dc3f8ccd65d00da2c31ae5","kind":1,"pubkey":"fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e","sig":"808b332e0cad7cf9dc6bdee1acf9c641576f93761c2af64b51acd457daf1baeb2c187b546513b63ea93f3e60e3d93f5685be4af6ac49a21e30f029ad04b47e4b","tags":[["e","c803cf2edef6b5a4d3f691ffba3a7140fa16b4785e0a6ef192440a2df8cf2a72","","mention"],["e","639fd49562a8cf313d297d411c2d38cc190ca295aeec37b6ba27d6b62e1cc655","wss://nostr.oxtr.dev","root"],["e","829acc8a6dcd2962fdce1f3bffdd21c954f8836e1129143e874ad0fb96dffda2","wss://nostr.oxtr.dev","reply"],["p","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"],["p","d8a6ecf0c396eaa8f79a4497fe9b77dc977633451f3ca5c634e208659116647b","","mention"],["p","b671197df527295c7cc4d195c359d0dd95f001d25df607eaccb61a6a4a0c197d"]]}] +[14:13:10.264] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"んずは日本のジェダイ[1,2,4]。 - Wikipedia","created_at":1759428760,"id":"6bd8d777ae0d600b7d4904505a9d7450e901ce7e3657c4fe08c62ab1eb1363f6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba346b72d71f3ed599887ca8e0aca014eb48d56cbb1b32ccbf20459600b256076be3e1f7597500d19ad7992a84b141341d76c8b80507d3b8cc6096f711e64d55","tags":[]}] +[14:13:10.325] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Chef and Cleaner](http://btcjobs.bitvocation.com/u83Bq)\n\nCompany: BitDeer\nDepartment: Trades\n\nDev: No\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Ethiopia\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428750,"id":"a65e53a8c712fa49740d7e14fdaa3db2d904dfc1d72c3864e9f1547dc1899898","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"69600bdeef067b3281b857e9e9131ef330e8da746e9a79225107d280e70865905ab0da8b7509073e43786bf232912f4f19f08bbfa068278583efbdbb8f642e4f","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:13:10.385] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:10.446] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:10.507] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:10.567] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:10.628] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:10.688] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:10.749] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:10.809] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:10.870] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:10.930] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:10.991] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:11.198] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"7dab96110a19136a +[14:13:11.923] RECV nos.lol:443: 1c3e"],["p","e88a691e98d9987c964521dff60025f60700378a487 +[14:13:11.983] RECV nos.lol:443: 76b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","472 +[14:13:14.073] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:14.074] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:14.074] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:14.295] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"とうとうおれさまもWikiに載る時代が来たか","created_at":1759428789,"id":"d28db1b4263113c3279df38485f3e6d1a21cb1bda8c572a25b46a999a3c8ed70","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"eb2fde4c006571bd8807324ce849faa39da180dc1579d37e08530e9b58ea5d7800ae25828bf0a5d261d67ac80fb4e97dfb0b991a1b35c47a0b413a4529636033","tags":[]}] +[14:13:14.356] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"理研一般公開","created_at":1759428788,"id":"936b8a5db68ace053601ed0130f93617170d38919c1f4659a9f61303279d1659","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"d66c3099e83be13a4c655ff51b7621742f93e09523f536519939b3ab43966e99ea11243c01ce9e6b2ced5816e9aa3d82b73ce992a149e2170fc34d3453882d44","tags":[]}] +[14:13:14.416] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"run your banks, people ","created_at":1759428788,"id":"57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","kind":1,"pubkey":"ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","sig":"80e90ab4fa66c200147435bc39eec940d4667533d0b61d6066528935639166dcd9cab28937b906a15f5645d2e26ca53a547809806b0933ee9fbee38b1c65ce06","tags":[["alt","A short note: run your banks, people "]]}] +[14:13:14.477] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The point of follow packs is to recommend follows to other people. There are lists that can support encrypted entries. listr.lol is a bit buggy, but currently the only way I know of to create such lists.\n\nOf course, the only client I know of that supports displaying a feed from those you have on a private list is Amethyst, and it required at least one entry on the list to be public last time I tried it.\n\nThere might be others, but Amethyst is the only one I know about for certain.","created_at":1759428783,"id":"68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","kind":1,"pubkey":"b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","sig":"a6956ba2606bd1ad2c1385306757bbfe05280970fa0b90e982d72ab71d60560135fde1f8de0f41456f7f7572e25f95b477f6c66bfa6f04aedec23f4d8c8a6635","tags":[["alt","A short note: The point of follow packs is to recommend follows ..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://theforest.nostr1.com/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["r","https://listr.lol/"]]}] +[14:13:14.537] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can we get you in a more comfortable position? I am notorious for taking my time with my meals ¯⁠\\⁠_⁠(⁠ツ⁠)⁠_⁠/⁠¯","created_at":1759428780,"id":"d622e065510f05bfd3552a30fe9cd0cfc77312770132a59216a4a8d58a7dac02","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"ab7406591d49ffc828d7f1ca2394b463999c17c87c9ebf929c25573c49bb9a1e1c14319a34e184b199415a313a1c84258040d7640714a9d026c31f776ab88c93","tags":[["alt","A short note: Can we get you in a more comfortable position? I a..."],["e","051bc4df49ef473af0f230f17d48aa3d9506c28c154a32dc622d413ae1cc32e0","wss://nos.lol/","root","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44","wss://relay.damus.io/"]]}] +[14:13:14.598] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1qqsthkthvqjfwg9hd96tc2p9plzn4ls8aexdf92cgpumu6jvpvldy9spz9mhxue69uhkummnw3ezuamfdejj7q3qwm7wcrsx8q6378gwphzwhtmd60t8gpqjd4ny23m8gpc0x96jw0vsxpqqqqqqz8hw4fj","created_at":1759428777,"id":"b695dafcd0c177741f4704581a25d7ad78162d179d0293dbc6fe924bb828e7aa","kind":1,"pubkey":"a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","sig":"63b979da6afc816b57cac0cc89d7e44bbfb047f1365f57f5012eb072a2c196fd7866142d18faa727ae82386b79a236a033d0c087a73b23c8e18c2d5133810842","tags":[["alt","A short note: The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1..."],["p","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/"],["q","bbd97760249720b76974bc28250fc53afe07ee4cd495584079be6a4c0b3ed216","wss://nostr.wine/","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9"],["zap","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/","0.79"],["zap","a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","wss://nos.lol/","0.21"]]}] +[14:13:14.659] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4\n#Anisyia #Model #Pornstar\n","created_at":1759428774,"id":"10db2c5c35e14bfb234bc3915e3de2e148c0e6ccf43593866b3337dd4736df2f","kind":1,"pubkey":"c231760b10cefbfc3d7bae5e2d5b40e2ee1714ff90cb78fcff40ba82122dd2be","sig":"2591bf35ce7c4127dd2921b212e6ccf2eb2b5c379bc0084ffa3615726861361eec37fc72c16ab7904fd33f636c4e8b93c98fcb6ff94510855b6c3de1bf5294f2","tags":[["alt","A short note: 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck...."],["t","Anisyia"],["t","anisyia"],["t","Model"],["t","model"],["t","Pornstar"],["t","pornstar"],["r","https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4"],["imeta","url https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4","x d8e159578b00bfc56050bca32a9fc16a7f8d5c10abaaf0fabae65fe50c3f0c28","size 30606","m video/mp4","dim 650x650","blurhash UQP5NZ%W~CbDrgR%xaxa?HNFNG$+E1xas:NG","ox e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214","alt ","content-warning "]]}] +[14:13:14.719] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Rust Backend Developer for BRAIINS MANAGER ](http://btcjobs.bitvocation.com/dmGLf)\n\nCompany: Braiins\nDepartment: Engineering\n\nDev: Yes\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Unknown\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428761,"id":"6362a9ade49c6f58408729164c6eebdd72e000397e3815d6dc3a4509b84a40f7","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"2a54619fbb6123d1ef04e74b943cef5c71575c047742067b95bff9b35f17daa0a4bc1c576334b32208acfcb47908121ab89bf04a9a88ce6ce8edc4387c9e9b52","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:13:14.780] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqsvsq709m00dddy60mfrla68fc5p7skk3u9uznw7xfygz3dlr8j5ustkhx5f","created_at":1759428761,"id":"d50c904c329620eea88bd21fe9c81652683fe8c094dc3f8ccd65d00da2c31ae5","kind":1,"pubkey":"fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e","sig":"808b332e0cad7cf9dc6bdee1acf9c641576f93761c2af64b51acd457daf1baeb2c187b546513b63ea93f3e60e3d93f5685be4af6ac49a21e30f029ad04b47e4b","tags":[["e","c803cf2edef6b5a4d3f691ffba3a7140fa16b4785e0a6ef192440a2df8cf2a72","","mention"],["e","639fd49562a8cf313d297d411c2d38cc190ca295aeec37b6ba27d6b62e1cc655","wss://nostr.oxtr.dev","root"],["e","829acc8a6dcd2962fdce1f3bffdd21c954f8836e1129143e874ad0fb96dffda2","wss://nostr.oxtr.dev","reply"],["p","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"],["p","d8a6ecf0c396eaa8f79a4497fe9b77dc977633451f3ca5c634e208659116647b","","mention"],["p","b671197df527295c7cc4d195c359d0dd95f001d25df607eaccb61a6a4a0c197d"]]}] +[14:13:14.840] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"んずは日本のジェダイ[1,2,4]。 - Wikipedia","created_at":1759428760,"id":"6bd8d777ae0d600b7d4904505a9d7450e901ce7e3657c4fe08c62ab1eb1363f6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba346b72d71f3ed599887ca8e0aca014eb48d56cbb1b32ccbf20459600b256076be3e1f7597500d19ad7992a84b141341d76c8b80507d3b8cc6096f711e64d55","tags":[]}] +[14:13:14.901] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:14.961] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:15.022] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:15.082] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:15.143] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:15.203] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:15.264] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:15.324] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:15.385] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:15.445] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:15.506] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:15.748] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"5c716695811dbb06 +[14:13:16.317] RECV nos.lol:443: 0fceaf1cae8722084332ed1e32496291d42"],["p","a341f45ff9758f570a21b000c17d4e53a3a497c8397f26c0e6d61e5a +[14:13:16.559] RECV nos.lol:443: e3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d3 +[14:13:17.957] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:17.957] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:17.958] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:18.290] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足の前の日に駄菓子屋いって英雄になるやつ","created_at":1759428795,"id":"4a62ac867bf3e993043739c946f4a9acc741f13b933b433c100e80f8aacb66e6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"e6b5248b4c696df46281f8d520f63e7781d4c85a0adce363bc8204ce1ddef9b52d2cf193a56e850f88db45232a79a917e0fbb17fd4006576c71447bfe186de69","tags":[]}] +[14:13:18.351] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"とうとうおれさまもWikiに載る時代が来たか","created_at":1759428789,"id":"d28db1b4263113c3279df38485f3e6d1a21cb1bda8c572a25b46a999a3c8ed70","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"eb2fde4c006571bd8807324ce849faa39da180dc1579d37e08530e9b58ea5d7800ae25828bf0a5d261d67ac80fb4e97dfb0b991a1b35c47a0b413a4529636033","tags":[]}] +[14:13:18.411] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"理研一般公開","created_at":1759428788,"id":"936b8a5db68ace053601ed0130f93617170d38919c1f4659a9f61303279d1659","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"d66c3099e83be13a4c655ff51b7621742f93e09523f536519939b3ab43966e99ea11243c01ce9e6b2ced5816e9aa3d82b73ce992a149e2170fc34d3453882d44","tags":[]}] +[14:13:18.471] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"run your banks, people ","created_at":1759428788,"id":"57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","kind":1,"pubkey":"ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","sig":"80e90ab4fa66c200147435bc39eec940d4667533d0b61d6066528935639166dcd9cab28937b906a15f5645d2e26ca53a547809806b0933ee9fbee38b1c65ce06","tags":[["alt","A short note: run your banks, people "]]}] +[14:13:18.532] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The point of follow packs is to recommend follows to other people. There are lists that can support encrypted entries. listr.lol is a bit buggy, but currently the only way I know of to create such lists.\n\nOf course, the only client I know of that supports displaying a feed from those you have on a private list is Amethyst, and it required at least one entry on the list to be public last time I tried it.\n\nThere might be others, but Amethyst is the only one I know about for certain.","created_at":1759428783,"id":"68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","kind":1,"pubkey":"b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","sig":"a6956ba2606bd1ad2c1385306757bbfe05280970fa0b90e982d72ab71d60560135fde1f8de0f41456f7f7572e25f95b477f6c66bfa6f04aedec23f4d8c8a6635","tags":[["alt","A short note: The point of follow packs is to recommend follows ..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://theforest.nostr1.com/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["r","https://listr.lol/"]]}] +[14:13:18.592] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can we get you in a more comfortable position? I am notorious for taking my time with my meals ¯⁠\\⁠_⁠(⁠ツ⁠)⁠_⁠/⁠¯","created_at":1759428780,"id":"d622e065510f05bfd3552a30fe9cd0cfc77312770132a59216a4a8d58a7dac02","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"ab7406591d49ffc828d7f1ca2394b463999c17c87c9ebf929c25573c49bb9a1e1c14319a34e184b199415a313a1c84258040d7640714a9d026c31f776ab88c93","tags":[["alt","A short note: Can we get you in a more comfortable position? I a..."],["e","051bc4df49ef473af0f230f17d48aa3d9506c28c154a32dc622d413ae1cc32e0","wss://nos.lol/","root","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44","wss://relay.damus.io/"]]}] +[14:13:18.653] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1qqsthkthvqjfwg9hd96tc2p9plzn4ls8aexdf92cgpumu6jvpvldy9spz9mhxue69uhkummnw3ezuamfdejj7q3qwm7wcrsx8q6378gwphzwhtmd60t8gpqjd4ny23m8gpc0x96jw0vsxpqqqqqqz8hw4fj","created_at":1759428777,"id":"b695dafcd0c177741f4704581a25d7ad78162d179d0293dbc6fe924bb828e7aa","kind":1,"pubkey":"a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","sig":"63b979da6afc816b57cac0cc89d7e44bbfb047f1365f57f5012eb072a2c196fd7866142d18faa727ae82386b79a236a033d0c087a73b23c8e18c2d5133810842","tags":[["alt","A short note: The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1..."],["p","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/"],["q","bbd97760249720b76974bc28250fc53afe07ee4cd495584079be6a4c0b3ed216","wss://nostr.wine/","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9"],["zap","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/","0.79"],["zap","a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","wss://nos.lol/","0.21"]]}] +[14:13:18.713] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4\n#Anisyia #Model #Pornstar\n","created_at":1759428774,"id":"10db2c5c35e14bfb234bc3915e3de2e148c0e6ccf43593866b3337dd4736df2f","kind":1,"pubkey":"c231760b10cefbfc3d7bae5e2d5b40e2ee1714ff90cb78fcff40ba82122dd2be","sig":"2591bf35ce7c4127dd2921b212e6ccf2eb2b5c379bc0084ffa3615726861361eec37fc72c16ab7904fd33f636c4e8b93c98fcb6ff94510855b6c3de1bf5294f2","tags":[["alt","A short note: 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck...."],["t","Anisyia"],["t","anisyia"],["t","Model"],["t","model"],["t","Pornstar"],["t","pornstar"],["r","https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4"],["imeta","url https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4","x d8e159578b00bfc56050bca32a9fc16a7f8d5c10abaaf0fabae65fe50c3f0c28","size 30606","m video/mp4","dim 650x650","blurhash UQP5NZ%W~CbDrgR%xaxa?HNFNG$+E1xas:NG","ox e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214","alt ","content-warning "]]}] +[14:13:18.774] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Rust Backend Developer for BRAIINS MANAGER ](http://btcjobs.bitvocation.com/dmGLf)\n\nCompany: Braiins\nDepartment: Engineering\n\nDev: Yes\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Unknown\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428761,"id":"6362a9ade49c6f58408729164c6eebdd72e000397e3815d6dc3a4509b84a40f7","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"2a54619fbb6123d1ef04e74b943cef5c71575c047742067b95bff9b35f17daa0a4bc1c576334b32208acfcb47908121ab89bf04a9a88ce6ce8edc4387c9e9b52","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:13:18.834] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqsvsq709m00dddy60mfrla68fc5p7skk3u9uznw7xfygz3dlr8j5ustkhx5f","created_at":1759428761,"id":"d50c904c329620eea88bd21fe9c81652683fe8c094dc3f8ccd65d00da2c31ae5","kind":1,"pubkey":"fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e","sig":"808b332e0cad7cf9dc6bdee1acf9c641576f93761c2af64b51acd457daf1baeb2c187b546513b63ea93f3e60e3d93f5685be4af6ac49a21e30f029ad04b47e4b","tags":[["e","c803cf2edef6b5a4d3f691ffba3a7140fa16b4785e0a6ef192440a2df8cf2a72","","mention"],["e","639fd49562a8cf313d297d411c2d38cc190ca295aeec37b6ba27d6b62e1cc655","wss://nostr.oxtr.dev","root"],["e","829acc8a6dcd2962fdce1f3bffdd21c954f8836e1129143e874ad0fb96dffda2","wss://nostr.oxtr.dev","reply"],["p","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"],["p","d8a6ecf0c396eaa8f79a4497fe9b77dc977633451f3ca5c634e208659116647b","","mention"],["p","b671197df527295c7cc4d195c359d0dd95f001d25df607eaccb61a6a4a0c197d"]]}] +[14:13:18.895] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:18.956] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:19.016] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:19.077] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:19.137] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:19.198] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:19.259] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:19.319] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:19.379] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:19.440] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:19.501] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:19.743] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"26476c1dba898438 +[14:13:19.803] RECV nos.lol:443: 3fd9251102ae8f073b94e24aac0ac4b09cc6e841743a5b967ee07070 +[14:13:19.924] RECV nos.lol:443: s":[["p","6e1534f56fc9e937e06237c8ba4b5662bcacc4e1a3cfab9c16d89390bec4fca3"],["p","82341f882b6eabcd2ba7 +[14:13:21.334] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:21.335] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:21.335] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:21.486] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Who is the chief #zapathon officer of #Nostr?? ⚡️ \n\n#asknostr \nhttps://media.tenor.com/5XJZShYpv-EAAAAM/simpsons-zzzap.gif","created_at":1759428799,"id":"b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"ba3bfa6946835c791e8f055b80c4a2ab1862845046579a70693e46e12f210da695e7112980e106d6a8d075a8dd862113de4b6ce5e9b1fe3538ca1376d062f38c","tags":[["t","zapathon"],["t","Nostr"],["t","asknostr"]]}] +[14:13:21.496] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\nKalau banyak anak muda ga paham atau mau tau soal politik, apakah masih bisa disebut \"maju\"?\n\nkalaupun kita bisa sebut \"maju\", mungkin itu hanya merujuk pada beberapa sektor.\n\nsecara ekonomi?\n\njangan lihat saham atau pendapatan negaranya.\n\ncoba tanya sama warga.\n\nJepang itu lagi sakit.","created_at":1759428799,"id":"8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"441f40e0098b820ef2bb5c45acc3a54d5d58f29a5a2c36fd887e25d322f3df3c5f6b97f7667e3e4ac9dbfff6801e56ed9e0fcebb5a299ae1d5bfb6fb146e64ea","tags":[["alt","A short note: Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\n..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:13:21.557] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足の前の日に駄菓子屋いって英雄になるやつ","created_at":1759428795,"id":"4a62ac867bf3e993043739c946f4a9acc741f13b933b433c100e80f8aacb66e6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"e6b5248b4c696df46281f8d520f63e7781d4c85a0adce363bc8204ce1ddef9b52d2cf193a56e850f88db45232a79a917e0fbb17fd4006576c71447bfe186de69","tags":[]}] +[14:13:21.618] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"とうとうおれさまもWikiに載る時代が来たか","created_at":1759428789,"id":"d28db1b4263113c3279df38485f3e6d1a21cb1bda8c572a25b46a999a3c8ed70","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"eb2fde4c006571bd8807324ce849faa39da180dc1579d37e08530e9b58ea5d7800ae25828bf0a5d261d67ac80fb4e97dfb0b991a1b35c47a0b413a4529636033","tags":[]}] +[14:13:21.678] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"理研一般公開","created_at":1759428788,"id":"936b8a5db68ace053601ed0130f93617170d38919c1f4659a9f61303279d1659","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"d66c3099e83be13a4c655ff51b7621742f93e09523f536519939b3ab43966e99ea11243c01ce9e6b2ced5816e9aa3d82b73ce992a149e2170fc34d3453882d44","tags":[]}] +[14:13:21.739] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"run your banks, people ","created_at":1759428788,"id":"57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","kind":1,"pubkey":"ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","sig":"80e90ab4fa66c200147435bc39eec940d4667533d0b61d6066528935639166dcd9cab28937b906a15f5645d2e26ca53a547809806b0933ee9fbee38b1c65ce06","tags":[["alt","A short note: run your banks, people "]]}] +[14:13:21.799] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The point of follow packs is to recommend follows to other people. There are lists that can support encrypted entries. listr.lol is a bit buggy, but currently the only way I know of to create such lists.\n\nOf course, the only client I know of that supports displaying a feed from those you have on a private list is Amethyst, and it required at least one entry on the list to be public last time I tried it.\n\nThere might be others, but Amethyst is the only one I know about for certain.","created_at":1759428783,"id":"68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","kind":1,"pubkey":"b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","sig":"a6956ba2606bd1ad2c1385306757bbfe05280970fa0b90e982d72ab71d60560135fde1f8de0f41456f7f7572e25f95b477f6c66bfa6f04aedec23f4d8c8a6635","tags":[["alt","A short note: The point of follow packs is to recommend follows ..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://theforest.nostr1.com/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["r","https://listr.lol/"]]}] +[14:13:21.860] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can we get you in a more comfortable position? I am notorious for taking my time with my meals ¯⁠\\⁠_⁠(⁠ツ⁠)⁠_⁠/⁠¯","created_at":1759428780,"id":"d622e065510f05bfd3552a30fe9cd0cfc77312770132a59216a4a8d58a7dac02","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"ab7406591d49ffc828d7f1ca2394b463999c17c87c9ebf929c25573c49bb9a1e1c14319a34e184b199415a313a1c84258040d7640714a9d026c31f776ab88c93","tags":[["alt","A short note: Can we get you in a more comfortable position? I a..."],["e","051bc4df49ef473af0f230f17d48aa3d9506c28c154a32dc622d413ae1cc32e0","wss://nos.lol/","root","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44","wss://relay.damus.io/"]]}] +[14:13:21.920] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1qqsthkthvqjfwg9hd96tc2p9plzn4ls8aexdf92cgpumu6jvpvldy9spz9mhxue69uhkummnw3ezuamfdejj7q3qwm7wcrsx8q6378gwphzwhtmd60t8gpqjd4ny23m8gpc0x96jw0vsxpqqqqqqz8hw4fj","created_at":1759428777,"id":"b695dafcd0c177741f4704581a25d7ad78162d179d0293dbc6fe924bb828e7aa","kind":1,"pubkey":"a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","sig":"63b979da6afc816b57cac0cc89d7e44bbfb047f1365f57f5012eb072a2c196fd7866142d18faa727ae82386b79a236a033d0c087a73b23c8e18c2d5133810842","tags":[["alt","A short note: The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1..."],["p","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/"],["q","bbd97760249720b76974bc28250fc53afe07ee4cd495584079be6a4c0b3ed216","wss://nostr.wine/","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9"],["zap","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/","0.79"],["zap","a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","wss://nos.lol/","0.21"]]}] +[14:13:21.981] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4\n#Anisyia #Model #Pornstar\n","created_at":1759428774,"id":"10db2c5c35e14bfb234bc3915e3de2e148c0e6ccf43593866b3337dd4736df2f","kind":1,"pubkey":"c231760b10cefbfc3d7bae5e2d5b40e2ee1714ff90cb78fcff40ba82122dd2be","sig":"2591bf35ce7c4127dd2921b212e6ccf2eb2b5c379bc0084ffa3615726861361eec37fc72c16ab7904fd33f636c4e8b93c98fcb6ff94510855b6c3de1bf5294f2","tags":[["alt","A short note: 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck...."],["t","Anisyia"],["t","anisyia"],["t","Model"],["t","model"],["t","Pornstar"],["t","pornstar"],["r","https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4"],["imeta","url https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4","x d8e159578b00bfc56050bca32a9fc16a7f8d5c10abaaf0fabae65fe50c3f0c28","size 30606","m video/mp4","dim 650x650","blurhash UQP5NZ%W~CbDrgR%xaxa?HNFNG$+E1xas:NG","ox e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214","alt ","content-warning "]]}] +[14:13:22.041] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:22.102] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:22.162] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:22.223] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:22.283] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:22.344] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:22.404] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:22.465] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:22.526] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:22.586] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:22.647] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:22.889] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"26476c1dba898438 +[14:13:22.950] RECV nos.lol:443: 3fd9251102ae8f073b94e24aac0ac4b09cc6e841743a5b967ee07070 +[14:13:23.071] RECV nos.lol:443: s":[["p","6e1534f56fc9e937e06237c8ba4b5662bcacc4e1a3cfab9c16d89390bec4fca3"],["p","82341f882b6eabcd2ba7 +[14:13:24.288] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:24.288] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:24.288] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:24.439] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Who is the chief #zapathon officer of #Nostr?? ⚡️ \n\n#asknostr \nhttps://media.tenor.com/5XJZShYpv-EAAAAM/simpsons-zzzap.gif","created_at":1759428799,"id":"b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"ba3bfa6946835c791e8f055b80c4a2ab1862845046579a70693e46e12f210da695e7112980e106d6a8d075a8dd862113de4b6ce5e9b1fe3538ca1376d062f38c","tags":[["t","zapathon"],["t","Nostr"],["t","asknostr"]]}] +[14:13:24.500] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\nKalau banyak anak muda ga paham atau mau tau soal politik, apakah masih bisa disebut \"maju\"?\n\nkalaupun kita bisa sebut \"maju\", mungkin itu hanya merujuk pada beberapa sektor.\n\nsecara ekonomi?\n\njangan lihat saham atau pendapatan negaranya.\n\ncoba tanya sama warga.\n\nJepang itu lagi sakit.","created_at":1759428799,"id":"8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"441f40e0098b820ef2bb5c45acc3a54d5d58f29a5a2c36fd887e25d322f3df3c5f6b97f7667e3e4ac9dbfff6801e56ed9e0fcebb5a299ae1d5bfb6fb146e64ea","tags":[["alt","A short note: Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\n..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:13:24.560] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足の前の日に駄菓子屋いって英雄になるやつ","created_at":1759428795,"id":"4a62ac867bf3e993043739c946f4a9acc741f13b933b433c100e80f8aacb66e6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"e6b5248b4c696df46281f8d520f63e7781d4c85a0adce363bc8204ce1ddef9b52d2cf193a56e850f88db45232a79a917e0fbb17fd4006576c71447bfe186de69","tags":[]}] +[14:13:24.621] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"とうとうおれさまもWikiに載る時代が来たか","created_at":1759428789,"id":"d28db1b4263113c3279df38485f3e6d1a21cb1bda8c572a25b46a999a3c8ed70","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"eb2fde4c006571bd8807324ce849faa39da180dc1579d37e08530e9b58ea5d7800ae25828bf0a5d261d67ac80fb4e97dfb0b991a1b35c47a0b413a4529636033","tags":[]}] +[14:13:24.682] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"理研一般公開","created_at":1759428788,"id":"936b8a5db68ace053601ed0130f93617170d38919c1f4659a9f61303279d1659","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"d66c3099e83be13a4c655ff51b7621742f93e09523f536519939b3ab43966e99ea11243c01ce9e6b2ced5816e9aa3d82b73ce992a149e2170fc34d3453882d44","tags":[]}] +[14:13:24.742] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"run your banks, people ","created_at":1759428788,"id":"57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","kind":1,"pubkey":"ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","sig":"80e90ab4fa66c200147435bc39eec940d4667533d0b61d6066528935639166dcd9cab28937b906a15f5645d2e26ca53a547809806b0933ee9fbee38b1c65ce06","tags":[["alt","A short note: run your banks, people "]]}] +[14:13:24.802] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The point of follow packs is to recommend follows to other people. There are lists that can support encrypted entries. listr.lol is a bit buggy, but currently the only way I know of to create such lists.\n\nOf course, the only client I know of that supports displaying a feed from those you have on a private list is Amethyst, and it required at least one entry on the list to be public last time I tried it.\n\nThere might be others, but Amethyst is the only one I know about for certain.","created_at":1759428783,"id":"68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","kind":1,"pubkey":"b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","sig":"a6956ba2606bd1ad2c1385306757bbfe05280970fa0b90e982d72ab71d60560135fde1f8de0f41456f7f7572e25f95b477f6c66bfa6f04aedec23f4d8c8a6635","tags":[["alt","A short note: The point of follow packs is to recommend follows ..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://theforest.nostr1.com/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["r","https://listr.lol/"]]}] +[14:13:24.863] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can we get you in a more comfortable position? I am notorious for taking my time with my meals ¯⁠\\⁠_⁠(⁠ツ⁠)⁠_⁠/⁠¯","created_at":1759428780,"id":"d622e065510f05bfd3552a30fe9cd0cfc77312770132a59216a4a8d58a7dac02","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"ab7406591d49ffc828d7f1ca2394b463999c17c87c9ebf929c25573c49bb9a1e1c14319a34e184b199415a313a1c84258040d7640714a9d026c31f776ab88c93","tags":[["alt","A short note: Can we get you in a more comfortable position? I a..."],["e","051bc4df49ef473af0f230f17d48aa3d9506c28c154a32dc622d413ae1cc32e0","wss://nos.lol/","root","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44","wss://relay.damus.io/"]]}] +[14:13:24.923] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1qqsthkthvqjfwg9hd96tc2p9plzn4ls8aexdf92cgpumu6jvpvldy9spz9mhxue69uhkummnw3ezuamfdejj7q3qwm7wcrsx8q6378gwphzwhtmd60t8gpqjd4ny23m8gpc0x96jw0vsxpqqqqqqz8hw4fj","created_at":1759428777,"id":"b695dafcd0c177741f4704581a25d7ad78162d179d0293dbc6fe924bb828e7aa","kind":1,"pubkey":"a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","sig":"63b979da6afc816b57cac0cc89d7e44bbfb047f1365f57f5012eb072a2c196fd7866142d18faa727ae82386b79a236a033d0c087a73b23c8e18c2d5133810842","tags":[["alt","A short note: The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1..."],["p","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/"],["q","bbd97760249720b76974bc28250fc53afe07ee4cd495584079be6a4c0b3ed216","wss://nostr.wine/","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9"],["zap","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/","0.79"],["zap","a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","wss://nos.lol/","0.21"]]}] +[14:13:24.984] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4\n#Anisyia #Model #Pornstar\n","created_at":1759428774,"id":"10db2c5c35e14bfb234bc3915e3de2e148c0e6ccf43593866b3337dd4736df2f","kind":1,"pubkey":"c231760b10cefbfc3d7bae5e2d5b40e2ee1714ff90cb78fcff40ba82122dd2be","sig":"2591bf35ce7c4127dd2921b212e6ccf2eb2b5c379bc0084ffa3615726861361eec37fc72c16ab7904fd33f636c4e8b93c98fcb6ff94510855b6c3de1bf5294f2","tags":[["alt","A short note: 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck...."],["t","Anisyia"],["t","anisyia"],["t","Model"],["t","model"],["t","Pornstar"],["t","pornstar"],["r","https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4"],["imeta","url https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4","x d8e159578b00bfc56050bca32a9fc16a7f8d5c10abaaf0fabae65fe50c3f0c28","size 30606","m video/mp4","dim 650x650","blurhash UQP5NZ%W~CbDrgR%xaxa?HNFNG$+E1xas:NG","ox e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214","alt ","content-warning "]]}] +[14:13:25.044] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:25.105] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:25.165] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:25.226] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:25.286] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:25.347] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:25.408] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:25.468] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:25.528] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:25.589] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:25.650] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:25.891] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"26476c1dba898438 +[14:13:25.952] RECV nos.lol:443: 3fd9251102ae8f073b94e24aac0ac4b09cc6e841743a5b967ee07070 +[14:13:26.072] RECV nos.lol:443: s":[["p","6e1534f56fc9e937e06237c8ba4b5662bcacc4e1a3cfab9c16d89390bec4fca3"],["p","82341f882b6eabcd2ba7 +[14:13:27.256] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:27.256] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:27.256] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:27.562] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"With Cognac! \n\nIt would be an interesting combination.\n\nPrepare the steak with peppercorns?","created_at":1759428809,"id":"2d7ccf0c1bf79478d380955d7fc676efc0848fedd6074000a0c20f5f2c219f80","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"94239c399461a38d6ac76186aaa3897c79e3205da8e1f9cc351fc039ecc8028c6a8bdee5cb1fa8d556c09e3397cf4ab5d16be57667e1c735b404256c1cde5f78","tags":[["alt","A short note: With Cognac! \n\nIt would be an interesting combinat..."],["e","889d443831fc67807ddd0bd0bbc80e59a6c2f1609d94eacc45e1203964424a48","wss://relay.damus.io/","root","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","67175022f894cd451ac9e374176b569df847df78f2cfbd4b2b9029c450cc7354","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","7c6fedf4c6057648e926b517cb9b7f2d2ef6cbcaaec81b4492fe7b0b2157b1ae","wss://relay.damus.io/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:13:27.622] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Who is the chief #zapathon officer of #Nostr?? ⚡️ \n\n#asknostr \nhttps://media.tenor.com/5XJZShYpv-EAAAAM/simpsons-zzzap.gif","created_at":1759428799,"id":"b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"ba3bfa6946835c791e8f055b80c4a2ab1862845046579a70693e46e12f210da695e7112980e106d6a8d075a8dd862113de4b6ce5e9b1fe3538ca1376d062f38c","tags":[["t","zapathon"],["t","Nostr"],["t","asknostr"]]}] +[14:13:27.683] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\nKalau banyak anak muda ga paham atau mau tau soal politik, apakah masih bisa disebut \"maju\"?\n\nkalaupun kita bisa sebut \"maju\", mungkin itu hanya merujuk pada beberapa sektor.\n\nsecara ekonomi?\n\njangan lihat saham atau pendapatan negaranya.\n\ncoba tanya sama warga.\n\nJepang itu lagi sakit.","created_at":1759428799,"id":"8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"441f40e0098b820ef2bb5c45acc3a54d5d58f29a5a2c36fd887e25d322f3df3c5f6b97f7667e3e4ac9dbfff6801e56ed9e0fcebb5a299ae1d5bfb6fb146e64ea","tags":[["alt","A short note: Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\n..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:13:27.743] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足の前の日に駄菓子屋いって英雄になるやつ","created_at":1759428795,"id":"4a62ac867bf3e993043739c946f4a9acc741f13b933b433c100e80f8aacb66e6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"e6b5248b4c696df46281f8d520f63e7781d4c85a0adce363bc8204ce1ddef9b52d2cf193a56e850f88db45232a79a917e0fbb17fd4006576c71447bfe186de69","tags":[]}] +[14:13:27.804] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"とうとうおれさまもWikiに載る時代が来たか","created_at":1759428789,"id":"d28db1b4263113c3279df38485f3e6d1a21cb1bda8c572a25b46a999a3c8ed70","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"eb2fde4c006571bd8807324ce849faa39da180dc1579d37e08530e9b58ea5d7800ae25828bf0a5d261d67ac80fb4e97dfb0b991a1b35c47a0b413a4529636033","tags":[]}] +[14:13:27.864] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"理研一般公開","created_at":1759428788,"id":"936b8a5db68ace053601ed0130f93617170d38919c1f4659a9f61303279d1659","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"d66c3099e83be13a4c655ff51b7621742f93e09523f536519939b3ab43966e99ea11243c01ce9e6b2ced5816e9aa3d82b73ce992a149e2170fc34d3453882d44","tags":[]}] +[14:13:27.925] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"run your banks, people ","created_at":1759428788,"id":"57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","kind":1,"pubkey":"ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","sig":"80e90ab4fa66c200147435bc39eec940d4667533d0b61d6066528935639166dcd9cab28937b906a15f5645d2e26ca53a547809806b0933ee9fbee38b1c65ce06","tags":[["alt","A short note: run your banks, people "]]}] +[14:13:27.985] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The point of follow packs is to recommend follows to other people. There are lists that can support encrypted entries. listr.lol is a bit buggy, but currently the only way I know of to create such lists.\n\nOf course, the only client I know of that supports displaying a feed from those you have on a private list is Amethyst, and it required at least one entry on the list to be public last time I tried it.\n\nThere might be others, but Amethyst is the only one I know about for certain.","created_at":1759428783,"id":"68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","kind":1,"pubkey":"b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","sig":"a6956ba2606bd1ad2c1385306757bbfe05280970fa0b90e982d72ab71d60560135fde1f8de0f41456f7f7572e25f95b477f6c66bfa6f04aedec23f4d8c8a6635","tags":[["alt","A short note: The point of follow packs is to recommend follows ..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://theforest.nostr1.com/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["r","https://listr.lol/"]]}] +[14:13:28.046] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can we get you in a more comfortable position? I am notorious for taking my time with my meals ¯⁠\\⁠_⁠(⁠ツ⁠)⁠_⁠/⁠¯","created_at":1759428780,"id":"d622e065510f05bfd3552a30fe9cd0cfc77312770132a59216a4a8d58a7dac02","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"ab7406591d49ffc828d7f1ca2394b463999c17c87c9ebf929c25573c49bb9a1e1c14319a34e184b199415a313a1c84258040d7640714a9d026c31f776ab88c93","tags":[["alt","A short note: Can we get you in a more comfortable position? I a..."],["e","051bc4df49ef473af0f230f17d48aa3d9506c28c154a32dc622d413ae1cc32e0","wss://nos.lol/","root","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44","wss://relay.damus.io/"]]}] +[14:13:28.106] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1qqsthkthvqjfwg9hd96tc2p9plzn4ls8aexdf92cgpumu6jvpvldy9spz9mhxue69uhkummnw3ezuamfdejj7q3qwm7wcrsx8q6378gwphzwhtmd60t8gpqjd4ny23m8gpc0x96jw0vsxpqqqqqqz8hw4fj","created_at":1759428777,"id":"b695dafcd0c177741f4704581a25d7ad78162d179d0293dbc6fe924bb828e7aa","kind":1,"pubkey":"a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","sig":"63b979da6afc816b57cac0cc89d7e44bbfb047f1365f57f5012eb072a2c196fd7866142d18faa727ae82386b79a236a033d0c087a73b23c8e18c2d5133810842","tags":[["alt","A short note: The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1..."],["p","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/"],["q","bbd97760249720b76974bc28250fc53afe07ee4cd495584079be6a4c0b3ed216","wss://nostr.wine/","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9"],["zap","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/","0.79"],["zap","a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","wss://nos.lol/","0.21"]]}] +[14:13:28.167] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:28.228] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:28.288] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:28.349] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:28.409] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:28.470] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:28.530] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:28.591] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:28.651] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:28.712] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:28.773] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:29.014] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"26476c1dba898438 +[14:13:29.075] RECV nos.lol:443: 3fd9251102ae8f073b94e24aac0ac4b09cc6e841743a5b967ee07070 +[14:13:29.196] RECV nos.lol:443: s":[["p","6e1534f56fc9e937e06237c8ba4b5662bcacc4e1a3cfab9c16d89390bec4fca3"],["p","82341f882b6eabcd2ba7 +[14:13:30.414] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:30.414] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:30.414] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:30.567] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"With Cognac! \n\nIt would be an interesting combination.\n\nPrepare the steak with peppercorns?","created_at":1759428809,"id":"2d7ccf0c1bf79478d380955d7fc676efc0848fedd6074000a0c20f5f2c219f80","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"94239c399461a38d6ac76186aaa3897c79e3205da8e1f9cc351fc039ecc8028c6a8bdee5cb1fa8d556c09e3397cf4ab5d16be57667e1c735b404256c1cde5f78","tags":[["alt","A short note: With Cognac! \n\nIt would be an interesting combinat..."],["e","889d443831fc67807ddd0bd0bbc80e59a6c2f1609d94eacc45e1203964424a48","wss://relay.damus.io/","root","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","67175022f894cd451ac9e374176b569df847df78f2cfbd4b2b9029c450cc7354","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","7c6fedf4c6057648e926b517cb9b7f2d2ef6cbcaaec81b4492fe7b0b2157b1ae","wss://relay.damus.io/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:13:30.627] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Who is the chief #zapathon officer of #Nostr?? ⚡️ \n\n#asknostr \nhttps://media.tenor.com/5XJZShYpv-EAAAAM/simpsons-zzzap.gif","created_at":1759428799,"id":"b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"ba3bfa6946835c791e8f055b80c4a2ab1862845046579a70693e46e12f210da695e7112980e106d6a8d075a8dd862113de4b6ce5e9b1fe3538ca1376d062f38c","tags":[["t","zapathon"],["t","Nostr"],["t","asknostr"]]}] +[14:13:30.687] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\nKalau banyak anak muda ga paham atau mau tau soal politik, apakah masih bisa disebut \"maju\"?\n\nkalaupun kita bisa sebut \"maju\", mungkin itu hanya merujuk pada beberapa sektor.\n\nsecara ekonomi?\n\njangan lihat saham atau pendapatan negaranya.\n\ncoba tanya sama warga.\n\nJepang itu lagi sakit.","created_at":1759428799,"id":"8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"441f40e0098b820ef2bb5c45acc3a54d5d58f29a5a2c36fd887e25d322f3df3c5f6b97f7667e3e4ac9dbfff6801e56ed9e0fcebb5a299ae1d5bfb6fb146e64ea","tags":[["alt","A short note: Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\n..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:13:30.748] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足の前の日に駄菓子屋いって英雄になるやつ","created_at":1759428795,"id":"4a62ac867bf3e993043739c946f4a9acc741f13b933b433c100e80f8aacb66e6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"e6b5248b4c696df46281f8d520f63e7781d4c85a0adce363bc8204ce1ddef9b52d2cf193a56e850f88db45232a79a917e0fbb17fd4006576c71447bfe186de69","tags":[]}] +[14:13:30.808] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"とうとうおれさまもWikiに載る時代が来たか","created_at":1759428789,"id":"d28db1b4263113c3279df38485f3e6d1a21cb1bda8c572a25b46a999a3c8ed70","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"eb2fde4c006571bd8807324ce849faa39da180dc1579d37e08530e9b58ea5d7800ae25828bf0a5d261d67ac80fb4e97dfb0b991a1b35c47a0b413a4529636033","tags":[]}] +[14:13:30.869] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"理研一般公開","created_at":1759428788,"id":"936b8a5db68ace053601ed0130f93617170d38919c1f4659a9f61303279d1659","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"d66c3099e83be13a4c655ff51b7621742f93e09523f536519939b3ab43966e99ea11243c01ce9e6b2ced5816e9aa3d82b73ce992a149e2170fc34d3453882d44","tags":[]}] +[14:13:30.929] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"run your banks, people ","created_at":1759428788,"id":"57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","kind":1,"pubkey":"ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","sig":"80e90ab4fa66c200147435bc39eec940d4667533d0b61d6066528935639166dcd9cab28937b906a15f5645d2e26ca53a547809806b0933ee9fbee38b1c65ce06","tags":[["alt","A short note: run your banks, people "]]}] +[14:13:30.990] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The point of follow packs is to recommend follows to other people. There are lists that can support encrypted entries. listr.lol is a bit buggy, but currently the only way I know of to create such lists.\n\nOf course, the only client I know of that supports displaying a feed from those you have on a private list is Amethyst, and it required at least one entry on the list to be public last time I tried it.\n\nThere might be others, but Amethyst is the only one I know about for certain.","created_at":1759428783,"id":"68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","kind":1,"pubkey":"b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","sig":"a6956ba2606bd1ad2c1385306757bbfe05280970fa0b90e982d72ab71d60560135fde1f8de0f41456f7f7572e25f95b477f6c66bfa6f04aedec23f4d8c8a6635","tags":[["alt","A short note: The point of follow packs is to recommend follows ..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://theforest.nostr1.com/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["r","https://listr.lol/"]]}] +[14:13:31.050] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can we get you in a more comfortable position? I am notorious for taking my time with my meals ¯⁠\\⁠_⁠(⁠ツ⁠)⁠_⁠/⁠¯","created_at":1759428780,"id":"d622e065510f05bfd3552a30fe9cd0cfc77312770132a59216a4a8d58a7dac02","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"ab7406591d49ffc828d7f1ca2394b463999c17c87c9ebf929c25573c49bb9a1e1c14319a34e184b199415a313a1c84258040d7640714a9d026c31f776ab88c93","tags":[["alt","A short note: Can we get you in a more comfortable position? I a..."],["e","051bc4df49ef473af0f230f17d48aa3d9506c28c154a32dc622d413ae1cc32e0","wss://nos.lol/","root","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44","wss://relay.damus.io/"]]}] +[14:13:31.111] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1qqsthkthvqjfwg9hd96tc2p9plzn4ls8aexdf92cgpumu6jvpvldy9spz9mhxue69uhkummnw3ezuamfdejj7q3qwm7wcrsx8q6378gwphzwhtmd60t8gpqjd4ny23m8gpc0x96jw0vsxpqqqqqqz8hw4fj","created_at":1759428777,"id":"b695dafcd0c177741f4704581a25d7ad78162d179d0293dbc6fe924bb828e7aa","kind":1,"pubkey":"a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","sig":"63b979da6afc816b57cac0cc89d7e44bbfb047f1365f57f5012eb072a2c196fd7866142d18faa727ae82386b79a236a033d0c087a73b23c8e18c2d5133810842","tags":[["alt","A short note: The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1..."],["p","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/"],["q","bbd97760249720b76974bc28250fc53afe07ee4cd495584079be6a4c0b3ed216","wss://nostr.wine/","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9"],["zap","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/","0.79"],["zap","a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","wss://nos.lol/","0.21"]]}] +[14:13:31.136] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:31.197] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:31.258] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:31.318] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:31.378] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:31.439] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:31.500] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:31.560] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:31.621] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:31.681] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:31.742] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:32.016] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"26476c1dba898438 +[14:13:32.076] RECV nos.lol:443: 3fd9251102ae8f073b94e24aac0ac4b09cc6e841743a5b967ee07070 +[14:13:32.197] RECV nos.lol:443: s":[["p","6e1534f56fc9e937e06237c8ba4b5662bcacc4e1a3cfab9c16d89390bec4fca3"],["p","82341f882b6eabcd2ba7 +[14:13:33.411] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:33.411] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:33.411] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:33.567] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"With Cognac! \n\nIt would be an interesting combination.\n\nPrepare the steak with peppercorns?","created_at":1759428809,"id":"2d7ccf0c1bf79478d380955d7fc676efc0848fedd6074000a0c20f5f2c219f80","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"94239c399461a38d6ac76186aaa3897c79e3205da8e1f9cc351fc039ecc8028c6a8bdee5cb1fa8d556c09e3397cf4ab5d16be57667e1c735b404256c1cde5f78","tags":[["alt","A short note: With Cognac! \n\nIt would be an interesting combinat..."],["e","889d443831fc67807ddd0bd0bbc80e59a6c2f1609d94eacc45e1203964424a48","wss://relay.damus.io/","root","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","67175022f894cd451ac9e374176b569df847df78f2cfbd4b2b9029c450cc7354","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","7c6fedf4c6057648e926b517cb9b7f2d2ef6cbcaaec81b4492fe7b0b2157b1ae","wss://relay.damus.io/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:13:33.628] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Who is the chief #zapathon officer of #Nostr?? ⚡️ \n\n#asknostr \nhttps://media.tenor.com/5XJZShYpv-EAAAAM/simpsons-zzzap.gif","created_at":1759428799,"id":"b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"ba3bfa6946835c791e8f055b80c4a2ab1862845046579a70693e46e12f210da695e7112980e106d6a8d075a8dd862113de4b6ce5e9b1fe3538ca1376d062f38c","tags":[["t","zapathon"],["t","Nostr"],["t","asknostr"]]}] +[14:13:33.688] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\nKalau banyak anak muda ga paham atau mau tau soal politik, apakah masih bisa disebut \"maju\"?\n\nkalaupun kita bisa sebut \"maju\", mungkin itu hanya merujuk pada beberapa sektor.\n\nsecara ekonomi?\n\njangan lihat saham atau pendapatan negaranya.\n\ncoba tanya sama warga.\n\nJepang itu lagi sakit.","created_at":1759428799,"id":"8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"441f40e0098b820ef2bb5c45acc3a54d5d58f29a5a2c36fd887e25d322f3df3c5f6b97f7667e3e4ac9dbfff6801e56ed9e0fcebb5a299ae1d5bfb6fb146e64ea","tags":[["alt","A short note: Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\n..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:13:33.749] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足の前の日に駄菓子屋いって英雄になるやつ","created_at":1759428795,"id":"4a62ac867bf3e993043739c946f4a9acc741f13b933b433c100e80f8aacb66e6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"e6b5248b4c696df46281f8d520f63e7781d4c85a0adce363bc8204ce1ddef9b52d2cf193a56e850f88db45232a79a917e0fbb17fd4006576c71447bfe186de69","tags":[]}] +[14:13:33.810] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"とうとうおれさまもWikiに載る時代が来たか","created_at":1759428789,"id":"d28db1b4263113c3279df38485f3e6d1a21cb1bda8c572a25b46a999a3c8ed70","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"eb2fde4c006571bd8807324ce849faa39da180dc1579d37e08530e9b58ea5d7800ae25828bf0a5d261d67ac80fb4e97dfb0b991a1b35c47a0b413a4529636033","tags":[]}] +[14:13:33.870] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"理研一般公開","created_at":1759428788,"id":"936b8a5db68ace053601ed0130f93617170d38919c1f4659a9f61303279d1659","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"d66c3099e83be13a4c655ff51b7621742f93e09523f536519939b3ab43966e99ea11243c01ce9e6b2ced5816e9aa3d82b73ce992a149e2170fc34d3453882d44","tags":[]}] +[14:13:33.896] SEND relay.laantungir.net:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:13:33.896] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:13:33.931] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"run your banks, people ","created_at":1759428788,"id":"57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","kind":1,"pubkey":"ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","sig":"80e90ab4fa66c200147435bc39eec940d4667533d0b61d6066528935639166dcd9cab28937b906a15f5645d2e26ca53a547809806b0933ee9fbee38b1c65ce06","tags":[["alt","A short note: run your banks, people "]]}] +[14:13:33.972] RECV relay.laantungir.net:443: ["EOSE","pool_4_1759428813"] +[14:13:33.973] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The point of follow packs is to recommend follows to other people. There are lists that can support encrypted entries. listr.lol is a bit buggy, but currently the only way I know of to create such lists.\n\nOf course, the only client I know of that supports displaying a feed from those you have on a private list is Amethyst, and it required at least one entry on the list to be public last time I tried it.\n\nThere might be others, but Amethyst is the only one I know about for certain.","created_at":1759428783,"id":"68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","kind":1,"pubkey":"b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","sig":"a6956ba2606bd1ad2c1385306757bbfe05280970fa0b90e982d72ab71d60560135fde1f8de0f41456f7f7572e25f95b477f6c66bfa6f04aedec23f4d8c8a6635","tags":[["alt","A short note: The point of follow packs is to recommend follows ..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://theforest.nostr1.com/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["r","https://listr.lol/"]]}] +[14:13:34.033] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can we get you in a more comfortable position? I am notorious for taking my time with my meals ¯⁠\\⁠_⁠(⁠ツ⁠)⁠_⁠/⁠¯","created_at":1759428780,"id":"d622e065510f05bfd3552a30fe9cd0cfc77312770132a59216a4a8d58a7dac02","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"ab7406591d49ffc828d7f1ca2394b463999c17c87c9ebf929c25573c49bb9a1e1c14319a34e184b199415a313a1c84258040d7640714a9d026c31f776ab88c93","tags":[["alt","A short note: Can we get you in a more comfortable position? I a..."],["e","051bc4df49ef473af0f230f17d48aa3d9506c28c154a32dc622d413ae1cc32e0","wss://nos.lol/","root","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44","wss://relay.damus.io/"]]}] +[14:13:34.094] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1qqsthkthvqjfwg9hd96tc2p9plzn4ls8aexdf92cgpumu6jvpvldy9spz9mhxue69uhkummnw3ezuamfdejj7q3qwm7wcrsx8q6378gwphzwhtmd60t8gpqjd4ny23m8gpc0x96jw0vsxpqqqqqqz8hw4fj","created_at":1759428777,"id":"b695dafcd0c177741f4704581a25d7ad78162d179d0293dbc6fe924bb828e7aa","kind":1,"pubkey":"a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","sig":"63b979da6afc816b57cac0cc89d7e44bbfb047f1365f57f5012eb072a2c196fd7866142d18faa727ae82386b79a236a033d0c087a73b23c8e18c2d5133810842","tags":[["alt","A short note: The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1..."],["p","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/"],["q","bbd97760249720b76974bc28250fc53afe07ee4cd495584079be6a4c0b3ed216","wss://nostr.wine/","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9"],["zap","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/","0.79"],["zap","a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","wss://nos.lol/","0.21"]]}] +[14:13:34.154] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:34.215] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:34.275] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:34.336] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:34.396] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:34.457] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:34.518] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:34.578] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:34.639] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:34.700] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:34.760] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:35.002] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"26476c1dba898438 +[14:13:35.063] RECV nos.lol:443: 3fd9251102ae8f073b94e24aac0ac4b09cc6e841743a5b967ee07070 +[14:13:35.184] RECV nos.lol:443: s":[["p","6e1534f56fc9e937e06237c8ba4b5662bcacc4e1a3cfab9c16d89390bec4fca3"],["p","82341f882b6eabcd2ba7 +[14:13:36.441] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:36.441] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:36.441] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:36.441] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:13:36.593] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"With Cognac! \n\nIt would be an interesting combination.\n\nPrepare the steak with peppercorns?","created_at":1759428809,"id":"2d7ccf0c1bf79478d380955d7fc676efc0848fedd6074000a0c20f5f2c219f80","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"94239c399461a38d6ac76186aaa3897c79e3205da8e1f9cc351fc039ecc8028c6a8bdee5cb1fa8d556c09e3397cf4ab5d16be57667e1c735b404256c1cde5f78","tags":[["alt","A short note: With Cognac! \n\nIt would be an interesting combinat..."],["e","889d443831fc67807ddd0bd0bbc80e59a6c2f1609d94eacc45e1203964424a48","wss://relay.damus.io/","root","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","67175022f894cd451ac9e374176b569df847df78f2cfbd4b2b9029c450cc7354","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","7c6fedf4c6057648e926b517cb9b7f2d2ef6cbcaaec81b4492fe7b0b2157b1ae","wss://relay.damus.io/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:13:36.604] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Who is the chief #zapathon officer of #Nostr?? ⚡️ \n\n#asknostr \nhttps://media.tenor.com/5XJZShYpv-EAAAAM/simpsons-zzzap.gif","created_at":1759428799,"id":"b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"ba3bfa6946835c791e8f055b80c4a2ab1862845046579a70693e46e12f210da695e7112980e106d6a8d075a8dd862113de4b6ce5e9b1fe3538ca1376d062f38c","tags":[["t","zapathon"],["t","Nostr"],["t","asknostr"]]}] +[14:13:36.664] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\nKalau banyak anak muda ga paham atau mau tau soal politik, apakah masih bisa disebut \"maju\"?\n\nkalaupun kita bisa sebut \"maju\", mungkin itu hanya merujuk pada beberapa sektor.\n\nsecara ekonomi?\n\njangan lihat saham atau pendapatan negaranya.\n\ncoba tanya sama warga.\n\nJepang itu lagi sakit.","created_at":1759428799,"id":"8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"441f40e0098b820ef2bb5c45acc3a54d5d58f29a5a2c36fd887e25d322f3df3c5f6b97f7667e3e4ac9dbfff6801e56ed9e0fcebb5a299ae1d5bfb6fb146e64ea","tags":[["alt","A short note: Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\n..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:13:36.725] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足の前の日に駄菓子屋いって英雄になるやつ","created_at":1759428795,"id":"4a62ac867bf3e993043739c946f4a9acc741f13b933b433c100e80f8aacb66e6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"e6b5248b4c696df46281f8d520f63e7781d4c85a0adce363bc8204ce1ddef9b52d2cf193a56e850f88db45232a79a917e0fbb17fd4006576c71447bfe186de69","tags":[]}] +[14:13:36.785] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"とうとうおれさまもWikiに載る時代が来たか","created_at":1759428789,"id":"d28db1b4263113c3279df38485f3e6d1a21cb1bda8c572a25b46a999a3c8ed70","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"eb2fde4c006571bd8807324ce849faa39da180dc1579d37e08530e9b58ea5d7800ae25828bf0a5d261d67ac80fb4e97dfb0b991a1b35c47a0b413a4529636033","tags":[]}] +[14:13:36.846] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"理研一般公開","created_at":1759428788,"id":"936b8a5db68ace053601ed0130f93617170d38919c1f4659a9f61303279d1659","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"d66c3099e83be13a4c655ff51b7621742f93e09523f536519939b3ab43966e99ea11243c01ce9e6b2ced5816e9aa3d82b73ce992a149e2170fc34d3453882d44","tags":[]}] +[14:13:36.906] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"run your banks, people ","created_at":1759428788,"id":"57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","kind":1,"pubkey":"ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","sig":"80e90ab4fa66c200147435bc39eec940d4667533d0b61d6066528935639166dcd9cab28937b906a15f5645d2e26ca53a547809806b0933ee9fbee38b1c65ce06","tags":[["alt","A short note: run your banks, people "]]}] +[14:13:36.967] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The point of follow packs is to recommend follows to other people. There are lists that can support encrypted entries. listr.lol is a bit buggy, but currently the only way I know of to create such lists.\n\nOf course, the only client I know of that supports displaying a feed from those you have on a private list is Amethyst, and it required at least one entry on the list to be public last time I tried it.\n\nThere might be others, but Amethyst is the only one I know about for certain.","created_at":1759428783,"id":"68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","kind":1,"pubkey":"b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","sig":"a6956ba2606bd1ad2c1385306757bbfe05280970fa0b90e982d72ab71d60560135fde1f8de0f41456f7f7572e25f95b477f6c66bfa6f04aedec23f4d8c8a6635","tags":[["alt","A short note: The point of follow packs is to recommend follows ..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://theforest.nostr1.com/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["r","https://listr.lol/"]]}] +[14:13:37.028] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can we get you in a more comfortable position? I am notorious for taking my time with my meals ¯⁠\\⁠_⁠(⁠ツ⁠)⁠_⁠/⁠¯","created_at":1759428780,"id":"d622e065510f05bfd3552a30fe9cd0cfc77312770132a59216a4a8d58a7dac02","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"ab7406591d49ffc828d7f1ca2394b463999c17c87c9ebf929c25573c49bb9a1e1c14319a34e184b199415a313a1c84258040d7640714a9d026c31f776ab88c93","tags":[["alt","A short note: Can we get you in a more comfortable position? I a..."],["e","051bc4df49ef473af0f230f17d48aa3d9506c28c154a32dc622d413ae1cc32e0","wss://nos.lol/","root","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44","wss://relay.damus.io/"]]}] +[14:13:37.088] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1qqsthkthvqjfwg9hd96tc2p9plzn4ls8aexdf92cgpumu6jvpvldy9spz9mhxue69uhkummnw3ezuamfdejj7q3qwm7wcrsx8q6378gwphzwhtmd60t8gpqjd4ny23m8gpc0x96jw0vsxpqqqqqqz8hw4fj","created_at":1759428777,"id":"b695dafcd0c177741f4704581a25d7ad78162d179d0293dbc6fe924bb828e7aa","kind":1,"pubkey":"a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","sig":"63b979da6afc816b57cac0cc89d7e44bbfb047f1365f57f5012eb072a2c196fd7866142d18faa727ae82386b79a236a033d0c087a73b23c8e18c2d5133810842","tags":[["alt","A short note: The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1..."],["p","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/"],["q","bbd97760249720b76974bc28250fc53afe07ee4cd495584079be6a4c0b3ed216","wss://nostr.wine/","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9"],["zap","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/","0.79"],["zap","a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","wss://nos.lol/","0.21"]]}] +[14:13:37.149] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:37.210] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:37.270] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:37.331] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:37.391] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:37.452] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:37.513] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:37.573] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:37.634] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:37.694] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:37.755] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:37.815] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:38.057] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"26476c1dba898438 +[14:13:38.117] RECV nos.lol:443: 3fd9251102ae8f073b94e24aac0ac4b09cc6e841743a5b967ee07070 +[14:13:38.238] RECV nos.lol:443: s":[["p","6e1534f56fc9e937e06237c8ba4b5662bcacc4e1a3cfab9c16d89390bec4fca3"],["p","82341f882b6eabcd2ba7 +[14:13:39.456] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:39.456] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:39.456] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:39.456] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:13:39.608] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this trait is less about left/right and more about authoritrian/libertarian. there are plenty of right-authoritarians out there, just as there are left-libertarians. ","created_at":1759428820,"id":"995f5f7d3df962b578276b3494c8669084f37c2e2c7c083c83d701a276080ca6","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"378906037f8336e9936ac97847c84491a6acc6b1ff7a9dffa395edd6cf58fdbcd0b0edbd8dc819fe8905de12010027324c9c6ac7e843b3f12eec7ef0eb994e58","tags":[["alt","A short note: this trait is less about left/right and more about..."],["e","8e75d6502eb579886f8586f098da7128de074777455d9a1523c840d75e4d8d91","wss://nostr.wine/","root","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db"],["p","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db","wss://relay.mostr.pub/"]]}] +[14:13:39.669] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"イカの呪縛から解放されしターゴイル","created_at":1759428819,"id":"bcffcdc1706cc8c50fd8256e1778f2243ff4ccdeb62963058fa142966117f9c4","kind":1,"pubkey":"0bdcf0019e79d159bd822b61eac4dd018f6f7d3c66d54bf99ddbcd519fb34f96","sig":"13e02a0ce601de7f1b1aa8e341b441f65e3b62b2577ad9fd7b517d089577d696ee4a9de8c5b747e2734490ca591b19bd31d04d08eb354d86f4ec058bf119a85f","tags":[]}] +[14:13:39.730] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It works 😂","created_at":1759428817,"id":"2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"49081434ace41b96de457f61c7fe2552a55cb75b9578f2bb86af7d80824af229d563e32036354ae2652ebe0135be4e53bc2d38de732389124c4e114734f9c868","tags":[["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","","reply"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"]]}] +[14:13:39.791] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか、探検したいな","created_at":1759428816,"id":"37ff089172527d50c9e5f2be159c76f17dcb17b0599ca1708a917dcdc0d88873","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ab6f0d94ed539db75659a88dfa2e24bf4a992ac06cf883a34e550b257ebd68b07406703a7740a078ab3224bb2872b4994c16491a5a3ef8212e8b046f23106239","tags":[]}] +[14:13:39.852] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"With Cognac! \n\nIt would be an interesting combination.\n\nPrepare the steak with peppercorns?","created_at":1759428809,"id":"2d7ccf0c1bf79478d380955d7fc676efc0848fedd6074000a0c20f5f2c219f80","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"94239c399461a38d6ac76186aaa3897c79e3205da8e1f9cc351fc039ecc8028c6a8bdee5cb1fa8d556c09e3397cf4ab5d16be57667e1c735b404256c1cde5f78","tags":[["alt","A short note: With Cognac! \n\nIt would be an interesting combinat..."],["e","889d443831fc67807ddd0bd0bbc80e59a6c2f1609d94eacc45e1203964424a48","wss://relay.damus.io/","root","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","67175022f894cd451ac9e374176b569df847df78f2cfbd4b2b9029c450cc7354","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","7c6fedf4c6057648e926b517cb9b7f2d2ef6cbcaaec81b4492fe7b0b2157b1ae","wss://relay.damus.io/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:13:39.912] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Who is the chief #zapathon officer of #Nostr?? ⚡️ \n\n#asknostr \nhttps://media.tenor.com/5XJZShYpv-EAAAAM/simpsons-zzzap.gif","created_at":1759428799,"id":"b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"ba3bfa6946835c791e8f055b80c4a2ab1862845046579a70693e46e12f210da695e7112980e106d6a8d075a8dd862113de4b6ce5e9b1fe3538ca1376d062f38c","tags":[["t","zapathon"],["t","Nostr"],["t","asknostr"]]}] +[14:13:39.973] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\nKalau banyak anak muda ga paham atau mau tau soal politik, apakah masih bisa disebut \"maju\"?\n\nkalaupun kita bisa sebut \"maju\", mungkin itu hanya merujuk pada beberapa sektor.\n\nsecara ekonomi?\n\njangan lihat saham atau pendapatan negaranya.\n\ncoba tanya sama warga.\n\nJepang itu lagi sakit.","created_at":1759428799,"id":"8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"441f40e0098b820ef2bb5c45acc3a54d5d58f29a5a2c36fd887e25d322f3df3c5f6b97f7667e3e4ac9dbfff6801e56ed9e0fcebb5a299ae1d5bfb6fb146e64ea","tags":[["alt","A short note: Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\n..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:13:40.033] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足の前の日に駄菓子屋いって英雄になるやつ","created_at":1759428795,"id":"4a62ac867bf3e993043739c946f4a9acc741f13b933b433c100e80f8aacb66e6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"e6b5248b4c696df46281f8d520f63e7781d4c85a0adce363bc8204ce1ddef9b52d2cf193a56e850f88db45232a79a917e0fbb17fd4006576c71447bfe186de69","tags":[]}] +[14:13:40.094] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"とうとうおれさまもWikiに載る時代が来たか","created_at":1759428789,"id":"d28db1b4263113c3279df38485f3e6d1a21cb1bda8c572a25b46a999a3c8ed70","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"eb2fde4c006571bd8807324ce849faa39da180dc1579d37e08530e9b58ea5d7800ae25828bf0a5d261d67ac80fb4e97dfb0b991a1b35c47a0b413a4529636033","tags":[]}] +[14:13:40.155] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"理研一般公開","created_at":1759428788,"id":"936b8a5db68ace053601ed0130f93617170d38919c1f4659a9f61303279d1659","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"d66c3099e83be13a4c655ff51b7621742f93e09523f536519939b3ab43966e99ea11243c01ce9e6b2ced5816e9aa3d82b73ce992a149e2170fc34d3453882d44","tags":[]}] +[14:13:40.215] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:40.276] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:40.336] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:40.397] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:40.457] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:40.518] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:40.579] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:40.639] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:40.700] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:40.760] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:40.821] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:40.881] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:41.089] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"26476c1dba898438 +[14:13:41.149] RECV nos.lol:443: 3fd9251102ae8f073b94e24aac0ac4b09cc6e841743a5b967ee07070 +[14:13:41.270] RECV nos.lol:443: s":[["p","6e1534f56fc9e937e06237c8ba4b5662bcacc4e1a3cfab9c16d89390bec4fca3"],["p","82341f882b6eabcd2ba7 +[14:13:42.487] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:42.487] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:42.487] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:42.487] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:13:42.639] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this trait is less about left/right and more about authoritrian/libertarian. there are plenty of right-authoritarians out there, just as there are left-libertarians. ","created_at":1759428820,"id":"995f5f7d3df962b578276b3494c8669084f37c2e2c7c083c83d701a276080ca6","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"378906037f8336e9936ac97847c84491a6acc6b1ff7a9dffa395edd6cf58fdbcd0b0edbd8dc819fe8905de12010027324c9c6ac7e843b3f12eec7ef0eb994e58","tags":[["alt","A short note: this trait is less about left/right and more about..."],["e","8e75d6502eb579886f8586f098da7128de074777455d9a1523c840d75e4d8d91","wss://nostr.wine/","root","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db"],["p","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db","wss://relay.mostr.pub/"]]}] +[14:13:42.700] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"イカの呪縛から解放されしターゴイル","created_at":1759428819,"id":"bcffcdc1706cc8c50fd8256e1778f2243ff4ccdeb62963058fa142966117f9c4","kind":1,"pubkey":"0bdcf0019e79d159bd822b61eac4dd018f6f7d3c66d54bf99ddbcd519fb34f96","sig":"13e02a0ce601de7f1b1aa8e341b441f65e3b62b2577ad9fd7b517d089577d696ee4a9de8c5b747e2734490ca591b19bd31d04d08eb354d86f4ec058bf119a85f","tags":[]}] +[14:13:42.760] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It works 😂","created_at":1759428817,"id":"2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"49081434ace41b96de457f61c7fe2552a55cb75b9578f2bb86af7d80824af229d563e32036354ae2652ebe0135be4e53bc2d38de732389124c4e114734f9c868","tags":[["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","","reply"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"]]}] +[14:13:42.821] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか、探検したいな","created_at":1759428816,"id":"37ff089172527d50c9e5f2be159c76f17dcb17b0599ca1708a917dcdc0d88873","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ab6f0d94ed539db75659a88dfa2e24bf4a992ac06cf883a34e550b257ebd68b07406703a7740a078ab3224bb2872b4994c16491a5a3ef8212e8b046f23106239","tags":[]}] +[14:13:42.881] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"With Cognac! \n\nIt would be an interesting combination.\n\nPrepare the steak with peppercorns?","created_at":1759428809,"id":"2d7ccf0c1bf79478d380955d7fc676efc0848fedd6074000a0c20f5f2c219f80","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"94239c399461a38d6ac76186aaa3897c79e3205da8e1f9cc351fc039ecc8028c6a8bdee5cb1fa8d556c09e3397cf4ab5d16be57667e1c735b404256c1cde5f78","tags":[["alt","A short note: With Cognac! \n\nIt would be an interesting combinat..."],["e","889d443831fc67807ddd0bd0bbc80e59a6c2f1609d94eacc45e1203964424a48","wss://relay.damus.io/","root","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","67175022f894cd451ac9e374176b569df847df78f2cfbd4b2b9029c450cc7354","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","7c6fedf4c6057648e926b517cb9b7f2d2ef6cbcaaec81b4492fe7b0b2157b1ae","wss://relay.damus.io/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:13:42.942] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Who is the chief #zapathon officer of #Nostr?? ⚡️ \n\n#asknostr \nhttps://media.tenor.com/5XJZShYpv-EAAAAM/simpsons-zzzap.gif","created_at":1759428799,"id":"b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"ba3bfa6946835c791e8f055b80c4a2ab1862845046579a70693e46e12f210da695e7112980e106d6a8d075a8dd862113de4b6ce5e9b1fe3538ca1376d062f38c","tags":[["t","zapathon"],["t","Nostr"],["t","asknostr"]]}] +[14:13:43.002] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\nKalau banyak anak muda ga paham atau mau tau soal politik, apakah masih bisa disebut \"maju\"?\n\nkalaupun kita bisa sebut \"maju\", mungkin itu hanya merujuk pada beberapa sektor.\n\nsecara ekonomi?\n\njangan lihat saham atau pendapatan negaranya.\n\ncoba tanya sama warga.\n\nJepang itu lagi sakit.","created_at":1759428799,"id":"8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"441f40e0098b820ef2bb5c45acc3a54d5d58f29a5a2c36fd887e25d322f3df3c5f6b97f7667e3e4ac9dbfff6801e56ed9e0fcebb5a299ae1d5bfb6fb146e64ea","tags":[["alt","A short note: Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\n..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:13:43.062] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足の前の日に駄菓子屋いって英雄になるやつ","created_at":1759428795,"id":"4a62ac867bf3e993043739c946f4a9acc741f13b933b433c100e80f8aacb66e6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"e6b5248b4c696df46281f8d520f63e7781d4c85a0adce363bc8204ce1ddef9b52d2cf193a56e850f88db45232a79a917e0fbb17fd4006576c71447bfe186de69","tags":[]}] +[14:13:43.123] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"とうとうおれさまもWikiに載る時代が来たか","created_at":1759428789,"id":"d28db1b4263113c3279df38485f3e6d1a21cb1bda8c572a25b46a999a3c8ed70","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"eb2fde4c006571bd8807324ce849faa39da180dc1579d37e08530e9b58ea5d7800ae25828bf0a5d261d67ac80fb4e97dfb0b991a1b35c47a0b413a4529636033","tags":[]}] +[14:13:43.183] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"理研一般公開","created_at":1759428788,"id":"936b8a5db68ace053601ed0130f93617170d38919c1f4659a9f61303279d1659","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"d66c3099e83be13a4c655ff51b7621742f93e09523f536519939b3ab43966e99ea11243c01ce9e6b2ced5816e9aa3d82b73ce992a149e2170fc34d3453882d44","tags":[]}] +[14:13:43.244] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:43.304] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:43.365] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:43.426] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:43.486] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:43.547] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:43.607] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:43.668] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:43.728] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:43.789] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:43.849] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:43.910] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:44.151] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"26476c1dba898438 +[14:13:44.212] RECV nos.lol:443: 3fd9251102ae8f073b94e24aac0ac4b09cc6e841743a5b967ee07070 +[14:13:44.333] RECV nos.lol:443: s":[["p","6e1534f56fc9e937e06237c8ba4b5662bcacc4e1a3cfab9c16d89390bec4fca3"],["p","82341f882b6eabcd2ba7 +[14:13:45.592] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:45.592] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:45.592] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:45.592] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:13:46.051] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0qk58w8xhl2ja2kmzt7jcpvemhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0dec82c33x5ehsmt90q6ry7p5vd5xge3hx5mksupnwym857rpvaukk6m9dvmhqer8wa6hwepsxu6rjd35v34hj6rp89ensvnj096ns0mzwfhkzerrv9ehg0t5wf6k2qg7waehxw309ahx7um5wgkkgetk9emk2mrvdaexgetj9ehx2ap0qy08wumn8ghj7mn0wd68yttsw43zuam9d3kx7unyv4ezumn9wshsxs66av must be on his tractor again.","created_at":1759428823,"id":"e609e8af314956193f0bede702fda80b09469c6fd8079c6aa513e91c812494b7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6e93a0bbea58485a325ce275ffd07d82000232017148dde23f6b20597db88468a4c1fdcde360afe0e641c5548551aea1165a7d2f41461fd5eef061f0c829df85","tags":[["alt","A short note: nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0..."],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"]]}] +[14:13:46.112] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this trait is less about left/right and more about authoritrian/libertarian. there are plenty of right-authoritarians out there, just as there are left-libertarians. ","created_at":1759428820,"id":"995f5f7d3df962b578276b3494c8669084f37c2e2c7c083c83d701a276080ca6","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"378906037f8336e9936ac97847c84491a6acc6b1ff7a9dffa395edd6cf58fdbcd0b0edbd8dc819fe8905de12010027324c9c6ac7e843b3f12eec7ef0eb994e58","tags":[["alt","A short note: this trait is less about left/right and more about..."],["e","8e75d6502eb579886f8586f098da7128de074777455d9a1523c840d75e4d8d91","wss://nostr.wine/","root","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db"],["p","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db","wss://relay.mostr.pub/"]]}] +[14:13:46.138] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"イカの呪縛から解放されしターゴイル","created_at":1759428819,"id":"bcffcdc1706cc8c50fd8256e1778f2243ff4ccdeb62963058fa142966117f9c4","kind":1,"pubkey":"0bdcf0019e79d159bd822b61eac4dd018f6f7d3c66d54bf99ddbcd519fb34f96","sig":"13e02a0ce601de7f1b1aa8e341b441f65e3b62b2577ad9fd7b517d089577d696ee4a9de8c5b747e2734490ca591b19bd31d04d08eb354d86f4ec058bf119a85f","tags":[]}] +[14:13:46.198] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It works 😂","created_at":1759428817,"id":"2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"49081434ace41b96de457f61c7fe2552a55cb75b9578f2bb86af7d80824af229d563e32036354ae2652ebe0135be4e53bc2d38de732389124c4e114734f9c868","tags":[["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","","reply"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"]]}] +[14:13:46.258] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか、探検したいな","created_at":1759428816,"id":"37ff089172527d50c9e5f2be159c76f17dcb17b0599ca1708a917dcdc0d88873","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ab6f0d94ed539db75659a88dfa2e24bf4a992ac06cf883a34e550b257ebd68b07406703a7740a078ab3224bb2872b4994c16491a5a3ef8212e8b046f23106239","tags":[]}] +[14:13:46.319] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"With Cognac! \n\nIt would be an interesting combination.\n\nPrepare the steak with peppercorns?","created_at":1759428809,"id":"2d7ccf0c1bf79478d380955d7fc676efc0848fedd6074000a0c20f5f2c219f80","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"94239c399461a38d6ac76186aaa3897c79e3205da8e1f9cc351fc039ecc8028c6a8bdee5cb1fa8d556c09e3397cf4ab5d16be57667e1c735b404256c1cde5f78","tags":[["alt","A short note: With Cognac! \n\nIt would be an interesting combinat..."],["e","889d443831fc67807ddd0bd0bbc80e59a6c2f1609d94eacc45e1203964424a48","wss://relay.damus.io/","root","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","67175022f894cd451ac9e374176b569df847df78f2cfbd4b2b9029c450cc7354","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","7c6fedf4c6057648e926b517cb9b7f2d2ef6cbcaaec81b4492fe7b0b2157b1ae","wss://relay.damus.io/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:13:46.379] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Who is the chief #zapathon officer of #Nostr?? ⚡️ \n\n#asknostr \nhttps://media.tenor.com/5XJZShYpv-EAAAAM/simpsons-zzzap.gif","created_at":1759428799,"id":"b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"ba3bfa6946835c791e8f055b80c4a2ab1862845046579a70693e46e12f210da695e7112980e106d6a8d075a8dd862113de4b6ce5e9b1fe3538ca1376d062f38c","tags":[["t","zapathon"],["t","Nostr"],["t","asknostr"]]}] +[14:13:46.440] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\nKalau banyak anak muda ga paham atau mau tau soal politik, apakah masih bisa disebut \"maju\"?\n\nkalaupun kita bisa sebut \"maju\", mungkin itu hanya merujuk pada beberapa sektor.\n\nsecara ekonomi?\n\njangan lihat saham atau pendapatan negaranya.\n\ncoba tanya sama warga.\n\nJepang itu lagi sakit.","created_at":1759428799,"id":"8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"441f40e0098b820ef2bb5c45acc3a54d5d58f29a5a2c36fd887e25d322f3df3c5f6b97f7667e3e4ac9dbfff6801e56ed9e0fcebb5a299ae1d5bfb6fb146e64ea","tags":[["alt","A short note: Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\n..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:13:46.500] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足の前の日に駄菓子屋いって英雄になるやつ","created_at":1759428795,"id":"4a62ac867bf3e993043739c946f4a9acc741f13b933b433c100e80f8aacb66e6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"e6b5248b4c696df46281f8d520f63e7781d4c85a0adce363bc8204ce1ddef9b52d2cf193a56e850f88db45232a79a917e0fbb17fd4006576c71447bfe186de69","tags":[]}] +[14:13:46.561] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"とうとうおれさまもWikiに載る時代が来たか","created_at":1759428789,"id":"d28db1b4263113c3279df38485f3e6d1a21cb1bda8c572a25b46a999a3c8ed70","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"eb2fde4c006571bd8807324ce849faa39da180dc1579d37e08530e9b58ea5d7800ae25828bf0a5d261d67ac80fb4e97dfb0b991a1b35c47a0b413a4529636033","tags":[]}] +[14:13:46.621] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:46.682] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:46.742] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:46.803] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:46.864] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:46.924] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:46.985] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:47.046] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:47.106] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:47.167] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:47.227] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:47.288] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:47.530] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"26476c1dba898438 +[14:13:47.590] RECV nos.lol:443: 3fd9251102ae8f073b94e24aac0ac4b09cc6e841743a5b967ee07070 +[14:13:47.711] RECV nos.lol:443: s":[["p","6e1534f56fc9e937e06237c8ba4b5662bcacc4e1a3cfab9c16d89390bec4fca3"],["p","82341f882b6eabcd2ba7 +[14:13:48.928] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:48.929] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:48.929] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:48.929] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:13:49.081] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#canineVibes \nhttps://images2.imgbox.com/58/fb/a3o7b6Jp_o.jpg \n#dogstr #dog #Nostr #bestfren","created_at":1759428826,"id":"a94b87102168c932d44042940af94f6618410bdf0e0ee9b42d446969981e2f89","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"6e5fdc96cf7133f2e75e05d79b2199502099e11f7fd2b9f7ac8ffce49dadfe25948036cf553419721c8c598528fc4addec7d4a66a8dad9336211652603aa81a2","tags":[]}] +[14:13:49.141] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0qk58w8xhl2ja2kmzt7jcpvemhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0dec82c33x5ehsmt90q6ry7p5vd5xge3hx5mksupnwym857rpvaukk6m9dvmhqer8wa6hwepsxu6rjd35v34hj6rp89ensvnj096ns0mzwfhkzerrv9ehg0t5wf6k2qg7waehxw309ahx7um5wgkkgetk9emk2mrvdaexgetj9ehx2ap0qy08wumn8ghj7mn0wd68yttsw43zuam9d3kx7unyv4ezumn9wshsxs66av must be on his tractor again.","created_at":1759428823,"id":"e609e8af314956193f0bede702fda80b09469c6fd8079c6aa513e91c812494b7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6e93a0bbea58485a325ce275ffd07d82000232017148dde23f6b20597db88468a4c1fdcde360afe0e641c5548551aea1165a7d2f41461fd5eef061f0c829df85","tags":[["alt","A short note: nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0..."],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"]]}] +[14:13:49.202] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this trait is less about left/right and more about authoritrian/libertarian. there are plenty of right-authoritarians out there, just as there are left-libertarians. ","created_at":1759428820,"id":"995f5f7d3df962b578276b3494c8669084f37c2e2c7c083c83d701a276080ca6","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"378906037f8336e9936ac97847c84491a6acc6b1ff7a9dffa395edd6cf58fdbcd0b0edbd8dc819fe8905de12010027324c9c6ac7e843b3f12eec7ef0eb994e58","tags":[["alt","A short note: this trait is less about left/right and more about..."],["e","8e75d6502eb579886f8586f098da7128de074777455d9a1523c840d75e4d8d91","wss://nostr.wine/","root","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db"],["p","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db","wss://relay.mostr.pub/"]]}] +[14:13:49.262] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"イカの呪縛から解放されしターゴイル","created_at":1759428819,"id":"bcffcdc1706cc8c50fd8256e1778f2243ff4ccdeb62963058fa142966117f9c4","kind":1,"pubkey":"0bdcf0019e79d159bd822b61eac4dd018f6f7d3c66d54bf99ddbcd519fb34f96","sig":"13e02a0ce601de7f1b1aa8e341b441f65e3b62b2577ad9fd7b517d089577d696ee4a9de8c5b747e2734490ca591b19bd31d04d08eb354d86f4ec058bf119a85f","tags":[]}] +[14:13:49.323] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It works 😂","created_at":1759428817,"id":"2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"49081434ace41b96de457f61c7fe2552a55cb75b9578f2bb86af7d80824af229d563e32036354ae2652ebe0135be4e53bc2d38de732389124c4e114734f9c868","tags":[["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","","reply"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"]]}] +[14:13:49.383] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか、探検したいな","created_at":1759428816,"id":"37ff089172527d50c9e5f2be159c76f17dcb17b0599ca1708a917dcdc0d88873","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ab6f0d94ed539db75659a88dfa2e24bf4a992ac06cf883a34e550b257ebd68b07406703a7740a078ab3224bb2872b4994c16491a5a3ef8212e8b046f23106239","tags":[]}] +[14:13:49.444] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"With Cognac! \n\nIt would be an interesting combination.\n\nPrepare the steak with peppercorns?","created_at":1759428809,"id":"2d7ccf0c1bf79478d380955d7fc676efc0848fedd6074000a0c20f5f2c219f80","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"94239c399461a38d6ac76186aaa3897c79e3205da8e1f9cc351fc039ecc8028c6a8bdee5cb1fa8d556c09e3397cf4ab5d16be57667e1c735b404256c1cde5f78","tags":[["alt","A short note: With Cognac! \n\nIt would be an interesting combinat..."],["e","889d443831fc67807ddd0bd0bbc80e59a6c2f1609d94eacc45e1203964424a48","wss://relay.damus.io/","root","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","67175022f894cd451ac9e374176b569df847df78f2cfbd4b2b9029c450cc7354","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","7c6fedf4c6057648e926b517cb9b7f2d2ef6cbcaaec81b4492fe7b0b2157b1ae","wss://relay.damus.io/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:13:49.504] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Who is the chief #zapathon officer of #Nostr?? ⚡️ \n\n#asknostr \nhttps://media.tenor.com/5XJZShYpv-EAAAAM/simpsons-zzzap.gif","created_at":1759428799,"id":"b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"ba3bfa6946835c791e8f055b80c4a2ab1862845046579a70693e46e12f210da695e7112980e106d6a8d075a8dd862113de4b6ce5e9b1fe3538ca1376d062f38c","tags":[["t","zapathon"],["t","Nostr"],["t","asknostr"]]}] +[14:13:49.565] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\nKalau banyak anak muda ga paham atau mau tau soal politik, apakah masih bisa disebut \"maju\"?\n\nkalaupun kita bisa sebut \"maju\", mungkin itu hanya merujuk pada beberapa sektor.\n\nsecara ekonomi?\n\njangan lihat saham atau pendapatan negaranya.\n\ncoba tanya sama warga.\n\nJepang itu lagi sakit.","created_at":1759428799,"id":"8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"441f40e0098b820ef2bb5c45acc3a54d5d58f29a5a2c36fd887e25d322f3df3c5f6b97f7667e3e4ac9dbfff6801e56ed9e0fcebb5a299ae1d5bfb6fb146e64ea","tags":[["alt","A short note: Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\n..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:13:49.626] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足の前の日に駄菓子屋いって英雄になるやつ","created_at":1759428795,"id":"4a62ac867bf3e993043739c946f4a9acc741f13b933b433c100e80f8aacb66e6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"e6b5248b4c696df46281f8d520f63e7781d4c85a0adce363bc8204ce1ddef9b52d2cf193a56e850f88db45232a79a917e0fbb17fd4006576c71447bfe186de69","tags":[]}] +[14:13:49.686] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:49.747] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:49.807] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:49.868] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:49.928] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:49.989] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:50.049] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:50.110] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:50.171] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:50.231] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:50.292] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:50.352] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:50.594] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"26476c1dba898438 +[14:13:50.655] RECV nos.lol:443: 3fd9251102ae8f073b94e24aac0ac4b09cc6e841743a5b967ee07070 +[14:13:50.776] RECV nos.lol:443: s":[["p","6e1534f56fc9e937e06237c8ba4b5662bcacc4e1a3cfab9c16d89390bec4fca3"],["p","82341f882b6eabcd2ba7 +[14:13:51.957] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:51.957] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:51.958] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:51.958] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:13:52.110] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"九州の怒涛のボトルキープ焼酎","created_at":1759428829,"id":"81820adb8a09bfb4eb9fdd4e680e9617bdea7ca73b3289e9422fec70aebe745e","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"6452ae335742237c8b32cb4654aef95e57fc59a03ccd685ce72adce40e0c239478c33173deb05fe14303ca517facf54433e011d95ac62147da565be0eb298bf5","tags":[]}] +[14:13:52.170] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#canineVibes \nhttps://images2.imgbox.com/58/fb/a3o7b6Jp_o.jpg \n#dogstr #dog #Nostr #bestfren","created_at":1759428826,"id":"a94b87102168c932d44042940af94f6618410bdf0e0ee9b42d446969981e2f89","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"6e5fdc96cf7133f2e75e05d79b2199502099e11f7fd2b9f7ac8ffce49dadfe25948036cf553419721c8c598528fc4addec7d4a66a8dad9336211652603aa81a2","tags":[]}] +[14:13:52.231] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0qk58w8xhl2ja2kmzt7jcpvemhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0dec82c33x5ehsmt90q6ry7p5vd5xge3hx5mksupnwym857rpvaukk6m9dvmhqer8wa6hwepsxu6rjd35v34hj6rp89ensvnj096ns0mzwfhkzerrv9ehg0t5wf6k2qg7waehxw309ahx7um5wgkkgetk9emk2mrvdaexgetj9ehx2ap0qy08wumn8ghj7mn0wd68yttsw43zuam9d3kx7unyv4ezumn9wshsxs66av must be on his tractor again.","created_at":1759428823,"id":"e609e8af314956193f0bede702fda80b09469c6fd8079c6aa513e91c812494b7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6e93a0bbea58485a325ce275ffd07d82000232017148dde23f6b20597db88468a4c1fdcde360afe0e641c5548551aea1165a7d2f41461fd5eef061f0c829df85","tags":[["alt","A short note: nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0..."],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"]]}] +[14:13:52.291] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this trait is less about left/right and more about authoritrian/libertarian. there are plenty of right-authoritarians out there, just as there are left-libertarians. ","created_at":1759428820,"id":"995f5f7d3df962b578276b3494c8669084f37c2e2c7c083c83d701a276080ca6","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"378906037f8336e9936ac97847c84491a6acc6b1ff7a9dffa395edd6cf58fdbcd0b0edbd8dc819fe8905de12010027324c9c6ac7e843b3f12eec7ef0eb994e58","tags":[["alt","A short note: this trait is less about left/right and more about..."],["e","8e75d6502eb579886f8586f098da7128de074777455d9a1523c840d75e4d8d91","wss://nostr.wine/","root","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db"],["p","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db","wss://relay.mostr.pub/"]]}] +[14:13:52.352] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"イカの呪縛から解放されしターゴイル","created_at":1759428819,"id":"bcffcdc1706cc8c50fd8256e1778f2243ff4ccdeb62963058fa142966117f9c4","kind":1,"pubkey":"0bdcf0019e79d159bd822b61eac4dd018f6f7d3c66d54bf99ddbcd519fb34f96","sig":"13e02a0ce601de7f1b1aa8e341b441f65e3b62b2577ad9fd7b517d089577d696ee4a9de8c5b747e2734490ca591b19bd31d04d08eb354d86f4ec058bf119a85f","tags":[]}] +[14:13:52.412] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It works 😂","created_at":1759428817,"id":"2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"49081434ace41b96de457f61c7fe2552a55cb75b9578f2bb86af7d80824af229d563e32036354ae2652ebe0135be4e53bc2d38de732389124c4e114734f9c868","tags":[["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","","reply"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"]]}] +[14:13:52.473] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか、探検したいな","created_at":1759428816,"id":"37ff089172527d50c9e5f2be159c76f17dcb17b0599ca1708a917dcdc0d88873","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ab6f0d94ed539db75659a88dfa2e24bf4a992ac06cf883a34e550b257ebd68b07406703a7740a078ab3224bb2872b4994c16491a5a3ef8212e8b046f23106239","tags":[]}] +[14:13:52.533] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"With Cognac! \n\nIt would be an interesting combination.\n\nPrepare the steak with peppercorns?","created_at":1759428809,"id":"2d7ccf0c1bf79478d380955d7fc676efc0848fedd6074000a0c20f5f2c219f80","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"94239c399461a38d6ac76186aaa3897c79e3205da8e1f9cc351fc039ecc8028c6a8bdee5cb1fa8d556c09e3397cf4ab5d16be57667e1c735b404256c1cde5f78","tags":[["alt","A short note: With Cognac! \n\nIt would be an interesting combinat..."],["e","889d443831fc67807ddd0bd0bbc80e59a6c2f1609d94eacc45e1203964424a48","wss://relay.damus.io/","root","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","67175022f894cd451ac9e374176b569df847df78f2cfbd4b2b9029c450cc7354","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","7c6fedf4c6057648e926b517cb9b7f2d2ef6cbcaaec81b4492fe7b0b2157b1ae","wss://relay.damus.io/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:13:52.594] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Who is the chief #zapathon officer of #Nostr?? ⚡️ \n\n#asknostr \nhttps://media.tenor.com/5XJZShYpv-EAAAAM/simpsons-zzzap.gif","created_at":1759428799,"id":"b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"ba3bfa6946835c791e8f055b80c4a2ab1862845046579a70693e46e12f210da695e7112980e106d6a8d075a8dd862113de4b6ce5e9b1fe3538ca1376d062f38c","tags":[["t","zapathon"],["t","Nostr"],["t","asknostr"]]}] +[14:13:52.654] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\nKalau banyak anak muda ga paham atau mau tau soal politik, apakah masih bisa disebut \"maju\"?\n\nkalaupun kita bisa sebut \"maju\", mungkin itu hanya merujuk pada beberapa sektor.\n\nsecara ekonomi?\n\njangan lihat saham atau pendapatan negaranya.\n\ncoba tanya sama warga.\n\nJepang itu lagi sakit.","created_at":1759428799,"id":"8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"441f40e0098b820ef2bb5c45acc3a54d5d58f29a5a2c36fd887e25d322f3df3c5f6b97f7667e3e4ac9dbfff6801e56ed9e0fcebb5a299ae1d5bfb6fb146e64ea","tags":[["alt","A short note: Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\n..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:13:52.715] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:52.775] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:52.836] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:52.896] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:52.957] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:53.017] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:53.078] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:53.138] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:53.199] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:53.259] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:53.319] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:53.380] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:53.622] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"26476c1dba898438 +[14:13:53.682] RECV nos.lol:443: 3fd9251102ae8f073b94e24aac0ac4b09cc6e841743a5b967ee07070 +[14:13:53.803] RECV nos.lol:443: s":[["p","6e1534f56fc9e937e06237c8ba4b5662bcacc4e1a3cfab9c16d89390bec4fca3"],["p","82341f882b6eabcd2ba7 +[14:13:55.019] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:55.020] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:55.020] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:55.020] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:13:55.241] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:13:55.302] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"九州の怒涛のボトルキープ焼酎","created_at":1759428829,"id":"81820adb8a09bfb4eb9fdd4e680e9617bdea7ca73b3289e9422fec70aebe745e","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"6452ae335742237c8b32cb4654aef95e57fc59a03ccd685ce72adce40e0c239478c33173deb05fe14303ca517facf54433e011d95ac62147da565be0eb298bf5","tags":[]}] +[14:13:55.362] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#canineVibes \nhttps://images2.imgbox.com/58/fb/a3o7b6Jp_o.jpg \n#dogstr #dog #Nostr #bestfren","created_at":1759428826,"id":"a94b87102168c932d44042940af94f6618410bdf0e0ee9b42d446969981e2f89","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"6e5fdc96cf7133f2e75e05d79b2199502099e11f7fd2b9f7ac8ffce49dadfe25948036cf553419721c8c598528fc4addec7d4a66a8dad9336211652603aa81a2","tags":[]}] +[14:13:55.423] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0qk58w8xhl2ja2kmzt7jcpvemhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0dec82c33x5ehsmt90q6ry7p5vd5xge3hx5mksupnwym857rpvaukk6m9dvmhqer8wa6hwepsxu6rjd35v34hj6rp89ensvnj096ns0mzwfhkzerrv9ehg0t5wf6k2qg7waehxw309ahx7um5wgkkgetk9emk2mrvdaexgetj9ehx2ap0qy08wumn8ghj7mn0wd68yttsw43zuam9d3kx7unyv4ezumn9wshsxs66av must be on his tractor again.","created_at":1759428823,"id":"e609e8af314956193f0bede702fda80b09469c6fd8079c6aa513e91c812494b7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6e93a0bbea58485a325ce275ffd07d82000232017148dde23f6b20597db88468a4c1fdcde360afe0e641c5548551aea1165a7d2f41461fd5eef061f0c829df85","tags":[["alt","A short note: nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0..."],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"]]}] +[14:13:55.483] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this trait is less about left/right and more about authoritrian/libertarian. there are plenty of right-authoritarians out there, just as there are left-libertarians. ","created_at":1759428820,"id":"995f5f7d3df962b578276b3494c8669084f37c2e2c7c083c83d701a276080ca6","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"378906037f8336e9936ac97847c84491a6acc6b1ff7a9dffa395edd6cf58fdbcd0b0edbd8dc819fe8905de12010027324c9c6ac7e843b3f12eec7ef0eb994e58","tags":[["alt","A short note: this trait is less about left/right and more about..."],["e","8e75d6502eb579886f8586f098da7128de074777455d9a1523c840d75e4d8d91","wss://nostr.wine/","root","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db"],["p","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db","wss://relay.mostr.pub/"]]}] +[14:13:55.544] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"イカの呪縛から解放されしターゴイル","created_at":1759428819,"id":"bcffcdc1706cc8c50fd8256e1778f2243ff4ccdeb62963058fa142966117f9c4","kind":1,"pubkey":"0bdcf0019e79d159bd822b61eac4dd018f6f7d3c66d54bf99ddbcd519fb34f96","sig":"13e02a0ce601de7f1b1aa8e341b441f65e3b62b2577ad9fd7b517d089577d696ee4a9de8c5b747e2734490ca591b19bd31d04d08eb354d86f4ec058bf119a85f","tags":[]}] +[14:13:55.604] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It works 😂","created_at":1759428817,"id":"2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"49081434ace41b96de457f61c7fe2552a55cb75b9578f2bb86af7d80824af229d563e32036354ae2652ebe0135be4e53bc2d38de732389124c4e114734f9c868","tags":[["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","","reply"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"]]}] +[14:13:55.665] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか、探検したいな","created_at":1759428816,"id":"37ff089172527d50c9e5f2be159c76f17dcb17b0599ca1708a917dcdc0d88873","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ab6f0d94ed539db75659a88dfa2e24bf4a992ac06cf883a34e550b257ebd68b07406703a7740a078ab3224bb2872b4994c16491a5a3ef8212e8b046f23106239","tags":[]}] +[14:13:55.725] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"With Cognac! \n\nIt would be an interesting combination.\n\nPrepare the steak with peppercorns?","created_at":1759428809,"id":"2d7ccf0c1bf79478d380955d7fc676efc0848fedd6074000a0c20f5f2c219f80","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"94239c399461a38d6ac76186aaa3897c79e3205da8e1f9cc351fc039ecc8028c6a8bdee5cb1fa8d556c09e3397cf4ab5d16be57667e1c735b404256c1cde5f78","tags":[["alt","A short note: With Cognac! \n\nIt would be an interesting combinat..."],["e","889d443831fc67807ddd0bd0bbc80e59a6c2f1609d94eacc45e1203964424a48","wss://relay.damus.io/","root","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","67175022f894cd451ac9e374176b569df847df78f2cfbd4b2b9029c450cc7354","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","7c6fedf4c6057648e926b517cb9b7f2d2ef6cbcaaec81b4492fe7b0b2157b1ae","wss://relay.damus.io/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:13:55.786] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Who is the chief #zapathon officer of #Nostr?? ⚡️ \n\n#asknostr \nhttps://media.tenor.com/5XJZShYpv-EAAAAM/simpsons-zzzap.gif","created_at":1759428799,"id":"b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"ba3bfa6946835c791e8f055b80c4a2ab1862845046579a70693e46e12f210da695e7112980e106d6a8d075a8dd862113de4b6ce5e9b1fe3538ca1376d062f38c","tags":[["t","zapathon"],["t","Nostr"],["t","asknostr"]]}] +[14:13:55.846] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:55.907] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:55.968] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:56.028] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:56.089] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:56.114] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:56.175] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:56.235] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:56.296] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:56.356] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:56.416] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:56.477] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:56.719] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"26476c1dba898438 +[14:13:56.779] RECV nos.lol:443: 3fd9251102ae8f073b94e24aac0ac4b09cc6e841743a5b967ee07070 +[14:13:56.900] RECV nos.lol:443: s":[["p","6e1534f56fc9e937e06237c8ba4b5662bcacc4e1a3cfab9c16d89390bec4fca3"],["p","82341f882b6eabcd2ba7 +[14:13:58.121] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:58.121] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:58.121] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:58.121] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:13:58.273] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:13:58.333] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"九州の怒涛のボトルキープ焼酎","created_at":1759428829,"id":"81820adb8a09bfb4eb9fdd4e680e9617bdea7ca73b3289e9422fec70aebe745e","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"6452ae335742237c8b32cb4654aef95e57fc59a03ccd685ce72adce40e0c239478c33173deb05fe14303ca517facf54433e011d95ac62147da565be0eb298bf5","tags":[]}] +[14:13:58.394] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#canineVibes \nhttps://images2.imgbox.com/58/fb/a3o7b6Jp_o.jpg \n#dogstr #dog #Nostr #bestfren","created_at":1759428826,"id":"a94b87102168c932d44042940af94f6618410bdf0e0ee9b42d446969981e2f89","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"6e5fdc96cf7133f2e75e05d79b2199502099e11f7fd2b9f7ac8ffce49dadfe25948036cf553419721c8c598528fc4addec7d4a66a8dad9336211652603aa81a2","tags":[]}] +[14:13:58.454] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0qk58w8xhl2ja2kmzt7jcpvemhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0dec82c33x5ehsmt90q6ry7p5vd5xge3hx5mksupnwym857rpvaukk6m9dvmhqer8wa6hwepsxu6rjd35v34hj6rp89ensvnj096ns0mzwfhkzerrv9ehg0t5wf6k2qg7waehxw309ahx7um5wgkkgetk9emk2mrvdaexgetj9ehx2ap0qy08wumn8ghj7mn0wd68yttsw43zuam9d3kx7unyv4ezumn9wshsxs66av must be on his tractor again.","created_at":1759428823,"id":"e609e8af314956193f0bede702fda80b09469c6fd8079c6aa513e91c812494b7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6e93a0bbea58485a325ce275ffd07d82000232017148dde23f6b20597db88468a4c1fdcde360afe0e641c5548551aea1165a7d2f41461fd5eef061f0c829df85","tags":[["alt","A short note: nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0..."],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"]]}] +[14:13:58.515] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this trait is less about left/right and more about authoritrian/libertarian. there are plenty of right-authoritarians out there, just as there are left-libertarians. ","created_at":1759428820,"id":"995f5f7d3df962b578276b3494c8669084f37c2e2c7c083c83d701a276080ca6","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"378906037f8336e9936ac97847c84491a6acc6b1ff7a9dffa395edd6cf58fdbcd0b0edbd8dc819fe8905de12010027324c9c6ac7e843b3f12eec7ef0eb994e58","tags":[["alt","A short note: this trait is less about left/right and more about..."],["e","8e75d6502eb579886f8586f098da7128de074777455d9a1523c840d75e4d8d91","wss://nostr.wine/","root","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db"],["p","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db","wss://relay.mostr.pub/"]]}] +[14:13:58.575] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"イカの呪縛から解放されしターゴイル","created_at":1759428819,"id":"bcffcdc1706cc8c50fd8256e1778f2243ff4ccdeb62963058fa142966117f9c4","kind":1,"pubkey":"0bdcf0019e79d159bd822b61eac4dd018f6f7d3c66d54bf99ddbcd519fb34f96","sig":"13e02a0ce601de7f1b1aa8e341b441f65e3b62b2577ad9fd7b517d089577d696ee4a9de8c5b747e2734490ca591b19bd31d04d08eb354d86f4ec058bf119a85f","tags":[]}] +[14:13:58.636] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It works 😂","created_at":1759428817,"id":"2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"49081434ace41b96de457f61c7fe2552a55cb75b9578f2bb86af7d80824af229d563e32036354ae2652ebe0135be4e53bc2d38de732389124c4e114734f9c868","tags":[["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","","reply"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"]]}] +[14:13:58.697] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか、探検したいな","created_at":1759428816,"id":"37ff089172527d50c9e5f2be159c76f17dcb17b0599ca1708a917dcdc0d88873","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ab6f0d94ed539db75659a88dfa2e24bf4a992ac06cf883a34e550b257ebd68b07406703a7740a078ab3224bb2872b4994c16491a5a3ef8212e8b046f23106239","tags":[]}] +[14:13:58.757] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"With Cognac! \n\nIt would be an interesting combination.\n\nPrepare the steak with peppercorns?","created_at":1759428809,"id":"2d7ccf0c1bf79478d380955d7fc676efc0848fedd6074000a0c20f5f2c219f80","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"94239c399461a38d6ac76186aaa3897c79e3205da8e1f9cc351fc039ecc8028c6a8bdee5cb1fa8d556c09e3397cf4ab5d16be57667e1c735b404256c1cde5f78","tags":[["alt","A short note: With Cognac! \n\nIt would be an interesting combinat..."],["e","889d443831fc67807ddd0bd0bbc80e59a6c2f1609d94eacc45e1203964424a48","wss://relay.damus.io/","root","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","67175022f894cd451ac9e374176b569df847df78f2cfbd4b2b9029c450cc7354","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","7c6fedf4c6057648e926b517cb9b7f2d2ef6cbcaaec81b4492fe7b0b2157b1ae","wss://relay.damus.io/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:13:58.818] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Who is the chief #zapathon officer of #Nostr?? ⚡️ \n\n#asknostr \nhttps://media.tenor.com/5XJZShYpv-EAAAAM/simpsons-zzzap.gif","created_at":1759428799,"id":"b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"ba3bfa6946835c791e8f055b80c4a2ab1862845046579a70693e46e12f210da695e7112980e106d6a8d075a8dd862113de4b6ce5e9b1fe3538ca1376d062f38c","tags":[["t","zapathon"],["t","Nostr"],["t","asknostr"]]}] +[14:13:58.878] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:58.939] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:59.000] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:59.060] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:59.121] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:59.181] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:59.242] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:59.302] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:59.363] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:59.423] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:59.484] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:59.545] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:02.411] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:02.412] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:02.412] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:02.412] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:02.563] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:02.574] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:14:02.634] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"九州の怒涛のボトルキープ焼酎","created_at":1759428829,"id":"81820adb8a09bfb4eb9fdd4e680e9617bdea7ca73b3289e9422fec70aebe745e","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"6452ae335742237c8b32cb4654aef95e57fc59a03ccd685ce72adce40e0c239478c33173deb05fe14303ca517facf54433e011d95ac62147da565be0eb298bf5","tags":[]}] +[14:14:02.695] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#canineVibes \nhttps://images2.imgbox.com/58/fb/a3o7b6Jp_o.jpg \n#dogstr #dog #Nostr #bestfren","created_at":1759428826,"id":"a94b87102168c932d44042940af94f6618410bdf0e0ee9b42d446969981e2f89","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"6e5fdc96cf7133f2e75e05d79b2199502099e11f7fd2b9f7ac8ffce49dadfe25948036cf553419721c8c598528fc4addec7d4a66a8dad9336211652603aa81a2","tags":[]}] +[14:14:02.755] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0qk58w8xhl2ja2kmzt7jcpvemhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0dec82c33x5ehsmt90q6ry7p5vd5xge3hx5mksupnwym857rpvaukk6m9dvmhqer8wa6hwepsxu6rjd35v34hj6rp89ensvnj096ns0mzwfhkzerrv9ehg0t5wf6k2qg7waehxw309ahx7um5wgkkgetk9emk2mrvdaexgetj9ehx2ap0qy08wumn8ghj7mn0wd68yttsw43zuam9d3kx7unyv4ezumn9wshsxs66av must be on his tractor again.","created_at":1759428823,"id":"e609e8af314956193f0bede702fda80b09469c6fd8079c6aa513e91c812494b7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6e93a0bbea58485a325ce275ffd07d82000232017148dde23f6b20597db88468a4c1fdcde360afe0e641c5548551aea1165a7d2f41461fd5eef061f0c829df85","tags":[["alt","A short note: nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0..."],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"]]}] +[14:14:02.816] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this trait is less about left/right and more about authoritrian/libertarian. there are plenty of right-authoritarians out there, just as there are left-libertarians. ","created_at":1759428820,"id":"995f5f7d3df962b578276b3494c8669084f37c2e2c7c083c83d701a276080ca6","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"378906037f8336e9936ac97847c84491a6acc6b1ff7a9dffa395edd6cf58fdbcd0b0edbd8dc819fe8905de12010027324c9c6ac7e843b3f12eec7ef0eb994e58","tags":[["alt","A short note: this trait is less about left/right and more about..."],["e","8e75d6502eb579886f8586f098da7128de074777455d9a1523c840d75e4d8d91","wss://nostr.wine/","root","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db"],["p","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db","wss://relay.mostr.pub/"]]}] +[14:14:02.906] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"イカの呪縛から解放されしターゴイル","created_at":1759428819,"id":"bcffcdc1706cc8c50fd8256e1778f2243ff4ccdeb62963058fa142966117f9c4","kind":1,"pubkey":"0bdcf0019e79d159bd822b61eac4dd018f6f7d3c66d54bf99ddbcd519fb34f96","sig":"13e02a0ce601de7f1b1aa8e341b441f65e3b62b2577ad9fd7b517d089577d696ee4a9de8c5b747e2734490ca591b19bd31d04d08eb354d86f4ec058bf119a85f","tags":[]}] +[14:14:02.967] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It works 😂","created_at":1759428817,"id":"2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"49081434ace41b96de457f61c7fe2552a55cb75b9578f2bb86af7d80824af229d563e32036354ae2652ebe0135be4e53bc2d38de732389124c4e114734f9c868","tags":[["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","","reply"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"]]}] +[14:14:03.027] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか、探検したいな","created_at":1759428816,"id":"37ff089172527d50c9e5f2be159c76f17dcb17b0599ca1708a917dcdc0d88873","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ab6f0d94ed539db75659a88dfa2e24bf4a992ac06cf883a34e550b257ebd68b07406703a7740a078ab3224bb2872b4994c16491a5a3ef8212e8b046f23106239","tags":[]}] +[14:14:03.088] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"With Cognac! \n\nIt would be an interesting combination.\n\nPrepare the steak with peppercorns?","created_at":1759428809,"id":"2d7ccf0c1bf79478d380955d7fc676efc0848fedd6074000a0c20f5f2c219f80","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"94239c399461a38d6ac76186aaa3897c79e3205da8e1f9cc351fc039ecc8028c6a8bdee5cb1fa8d556c09e3397cf4ab5d16be57667e1c735b404256c1cde5f78","tags":[["alt","A short note: With Cognac! \n\nIt would be an interesting combinat..."],["e","889d443831fc67807ddd0bd0bbc80e59a6c2f1609d94eacc45e1203964424a48","wss://relay.damus.io/","root","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","67175022f894cd451ac9e374176b569df847df78f2cfbd4b2b9029c450cc7354","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","7c6fedf4c6057648e926b517cb9b7f2d2ef6cbcaaec81b4492fe7b0b2157b1ae","wss://relay.damus.io/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:14:03.148] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:03.209] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:03.270] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:03.330] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:03.391] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:03.451] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:03.511] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:03.572] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:03.632] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:14:03.693] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:14:03.754] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:03.814] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:05.512] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:05.512] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:05.513] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:05.513] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:05.664] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:05.725] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:05.785] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:14:05.846] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"九州の怒涛のボトルキープ焼酎","created_at":1759428829,"id":"81820adb8a09bfb4eb9fdd4e680e9617bdea7ca73b3289e9422fec70aebe745e","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"6452ae335742237c8b32cb4654aef95e57fc59a03ccd685ce72adce40e0c239478c33173deb05fe14303ca517facf54433e011d95ac62147da565be0eb298bf5","tags":[]}] +[14:14:05.906] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#canineVibes \nhttps://images2.imgbox.com/58/fb/a3o7b6Jp_o.jpg \n#dogstr #dog #Nostr #bestfren","created_at":1759428826,"id":"a94b87102168c932d44042940af94f6618410bdf0e0ee9b42d446969981e2f89","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"6e5fdc96cf7133f2e75e05d79b2199502099e11f7fd2b9f7ac8ffce49dadfe25948036cf553419721c8c598528fc4addec7d4a66a8dad9336211652603aa81a2","tags":[]}] +[14:14:05.967] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0qk58w8xhl2ja2kmzt7jcpvemhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0dec82c33x5ehsmt90q6ry7p5vd5xge3hx5mksupnwym857rpvaukk6m9dvmhqer8wa6hwepsxu6rjd35v34hj6rp89ensvnj096ns0mzwfhkzerrv9ehg0t5wf6k2qg7waehxw309ahx7um5wgkkgetk9emk2mrvdaexgetj9ehx2ap0qy08wumn8ghj7mn0wd68yttsw43zuam9d3kx7unyv4ezumn9wshsxs66av must be on his tractor again.","created_at":1759428823,"id":"e609e8af314956193f0bede702fda80b09469c6fd8079c6aa513e91c812494b7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6e93a0bbea58485a325ce275ffd07d82000232017148dde23f6b20597db88468a4c1fdcde360afe0e641c5548551aea1165a7d2f41461fd5eef061f0c829df85","tags":[["alt","A short note: nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0..."],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"]]}] +[14:14:06.028] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this trait is less about left/right and more about authoritrian/libertarian. there are plenty of right-authoritarians out there, just as there are left-libertarians. ","created_at":1759428820,"id":"995f5f7d3df962b578276b3494c8669084f37c2e2c7c083c83d701a276080ca6","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"378906037f8336e9936ac97847c84491a6acc6b1ff7a9dffa395edd6cf58fdbcd0b0edbd8dc819fe8905de12010027324c9c6ac7e843b3f12eec7ef0eb994e58","tags":[["alt","A short note: this trait is less about left/right and more about..."],["e","8e75d6502eb579886f8586f098da7128de074777455d9a1523c840d75e4d8d91","wss://nostr.wine/","root","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db"],["p","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db","wss://relay.mostr.pub/"]]}] +[14:14:06.088] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"イカの呪縛から解放されしターゴイル","created_at":1759428819,"id":"bcffcdc1706cc8c50fd8256e1778f2243ff4ccdeb62963058fa142966117f9c4","kind":1,"pubkey":"0bdcf0019e79d159bd822b61eac4dd018f6f7d3c66d54bf99ddbcd519fb34f96","sig":"13e02a0ce601de7f1b1aa8e341b441f65e3b62b2577ad9fd7b517d089577d696ee4a9de8c5b747e2734490ca591b19bd31d04d08eb354d86f4ec058bf119a85f","tags":[]}] +[14:14:06.149] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It works 😂","created_at":1759428817,"id":"2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"49081434ace41b96de457f61c7fe2552a55cb75b9578f2bb86af7d80824af229d563e32036354ae2652ebe0135be4e53bc2d38de732389124c4e114734f9c868","tags":[["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","","reply"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"]]}] +[14:14:06.209] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか、探検したいな","created_at":1759428816,"id":"37ff089172527d50c9e5f2be159c76f17dcb17b0599ca1708a917dcdc0d88873","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ab6f0d94ed539db75659a88dfa2e24bf4a992ac06cf883a34e550b257ebd68b07406703a7740a078ab3224bb2872b4994c16491a5a3ef8212e8b046f23106239","tags":[]}] +[14:14:06.270] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:06.331] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:06.391] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:06.452] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:06.512] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:06.573] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:06.633] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:06.694] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:06.754] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:14:06.815] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:14:06.875] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:06.936] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:08.640] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:08.640] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:08.640] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:08.640] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:08.792] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:08.852] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:08.913] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:14:08.973] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"九州の怒涛のボトルキープ焼酎","created_at":1759428829,"id":"81820adb8a09bfb4eb9fdd4e680e9617bdea7ca73b3289e9422fec70aebe745e","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"6452ae335742237c8b32cb4654aef95e57fc59a03ccd685ce72adce40e0c239478c33173deb05fe14303ca517facf54433e011d95ac62147da565be0eb298bf5","tags":[]}] +[14:14:09.034] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#canineVibes \nhttps://images2.imgbox.com/58/fb/a3o7b6Jp_o.jpg \n#dogstr #dog #Nostr #bestfren","created_at":1759428826,"id":"a94b87102168c932d44042940af94f6618410bdf0e0ee9b42d446969981e2f89","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"6e5fdc96cf7133f2e75e05d79b2199502099e11f7fd2b9f7ac8ffce49dadfe25948036cf553419721c8c598528fc4addec7d4a66a8dad9336211652603aa81a2","tags":[]}] +[14:14:09.094] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0qk58w8xhl2ja2kmzt7jcpvemhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0dec82c33x5ehsmt90q6ry7p5vd5xge3hx5mksupnwym857rpvaukk6m9dvmhqer8wa6hwepsxu6rjd35v34hj6rp89ensvnj096ns0mzwfhkzerrv9ehg0t5wf6k2qg7waehxw309ahx7um5wgkkgetk9emk2mrvdaexgetj9ehx2ap0qy08wumn8ghj7mn0wd68yttsw43zuam9d3kx7unyv4ezumn9wshsxs66av must be on his tractor again.","created_at":1759428823,"id":"e609e8af314956193f0bede702fda80b09469c6fd8079c6aa513e91c812494b7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6e93a0bbea58485a325ce275ffd07d82000232017148dde23f6b20597db88468a4c1fdcde360afe0e641c5548551aea1165a7d2f41461fd5eef061f0c829df85","tags":[["alt","A short note: nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0..."],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"]]}] +[14:14:09.155] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this trait is less about left/right and more about authoritrian/libertarian. there are plenty of right-authoritarians out there, just as there are left-libertarians. ","created_at":1759428820,"id":"995f5f7d3df962b578276b3494c8669084f37c2e2c7c083c83d701a276080ca6","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"378906037f8336e9936ac97847c84491a6acc6b1ff7a9dffa395edd6cf58fdbcd0b0edbd8dc819fe8905de12010027324c9c6ac7e843b3f12eec7ef0eb994e58","tags":[["alt","A short note: this trait is less about left/right and more about..."],["e","8e75d6502eb579886f8586f098da7128de074777455d9a1523c840d75e4d8d91","wss://nostr.wine/","root","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db"],["p","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db","wss://relay.mostr.pub/"]]}] +[14:14:09.216] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"イカの呪縛から解放されしターゴイル","created_at":1759428819,"id":"bcffcdc1706cc8c50fd8256e1778f2243ff4ccdeb62963058fa142966117f9c4","kind":1,"pubkey":"0bdcf0019e79d159bd822b61eac4dd018f6f7d3c66d54bf99ddbcd519fb34f96","sig":"13e02a0ce601de7f1b1aa8e341b441f65e3b62b2577ad9fd7b517d089577d696ee4a9de8c5b747e2734490ca591b19bd31d04d08eb354d86f4ec058bf119a85f","tags":[]}] +[14:14:09.276] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It works 😂","created_at":1759428817,"id":"2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"49081434ace41b96de457f61c7fe2552a55cb75b9578f2bb86af7d80824af229d563e32036354ae2652ebe0135be4e53bc2d38de732389124c4e114734f9c868","tags":[["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","","reply"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"]]}] +[14:14:09.337] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか、探検したいな","created_at":1759428816,"id":"37ff089172527d50c9e5f2be159c76f17dcb17b0599ca1708a917dcdc0d88873","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ab6f0d94ed539db75659a88dfa2e24bf4a992ac06cf883a34e550b257ebd68b07406703a7740a078ab3224bb2872b4994c16491a5a3ef8212e8b046f23106239","tags":[]}] +[14:14:09.397] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:09.458] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:09.518] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:09.579] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:09.640] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:09.700] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:09.761] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:09.821] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:09.882] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:14:09.942] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:14:10.003] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:10.063] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:11.765] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:11.765] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:11.766] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:11.766] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:11.987] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:12.048] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:12.108] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:14:12.134] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"九州の怒涛のボトルキープ焼酎","created_at":1759428829,"id":"81820adb8a09bfb4eb9fdd4e680e9617bdea7ca73b3289e9422fec70aebe745e","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"6452ae335742237c8b32cb4654aef95e57fc59a03ccd685ce72adce40e0c239478c33173deb05fe14303ca517facf54433e011d95ac62147da565be0eb298bf5","tags":[]}] +[14:14:12.194] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#canineVibes \nhttps://images2.imgbox.com/58/fb/a3o7b6Jp_o.jpg \n#dogstr #dog #Nostr #bestfren","created_at":1759428826,"id":"a94b87102168c932d44042940af94f6618410bdf0e0ee9b42d446969981e2f89","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"6e5fdc96cf7133f2e75e05d79b2199502099e11f7fd2b9f7ac8ffce49dadfe25948036cf553419721c8c598528fc4addec7d4a66a8dad9336211652603aa81a2","tags":[]}] +[14:14:12.255] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0qk58w8xhl2ja2kmzt7jcpvemhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0dec82c33x5ehsmt90q6ry7p5vd5xge3hx5mksupnwym857rpvaukk6m9dvmhqer8wa6hwepsxu6rjd35v34hj6rp89ensvnj096ns0mzwfhkzerrv9ehg0t5wf6k2qg7waehxw309ahx7um5wgkkgetk9emk2mrvdaexgetj9ehx2ap0qy08wumn8ghj7mn0wd68yttsw43zuam9d3kx7unyv4ezumn9wshsxs66av must be on his tractor again.","created_at":1759428823,"id":"e609e8af314956193f0bede702fda80b09469c6fd8079c6aa513e91c812494b7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6e93a0bbea58485a325ce275ffd07d82000232017148dde23f6b20597db88468a4c1fdcde360afe0e641c5548551aea1165a7d2f41461fd5eef061f0c829df85","tags":[["alt","A short note: nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0..."],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"]]}] +[14:14:12.315] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this trait is less about left/right and more about authoritrian/libertarian. there are plenty of right-authoritarians out there, just as there are left-libertarians. ","created_at":1759428820,"id":"995f5f7d3df962b578276b3494c8669084f37c2e2c7c083c83d701a276080ca6","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"378906037f8336e9936ac97847c84491a6acc6b1ff7a9dffa395edd6cf58fdbcd0b0edbd8dc819fe8905de12010027324c9c6ac7e843b3f12eec7ef0eb994e58","tags":[["alt","A short note: this trait is less about left/right and more about..."],["e","8e75d6502eb579886f8586f098da7128de074777455d9a1523c840d75e4d8d91","wss://nostr.wine/","root","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db"],["p","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db","wss://relay.mostr.pub/"]]}] +[14:14:12.376] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"イカの呪縛から解放されしターゴイル","created_at":1759428819,"id":"bcffcdc1706cc8c50fd8256e1778f2243ff4ccdeb62963058fa142966117f9c4","kind":1,"pubkey":"0bdcf0019e79d159bd822b61eac4dd018f6f7d3c66d54bf99ddbcd519fb34f96","sig":"13e02a0ce601de7f1b1aa8e341b441f65e3b62b2577ad9fd7b517d089577d696ee4a9de8c5b747e2734490ca591b19bd31d04d08eb354d86f4ec058bf119a85f","tags":[]}] +[14:14:12.436] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It works 😂","created_at":1759428817,"id":"2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"49081434ace41b96de457f61c7fe2552a55cb75b9578f2bb86af7d80824af229d563e32036354ae2652ebe0135be4e53bc2d38de732389124c4e114734f9c868","tags":[["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","","reply"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"]]}] +[14:14:12.497] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか、探検したいな","created_at":1759428816,"id":"37ff089172527d50c9e5f2be159c76f17dcb17b0599ca1708a917dcdc0d88873","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ab6f0d94ed539db75659a88dfa2e24bf4a992ac06cf883a34e550b257ebd68b07406703a7740a078ab3224bb2872b4994c16491a5a3ef8212e8b046f23106239","tags":[]}] +[14:14:12.557] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:12.618] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:12.678] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:12.739] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:12.799] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:12.860] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:12.920] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:12.981] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:13.041] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:14:13.102] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:14:13.162] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:13.223] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:14.923] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:14.923] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:14.923] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:14.923] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:15.074] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:15.135] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:15.196] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:14:15.256] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"九州の怒涛のボトルキープ焼酎","created_at":1759428829,"id":"81820adb8a09bfb4eb9fdd4e680e9617bdea7ca73b3289e9422fec70aebe745e","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"6452ae335742237c8b32cb4654aef95e57fc59a03ccd685ce72adce40e0c239478c33173deb05fe14303ca517facf54433e011d95ac62147da565be0eb298bf5","tags":[]}] +[14:14:15.317] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#canineVibes \nhttps://images2.imgbox.com/58/fb/a3o7b6Jp_o.jpg \n#dogstr #dog #Nostr #bestfren","created_at":1759428826,"id":"a94b87102168c932d44042940af94f6618410bdf0e0ee9b42d446969981e2f89","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"6e5fdc96cf7133f2e75e05d79b2199502099e11f7fd2b9f7ac8ffce49dadfe25948036cf553419721c8c598528fc4addec7d4a66a8dad9336211652603aa81a2","tags":[]}] +[14:14:15.377] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0qk58w8xhl2ja2kmzt7jcpvemhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0dec82c33x5ehsmt90q6ry7p5vd5xge3hx5mksupnwym857rpvaukk6m9dvmhqer8wa6hwepsxu6rjd35v34hj6rp89ensvnj096ns0mzwfhkzerrv9ehg0t5wf6k2qg7waehxw309ahx7um5wgkkgetk9emk2mrvdaexgetj9ehx2ap0qy08wumn8ghj7mn0wd68yttsw43zuam9d3kx7unyv4ezumn9wshsxs66av must be on his tractor again.","created_at":1759428823,"id":"e609e8af314956193f0bede702fda80b09469c6fd8079c6aa513e91c812494b7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6e93a0bbea58485a325ce275ffd07d82000232017148dde23f6b20597db88468a4c1fdcde360afe0e641c5548551aea1165a7d2f41461fd5eef061f0c829df85","tags":[["alt","A short note: nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0..."],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"]]}] +[14:14:15.438] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this trait is less about left/right and more about authoritrian/libertarian. there are plenty of right-authoritarians out there, just as there are left-libertarians. ","created_at":1759428820,"id":"995f5f7d3df962b578276b3494c8669084f37c2e2c7c083c83d701a276080ca6","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"378906037f8336e9936ac97847c84491a6acc6b1ff7a9dffa395edd6cf58fdbcd0b0edbd8dc819fe8905de12010027324c9c6ac7e843b3f12eec7ef0eb994e58","tags":[["alt","A short note: this trait is less about left/right and more about..."],["e","8e75d6502eb579886f8586f098da7128de074777455d9a1523c840d75e4d8d91","wss://nostr.wine/","root","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db"],["p","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db","wss://relay.mostr.pub/"]]}] +[14:14:15.498] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"イカの呪縛から解放されしターゴイル","created_at":1759428819,"id":"bcffcdc1706cc8c50fd8256e1778f2243ff4ccdeb62963058fa142966117f9c4","kind":1,"pubkey":"0bdcf0019e79d159bd822b61eac4dd018f6f7d3c66d54bf99ddbcd519fb34f96","sig":"13e02a0ce601de7f1b1aa8e341b441f65e3b62b2577ad9fd7b517d089577d696ee4a9de8c5b747e2734490ca591b19bd31d04d08eb354d86f4ec058bf119a85f","tags":[]}] +[14:14:15.559] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It works 😂","created_at":1759428817,"id":"2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"49081434ace41b96de457f61c7fe2552a55cb75b9578f2bb86af7d80824af229d563e32036354ae2652ebe0135be4e53bc2d38de732389124c4e114734f9c868","tags":[["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","","reply"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"]]}] +[14:14:15.619] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか、探検したいな","created_at":1759428816,"id":"37ff089172527d50c9e5f2be159c76f17dcb17b0599ca1708a917dcdc0d88873","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ab6f0d94ed539db75659a88dfa2e24bf4a992ac06cf883a34e550b257ebd68b07406703a7740a078ab3224bb2872b4994c16491a5a3ef8212e8b046f23106239","tags":[]}] +[14:14:15.680] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:15.740] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:15.801] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:15.861] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:15.922] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:15.983] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:16.043] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:16.104] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:16.165] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:14:16.225] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:14:16.286] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:16.346] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:18.012] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:18.012] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:18.012] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:18.012] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:18.164] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:18.224] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:18.285] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:14:18.345] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BREAKING: ‘AJN Live’ Soars to Number #5 on Top Free Apple News Apps\n\nhttps://www.infowars.com/posts/breaking-ajn-live-climbs-to-number-6-on-top-free-apple-news-apps/\n\n#Zap to support, DM to suggest new feeds.","created_at":1759428832,"id":"124cac29aa7d4a7614118ca102d3507d2e43bf3541b10f16777e24eab8876d7f","kind":1,"pubkey":"957dd3687817abb53e01635fb4fc1c029c2cd49202ec82f416ec240601b371d8","sig":"881e8a792d5def4c6c4424413daecadb97d39acabe23b03edb071025199661405dd35eea8d734a147e8da1ba3c099476ba0ad3ff45d99b350f8e87ea0941ea77","tags":[]}] +[14:14:18.406] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"九州の怒涛のボトルキープ焼酎","created_at":1759428829,"id":"81820adb8a09bfb4eb9fdd4e680e9617bdea7ca73b3289e9422fec70aebe745e","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"6452ae335742237c8b32cb4654aef95e57fc59a03ccd685ce72adce40e0c239478c33173deb05fe14303ca517facf54433e011d95ac62147da565be0eb298bf5","tags":[]}] +[14:14:18.467] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#canineVibes \nhttps://images2.imgbox.com/58/fb/a3o7b6Jp_o.jpg \n#dogstr #dog #Nostr #bestfren","created_at":1759428826,"id":"a94b87102168c932d44042940af94f6618410bdf0e0ee9b42d446969981e2f89","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"6e5fdc96cf7133f2e75e05d79b2199502099e11f7fd2b9f7ac8ffce49dadfe25948036cf553419721c8c598528fc4addec7d4a66a8dad9336211652603aa81a2","tags":[]}] +[14:14:18.527] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0qk58w8xhl2ja2kmzt7jcpvemhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0dec82c33x5ehsmt90q6ry7p5vd5xge3hx5mksupnwym857rpvaukk6m9dvmhqer8wa6hwepsxu6rjd35v34hj6rp89ensvnj096ns0mzwfhkzerrv9ehg0t5wf6k2qg7waehxw309ahx7um5wgkkgetk9emk2mrvdaexgetj9ehx2ap0qy08wumn8ghj7mn0wd68yttsw43zuam9d3kx7unyv4ezumn9wshsxs66av must be on his tractor again.","created_at":1759428823,"id":"e609e8af314956193f0bede702fda80b09469c6fd8079c6aa513e91c812494b7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6e93a0bbea58485a325ce275ffd07d82000232017148dde23f6b20597db88468a4c1fdcde360afe0e641c5548551aea1165a7d2f41461fd5eef061f0c829df85","tags":[["alt","A short note: nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0..."],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"]]}] +[14:14:18.588] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this trait is less about left/right and more about authoritrian/libertarian. there are plenty of right-authoritarians out there, just as there are left-libertarians. ","created_at":1759428820,"id":"995f5f7d3df962b578276b3494c8669084f37c2e2c7c083c83d701a276080ca6","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"378906037f8336e9936ac97847c84491a6acc6b1ff7a9dffa395edd6cf58fdbcd0b0edbd8dc819fe8905de12010027324c9c6ac7e843b3f12eec7ef0eb994e58","tags":[["alt","A short note: this trait is less about left/right and more about..."],["e","8e75d6502eb579886f8586f098da7128de074777455d9a1523c840d75e4d8d91","wss://nostr.wine/","root","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db"],["p","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db","wss://relay.mostr.pub/"]]}] +[14:14:18.649] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"イカの呪縛から解放されしターゴイル","created_at":1759428819,"id":"bcffcdc1706cc8c50fd8256e1778f2243ff4ccdeb62963058fa142966117f9c4","kind":1,"pubkey":"0bdcf0019e79d159bd822b61eac4dd018f6f7d3c66d54bf99ddbcd519fb34f96","sig":"13e02a0ce601de7f1b1aa8e341b441f65e3b62b2577ad9fd7b517d089577d696ee4a9de8c5b747e2734490ca591b19bd31d04d08eb354d86f4ec058bf119a85f","tags":[]}] +[14:14:18.709] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It works 😂","created_at":1759428817,"id":"2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"49081434ace41b96de457f61c7fe2552a55cb75b9578f2bb86af7d80824af229d563e32036354ae2652ebe0135be4e53bc2d38de732389124c4e114734f9c868","tags":[["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","","reply"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"]]}] +[14:14:18.770] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:18.830] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:18.891] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:18.951] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:19.012] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:19.072] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:19.133] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:19.193] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:19.254] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:19.314] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:14:19.375] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:14:19.436] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:21.138] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:21.138] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:21.138] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:21.138] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:21.291] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:21.351] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:21.412] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:14:21.472] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BREAKING: ‘AJN Live’ Soars to Number #5 on Top Free Apple News Apps\n\nhttps://www.infowars.com/posts/breaking-ajn-live-climbs-to-number-6-on-top-free-apple-news-apps/\n\n#Zap to support, DM to suggest new feeds.","created_at":1759428832,"id":"124cac29aa7d4a7614118ca102d3507d2e43bf3541b10f16777e24eab8876d7f","kind":1,"pubkey":"957dd3687817abb53e01635fb4fc1c029c2cd49202ec82f416ec240601b371d8","sig":"881e8a792d5def4c6c4424413daecadb97d39acabe23b03edb071025199661405dd35eea8d734a147e8da1ba3c099476ba0ad3ff45d99b350f8e87ea0941ea77","tags":[]}] +[14:14:21.533] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"九州の怒涛のボトルキープ焼酎","created_at":1759428829,"id":"81820adb8a09bfb4eb9fdd4e680e9617bdea7ca73b3289e9422fec70aebe745e","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"6452ae335742237c8b32cb4654aef95e57fc59a03ccd685ce72adce40e0c239478c33173deb05fe14303ca517facf54433e011d95ac62147da565be0eb298bf5","tags":[]}] +[14:14:21.593] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#canineVibes \nhttps://images2.imgbox.com/58/fb/a3o7b6Jp_o.jpg \n#dogstr #dog #Nostr #bestfren","created_at":1759428826,"id":"a94b87102168c932d44042940af94f6618410bdf0e0ee9b42d446969981e2f89","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"6e5fdc96cf7133f2e75e05d79b2199502099e11f7fd2b9f7ac8ffce49dadfe25948036cf553419721c8c598528fc4addec7d4a66a8dad9336211652603aa81a2","tags":[]}] +[14:14:21.654] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0qk58w8xhl2ja2kmzt7jcpvemhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0dec82c33x5ehsmt90q6ry7p5vd5xge3hx5mksupnwym857rpvaukk6m9dvmhqer8wa6hwepsxu6rjd35v34hj6rp89ensvnj096ns0mzwfhkzerrv9ehg0t5wf6k2qg7waehxw309ahx7um5wgkkgetk9emk2mrvdaexgetj9ehx2ap0qy08wumn8ghj7mn0wd68yttsw43zuam9d3kx7unyv4ezumn9wshsxs66av must be on his tractor again.","created_at":1759428823,"id":"e609e8af314956193f0bede702fda80b09469c6fd8079c6aa513e91c812494b7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6e93a0bbea58485a325ce275ffd07d82000232017148dde23f6b20597db88468a4c1fdcde360afe0e641c5548551aea1165a7d2f41461fd5eef061f0c829df85","tags":[["alt","A short note: nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0..."],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"]]}] +[14:14:21.715] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this trait is less about left/right and more about authoritrian/libertarian. there are plenty of right-authoritarians out there, just as there are left-libertarians. ","created_at":1759428820,"id":"995f5f7d3df962b578276b3494c8669084f37c2e2c7c083c83d701a276080ca6","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"378906037f8336e9936ac97847c84491a6acc6b1ff7a9dffa395edd6cf58fdbcd0b0edbd8dc819fe8905de12010027324c9c6ac7e843b3f12eec7ef0eb994e58","tags":[["alt","A short note: this trait is less about left/right and more about..."],["e","8e75d6502eb579886f8586f098da7128de074777455d9a1523c840d75e4d8d91","wss://nostr.wine/","root","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db"],["p","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db","wss://relay.mostr.pub/"]]}] +[14:14:21.775] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"イカの呪縛から解放されしターゴイル","created_at":1759428819,"id":"bcffcdc1706cc8c50fd8256e1778f2243ff4ccdeb62963058fa142966117f9c4","kind":1,"pubkey":"0bdcf0019e79d159bd822b61eac4dd018f6f7d3c66d54bf99ddbcd519fb34f96","sig":"13e02a0ce601de7f1b1aa8e341b441f65e3b62b2577ad9fd7b517d089577d696ee4a9de8c5b747e2734490ca591b19bd31d04d08eb354d86f4ec058bf119a85f","tags":[]}] +[14:14:21.836] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It works 😂","created_at":1759428817,"id":"2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"49081434ace41b96de457f61c7fe2552a55cb75b9578f2bb86af7d80824af229d563e32036354ae2652ebe0135be4e53bc2d38de732389124c4e114734f9c868","tags":[["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","","reply"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"]]}] +[14:14:21.896] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:21.957] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:22.018] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:22.078] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:22.104] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:22.164] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:22.225] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:22.286] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:22.346] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:22.407] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:22.467] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:14:22.528] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:24.421] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:24.422] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:24.422] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:24.422] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:24.573] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space News: 'Andromeda' at 25: An optimistic but flawed sci-fi romp cobbled together from the notes of 'Star Trek' creator Gene Roddenberry\nLink: https://www.space.com/entertainment/space-movies-shows/andromeda-at-25-an-optimistic-but-flawed-sci-fi-romp-cobbled-together-from-the-notes-of-star-trek-creator-gene-roddenberry\nSummary: Paying tribute to the 'Star Trek' creator's posthumous space adventure that still resonates with fans today.","created_at":1759428862,"id":"6c44788dbed2053a0c89c0eec3ef947c5527bdc491b740ec1beecd16547ba28a","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"265bb61fadf48c935f02afcc5a1d774cf27b3008f1abc0e7bbddd32dad9be1dbc7685b759f57991c9876a04e8b5954447989ae05fb814e4edc45d9c59e5fe648","tags":[]}] +[14:14:24.633] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Let's hear some ideas of where is the best place to move to in the States. If you say California you will automatically be banned from Nostr. \nnostr:nevent1qqsykc6nnsduehekm35q0tlqv0a8nu28r5dq0l68nzveuwj58l66hfspz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsyg9s674dg4q88y0w9wcj3aeu8nfjjdrvphsckxdepfy0q3qxghf2s5psgqqqqqqs9c7qkm","created_at":1759428862,"id":"a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","kind":1,"pubkey":"101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","sig":"67aa917fc7cb98d699da7ed04db59c767d86ff81f44ce18c236141878185e2158b83b099f355ad2b24d6ba660514c0cbcf549a647c7080f04fca7c9582c998dc","tags":[["alt","A short note: Let's hear some ideas of where is the best place t..."],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/"],["q","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.damus.io/","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["zap","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/","0.9"],["zap","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/","0.1"]]}] +[14:14:24.694] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Amethyst tips\n\nHow to immediately improve your Nostr experience\nhttps://i.nostr.build/s4SdjbcWRnMTLswX.jpg","created_at":1759428857,"id":"84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"0710709c5a3553e4fb8b74c5af372bff3c6955ccf75c46a82293201d06f68c299e373389c94b27aebe5729b11885296a5c30c1c96942e3470082315f96b8564f","tags":[["alt","A short note: #Amethyst tips\n\nHow to immediately improve your No..."],["t","Amethyst"],["t","amethyst"],["r","https://i.nostr.build/s4SdjbcWRnMTLswX.jpg"],["imeta","url https://i.nostr.build/s4SdjbcWRnMTLswX.jpg","x 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","size 18785","m image/jpeg","dim 1008x413","blurhash ZF7^cUEZ?KSaf8s=I,$-I,X2xcNExbWBWAt8Ris;ImxJImxbWUbExcRis;t8WAoMkBj[oMfij]WB","ox 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","alt "]]}] +[14:14:24.755] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:24.816] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:24.876] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:14:24.937] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BREAKING: ‘AJN Live’ Soars to Number #5 on Top Free Apple News Apps\n\nhttps://www.infowars.com/posts/breaking-ajn-live-climbs-to-number-6-on-top-free-apple-news-apps/\n\n#Zap to support, DM to suggest new feeds.","created_at":1759428832,"id":"124cac29aa7d4a7614118ca102d3507d2e43bf3541b10f16777e24eab8876d7f","kind":1,"pubkey":"957dd3687817abb53e01635fb4fc1c029c2cd49202ec82f416ec240601b371d8","sig":"881e8a792d5def4c6c4424413daecadb97d39acabe23b03edb071025199661405dd35eea8d734a147e8da1ba3c099476ba0ad3ff45d99b350f8e87ea0941ea77","tags":[]}] +[14:14:24.997] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"九州の怒涛のボトルキープ焼酎","created_at":1759428829,"id":"81820adb8a09bfb4eb9fdd4e680e9617bdea7ca73b3289e9422fec70aebe745e","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"6452ae335742237c8b32cb4654aef95e57fc59a03ccd685ce72adce40e0c239478c33173deb05fe14303ca517facf54433e011d95ac62147da565be0eb298bf5","tags":[]}] +[14:14:25.058] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#canineVibes \nhttps://images2.imgbox.com/58/fb/a3o7b6Jp_o.jpg \n#dogstr #dog #Nostr #bestfren","created_at":1759428826,"id":"a94b87102168c932d44042940af94f6618410bdf0e0ee9b42d446969981e2f89","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"6e5fdc96cf7133f2e75e05d79b2199502099e11f7fd2b9f7ac8ffce49dadfe25948036cf553419721c8c598528fc4addec7d4a66a8dad9336211652603aa81a2","tags":[]}] +[14:14:25.118] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0qk58w8xhl2ja2kmzt7jcpvemhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0dec82c33x5ehsmt90q6ry7p5vd5xge3hx5mksupnwym857rpvaukk6m9dvmhqer8wa6hwepsxu6rjd35v34hj6rp89ensvnj096ns0mzwfhkzerrv9ehg0t5wf6k2qg7waehxw309ahx7um5wgkkgetk9emk2mrvdaexgetj9ehx2ap0qy08wumn8ghj7mn0wd68yttsw43zuam9d3kx7unyv4ezumn9wshsxs66av must be on his tractor again.","created_at":1759428823,"id":"e609e8af314956193f0bede702fda80b09469c6fd8079c6aa513e91c812494b7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6e93a0bbea58485a325ce275ffd07d82000232017148dde23f6b20597db88468a4c1fdcde360afe0e641c5548551aea1165a7d2f41461fd5eef061f0c829df85","tags":[["alt","A short note: nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0..."],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"]]}] +[14:14:25.179] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:25.240] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:25.300] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:25.361] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:25.422] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:25.482] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:25.543] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:25.603] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:25.664] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:25.725] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:25.785] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:14:25.846] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:27.566] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:27.566] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:27.566] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:27.566] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:27.737] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space News: 'Andromeda' at 25: An optimistic but flawed sci-fi romp cobbled together from the notes of 'Star Trek' creator Gene Roddenberry\nLink: https://www.space.com/entertainment/space-movies-shows/andromeda-at-25-an-optimistic-but-flawed-sci-fi-romp-cobbled-together-from-the-notes-of-star-trek-creator-gene-roddenberry\nSummary: Paying tribute to the 'Star Trek' creator's posthumous space adventure that still resonates with fans today.","created_at":1759428862,"id":"6c44788dbed2053a0c89c0eec3ef947c5527bdc491b740ec1beecd16547ba28a","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"265bb61fadf48c935f02afcc5a1d774cf27b3008f1abc0e7bbddd32dad9be1dbc7685b759f57991c9876a04e8b5954447989ae05fb814e4edc45d9c59e5fe648","tags":[]}] +[14:14:27.797] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Let's hear some ideas of where is the best place to move to in the States. If you say California you will automatically be banned from Nostr. \nnostr:nevent1qqsykc6nnsduehekm35q0tlqv0a8nu28r5dq0l68nzveuwj58l66hfspz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsyg9s674dg4q88y0w9wcj3aeu8nfjjdrvphsckxdepfy0q3qxghf2s5psgqqqqqqs9c7qkm","created_at":1759428862,"id":"a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","kind":1,"pubkey":"101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","sig":"67aa917fc7cb98d699da7ed04db59c767d86ff81f44ce18c236141878185e2158b83b099f355ad2b24d6ba660514c0cbcf549a647c7080f04fca7c9582c998dc","tags":[["alt","A short note: Let's hear some ideas of where is the best place t..."],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/"],["q","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.damus.io/","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["zap","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/","0.9"],["zap","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/","0.1"]]}] +[14:14:27.858] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Amethyst tips\n\nHow to immediately improve your Nostr experience\nhttps://i.nostr.build/s4SdjbcWRnMTLswX.jpg","created_at":1759428857,"id":"84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"0710709c5a3553e4fb8b74c5af372bff3c6955ccf75c46a82293201d06f68c299e373389c94b27aebe5729b11885296a5c30c1c96942e3470082315f96b8564f","tags":[["alt","A short note: #Amethyst tips\n\nHow to immediately improve your No..."],["t","Amethyst"],["t","amethyst"],["r","https://i.nostr.build/s4SdjbcWRnMTLswX.jpg"],["imeta","url https://i.nostr.build/s4SdjbcWRnMTLswX.jpg","x 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","size 18785","m image/jpeg","dim 1008x413","blurhash ZF7^cUEZ?KSaf8s=I,$-I,X2xcNExbWBWAt8Ris;ImxJImxbWUbExcRis;t8WAoMkBj[oMfij]WB","ox 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","alt "]]}] +[14:14:27.918] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:27.979] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:28.039] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:14:28.100] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BREAKING: ‘AJN Live’ Soars to Number #5 on Top Free Apple News Apps\n\nhttps://www.infowars.com/posts/breaking-ajn-live-climbs-to-number-6-on-top-free-apple-news-apps/\n\n#Zap to support, DM to suggest new feeds.","created_at":1759428832,"id":"124cac29aa7d4a7614118ca102d3507d2e43bf3541b10f16777e24eab8876d7f","kind":1,"pubkey":"957dd3687817abb53e01635fb4fc1c029c2cd49202ec82f416ec240601b371d8","sig":"881e8a792d5def4c6c4424413daecadb97d39acabe23b03edb071025199661405dd35eea8d734a147e8da1ba3c099476ba0ad3ff45d99b350f8e87ea0941ea77","tags":[]}] +[14:14:28.160] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"九州の怒涛のボトルキープ焼酎","created_at":1759428829,"id":"81820adb8a09bfb4eb9fdd4e680e9617bdea7ca73b3289e9422fec70aebe745e","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"6452ae335742237c8b32cb4654aef95e57fc59a03ccd685ce72adce40e0c239478c33173deb05fe14303ca517facf54433e011d95ac62147da565be0eb298bf5","tags":[]}] +[14:14:28.221] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#canineVibes \nhttps://images2.imgbox.com/58/fb/a3o7b6Jp_o.jpg \n#dogstr #dog #Nostr #bestfren","created_at":1759428826,"id":"a94b87102168c932d44042940af94f6618410bdf0e0ee9b42d446969981e2f89","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"6e5fdc96cf7133f2e75e05d79b2199502099e11f7fd2b9f7ac8ffce49dadfe25948036cf553419721c8c598528fc4addec7d4a66a8dad9336211652603aa81a2","tags":[]}] +[14:14:28.281] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0qk58w8xhl2ja2kmzt7jcpvemhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0dec82c33x5ehsmt90q6ry7p5vd5xge3hx5mksupnwym857rpvaukk6m9dvmhqer8wa6hwepsxu6rjd35v34hj6rp89ensvnj096ns0mzwfhkzerrv9ehg0t5wf6k2qg7waehxw309ahx7um5wgkkgetk9emk2mrvdaexgetj9ehx2ap0qy08wumn8ghj7mn0wd68yttsw43zuam9d3kx7unyv4ezumn9wshsxs66av must be on his tractor again.","created_at":1759428823,"id":"e609e8af314956193f0bede702fda80b09469c6fd8079c6aa513e91c812494b7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6e93a0bbea58485a325ce275ffd07d82000232017148dde23f6b20597db88468a4c1fdcde360afe0e641c5548551aea1165a7d2f41461fd5eef061f0c829df85","tags":[["alt","A short note: nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0..."],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"]]}] +[14:14:28.342] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:28.402] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:28.463] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:28.523] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:28.584] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:28.644] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:28.705] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:28.765] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:28.826] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:28.886] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:28.947] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:14:29.007] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:30.710] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:30.710] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:30.710] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:30.710] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:30.862] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","created_at":1759428868,"id":"3b60d8bb7059518a5a326b1f3423916db4261d3724bc8c1c2e4ac6aeadec8d0e","kind":1,"pubkey":"1848313553d37fe4cbd8bad2d6bc6237615d73fca464edb2d1f4355900cf44f6","sig":"6cee9e7870f02e4c79f7ad9e6835d8ef19651898eb4c62b7def3d07379ffd15c2bf7eba66d96959596f5551f54b191f356bfd0d5b8efd530e2f343bd025f1d09","tags":[["alt","A short note: https://video.nostr.build/00a5e6c9fbe9bf575076fac8..."],["e","d9d840ff5aba5f19f3b78f3d5889260c81759f2523290ec6ad1ac30d94370d49","wss://relay.nostr.band/","root","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975"],["p","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975","wss://bitcoiner.social/"],["r","https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4"],["imeta","url https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","x 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","size 396490","m video/mp4","dim 460x816","blurhash ]9JRT}004nt7M{~WoeR*WBj?00-;t7ofoLxtRja$kBazM{t7WDj[WCV[WVt6jtjtIVofoeWBofR+j[ofWCj[ayj[WCj@fQ","ox 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","alt "]]}] +[14:14:30.923] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space News: 'Andromeda' at 25: An optimistic but flawed sci-fi romp cobbled together from the notes of 'Star Trek' creator Gene Roddenberry\nLink: https://www.space.com/entertainment/space-movies-shows/andromeda-at-25-an-optimistic-but-flawed-sci-fi-romp-cobbled-together-from-the-notes-of-star-trek-creator-gene-roddenberry\nSummary: Paying tribute to the 'Star Trek' creator's posthumous space adventure that still resonates with fans today.","created_at":1759428862,"id":"6c44788dbed2053a0c89c0eec3ef947c5527bdc491b740ec1beecd16547ba28a","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"265bb61fadf48c935f02afcc5a1d774cf27b3008f1abc0e7bbddd32dad9be1dbc7685b759f57991c9876a04e8b5954447989ae05fb814e4edc45d9c59e5fe648","tags":[]}] +[14:14:30.983] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Let's hear some ideas of where is the best place to move to in the States. If you say California you will automatically be banned from Nostr. \nnostr:nevent1qqsykc6nnsduehekm35q0tlqv0a8nu28r5dq0l68nzveuwj58l66hfspz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsyg9s674dg4q88y0w9wcj3aeu8nfjjdrvphsckxdepfy0q3qxghf2s5psgqqqqqqs9c7qkm","created_at":1759428862,"id":"a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","kind":1,"pubkey":"101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","sig":"67aa917fc7cb98d699da7ed04db59c767d86ff81f44ce18c236141878185e2158b83b099f355ad2b24d6ba660514c0cbcf549a647c7080f04fca7c9582c998dc","tags":[["alt","A short note: Let's hear some ideas of where is the best place t..."],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/"],["q","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.damus.io/","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["zap","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/","0.9"],["zap","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/","0.1"]]}] +[14:14:31.044] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Amethyst tips\n\nHow to immediately improve your Nostr experience\nhttps://i.nostr.build/s4SdjbcWRnMTLswX.jpg","created_at":1759428857,"id":"84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"0710709c5a3553e4fb8b74c5af372bff3c6955ccf75c46a82293201d06f68c299e373389c94b27aebe5729b11885296a5c30c1c96942e3470082315f96b8564f","tags":[["alt","A short note: #Amethyst tips\n\nHow to immediately improve your No..."],["t","Amethyst"],["t","amethyst"],["r","https://i.nostr.build/s4SdjbcWRnMTLswX.jpg"],["imeta","url https://i.nostr.build/s4SdjbcWRnMTLswX.jpg","x 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","size 18785","m image/jpeg","dim 1008x413","blurhash ZF7^cUEZ?KSaf8s=I,$-I,X2xcNExbWBWAt8Ris;ImxJImxbWUbExcRis;t8WAoMkBj[oMfij]WB","ox 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","alt "]]}] +[14:14:31.105] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:31.165] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:31.226] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:14:31.286] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BREAKING: ‘AJN Live’ Soars to Number #5 on Top Free Apple News Apps\n\nhttps://www.infowars.com/posts/breaking-ajn-live-climbs-to-number-6-on-top-free-apple-news-apps/\n\n#Zap to support, DM to suggest new feeds.","created_at":1759428832,"id":"124cac29aa7d4a7614118ca102d3507d2e43bf3541b10f16777e24eab8876d7f","kind":1,"pubkey":"957dd3687817abb53e01635fb4fc1c029c2cd49202ec82f416ec240601b371d8","sig":"881e8a792d5def4c6c4424413daecadb97d39acabe23b03edb071025199661405dd35eea8d734a147e8da1ba3c099476ba0ad3ff45d99b350f8e87ea0941ea77","tags":[]}] +[14:14:31.347] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"九州の怒涛のボトルキープ焼酎","created_at":1759428829,"id":"81820adb8a09bfb4eb9fdd4e680e9617bdea7ca73b3289e9422fec70aebe745e","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"6452ae335742237c8b32cb4654aef95e57fc59a03ccd685ce72adce40e0c239478c33173deb05fe14303ca517facf54433e011d95ac62147da565be0eb298bf5","tags":[]}] +[14:14:31.407] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#canineVibes \nhttps://images2.imgbox.com/58/fb/a3o7b6Jp_o.jpg \n#dogstr #dog #Nostr #bestfren","created_at":1759428826,"id":"a94b87102168c932d44042940af94f6618410bdf0e0ee9b42d446969981e2f89","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"6e5fdc96cf7133f2e75e05d79b2199502099e11f7fd2b9f7ac8ffce49dadfe25948036cf553419721c8c598528fc4addec7d4a66a8dad9336211652603aa81a2","tags":[]}] +[14:14:31.468] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:31.528] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:31.589] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:31.650] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:31.710] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:31.771] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:31.831] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:31.892] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:31.952] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:32.013] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:32.073] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:14:32.099] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:33.796] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:33.796] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:33.796] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:33.796] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:33.948] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"自分増改築されまくったホテルとか探検したいです","created_at":1759428872,"id":"bcdfa3bc577f65832f0ff5a6fc3ee6d3b178903e4cb6752b9a4971b3e55a6d99","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6f0cb9739be65c682590ac3e864d918b2aeec1e997bb934cb53604455da7e2ac63fbebc2f1a48c3bb9694d2379aa55765cf5fe7b8741b67560cc003bde41713d","tags":[]}] +[14:14:34.009] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","created_at":1759428868,"id":"3b60d8bb7059518a5a326b1f3423916db4261d3724bc8c1c2e4ac6aeadec8d0e","kind":1,"pubkey":"1848313553d37fe4cbd8bad2d6bc6237615d73fca464edb2d1f4355900cf44f6","sig":"6cee9e7870f02e4c79f7ad9e6835d8ef19651898eb4c62b7def3d07379ffd15c2bf7eba66d96959596f5551f54b191f356bfd0d5b8efd530e2f343bd025f1d09","tags":[["alt","A short note: https://video.nostr.build/00a5e6c9fbe9bf575076fac8..."],["e","d9d840ff5aba5f19f3b78f3d5889260c81759f2523290ec6ad1ac30d94370d49","wss://relay.nostr.band/","root","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975"],["p","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975","wss://bitcoiner.social/"],["r","https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4"],["imeta","url https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","x 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","size 396490","m video/mp4","dim 460x816","blurhash ]9JRT}004nt7M{~WoeR*WBj?00-;t7ofoLxtRja$kBazM{t7WDj[WCV[WVt6jtjtIVofoeWBofR+j[ofWCj[ayj[WCj@fQ","ox 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","alt "]]}] +[14:14:34.069] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space News: 'Andromeda' at 25: An optimistic but flawed sci-fi romp cobbled together from the notes of 'Star Trek' creator Gene Roddenberry\nLink: https://www.space.com/entertainment/space-movies-shows/andromeda-at-25-an-optimistic-but-flawed-sci-fi-romp-cobbled-together-from-the-notes-of-star-trek-creator-gene-roddenberry\nSummary: Paying tribute to the 'Star Trek' creator's posthumous space adventure that still resonates with fans today.","created_at":1759428862,"id":"6c44788dbed2053a0c89c0eec3ef947c5527bdc491b740ec1beecd16547ba28a","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"265bb61fadf48c935f02afcc5a1d774cf27b3008f1abc0e7bbddd32dad9be1dbc7685b759f57991c9876a04e8b5954447989ae05fb814e4edc45d9c59e5fe648","tags":[]}] +[14:14:34.130] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Let's hear some ideas of where is the best place to move to in the States. If you say California you will automatically be banned from Nostr. \nnostr:nevent1qqsykc6nnsduehekm35q0tlqv0a8nu28r5dq0l68nzveuwj58l66hfspz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsyg9s674dg4q88y0w9wcj3aeu8nfjjdrvphsckxdepfy0q3qxghf2s5psgqqqqqqs9c7qkm","created_at":1759428862,"id":"a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","kind":1,"pubkey":"101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","sig":"67aa917fc7cb98d699da7ed04db59c767d86ff81f44ce18c236141878185e2158b83b099f355ad2b24d6ba660514c0cbcf549a647c7080f04fca7c9582c998dc","tags":[["alt","A short note: Let's hear some ideas of where is the best place t..."],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/"],["q","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.damus.io/","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["zap","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/","0.9"],["zap","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/","0.1"]]}] +[14:14:34.190] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Amethyst tips\n\nHow to immediately improve your Nostr experience\nhttps://i.nostr.build/s4SdjbcWRnMTLswX.jpg","created_at":1759428857,"id":"84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"0710709c5a3553e4fb8b74c5af372bff3c6955ccf75c46a82293201d06f68c299e373389c94b27aebe5729b11885296a5c30c1c96942e3470082315f96b8564f","tags":[["alt","A short note: #Amethyst tips\n\nHow to immediately improve your No..."],["t","Amethyst"],["t","amethyst"],["r","https://i.nostr.build/s4SdjbcWRnMTLswX.jpg"],["imeta","url https://i.nostr.build/s4SdjbcWRnMTLswX.jpg","x 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","size 18785","m image/jpeg","dim 1008x413","blurhash ZF7^cUEZ?KSaf8s=I,$-I,X2xcNExbWBWAt8Ris;ImxJImxbWUbExcRis;t8WAoMkBj[oMfij]WB","ox 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","alt "]]}] +[14:14:34.251] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:34.311] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:34.372] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:14:34.432] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BREAKING: ‘AJN Live’ Soars to Number #5 on Top Free Apple News Apps\n\nhttps://www.infowars.com/posts/breaking-ajn-live-climbs-to-number-6-on-top-free-apple-news-apps/\n\n#Zap to support, DM to suggest new feeds.","created_at":1759428832,"id":"124cac29aa7d4a7614118ca102d3507d2e43bf3541b10f16777e24eab8876d7f","kind":1,"pubkey":"957dd3687817abb53e01635fb4fc1c029c2cd49202ec82f416ec240601b371d8","sig":"881e8a792d5def4c6c4424413daecadb97d39acabe23b03edb071025199661405dd35eea8d734a147e8da1ba3c099476ba0ad3ff45d99b350f8e87ea0941ea77","tags":[]}] +[14:14:34.493] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"九州の怒涛のボトルキープ焼酎","created_at":1759428829,"id":"81820adb8a09bfb4eb9fdd4e680e9617bdea7ca73b3289e9422fec70aebe745e","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"6452ae335742237c8b32cb4654aef95e57fc59a03ccd685ce72adce40e0c239478c33173deb05fe14303ca517facf54433e011d95ac62147da565be0eb298bf5","tags":[]}] +[14:14:34.554] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:34.614] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:34.675] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:34.735] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:34.796] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:34.857] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:34.917] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:34.978] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:35.038] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:35.099] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:35.159] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:14:35.220] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:36.918] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:36.919] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:36.919] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:36.919] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:37.070] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space Breaking News: Detection of phosphine in a brown dwarf atmosphere raises more questions\nLink: https://phys.org/news/2025-10-phosphine-brown-dwarf-atmosphere.html\nSummary: Phosphorus is one of six key elements necessary for life on Earth. When combined with hydrogen, phosphorus forms the molecule phosphine (PH3), an explosive, highly toxic gas.","created_at":1759428874,"id":"0d8f79a20ae4b5c2740918da828d504d03a2b76c6a94ec81297eb02de4ba2056","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"358c479024989c5e6d09d1f2f95f4203fd1a80aaea1f9efdf9fc5a10d114bd428a87ca0632d61b27f2da04e9797b3a7c3e36faee853f7e39ad585113d3d8661a","tags":[]}] +[14:14:37.131] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"自分増改築されまくったホテルとか探検したいです","created_at":1759428872,"id":"bcdfa3bc577f65832f0ff5a6fc3ee6d3b178903e4cb6752b9a4971b3e55a6d99","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6f0cb9739be65c682590ac3e864d918b2aeec1e997bb934cb53604455da7e2ac63fbebc2f1a48c3bb9694d2379aa55765cf5fe7b8741b67560cc003bde41713d","tags":[]}] +[14:14:37.156] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","created_at":1759428868,"id":"3b60d8bb7059518a5a326b1f3423916db4261d3724bc8c1c2e4ac6aeadec8d0e","kind":1,"pubkey":"1848313553d37fe4cbd8bad2d6bc6237615d73fca464edb2d1f4355900cf44f6","sig":"6cee9e7870f02e4c79f7ad9e6835d8ef19651898eb4c62b7def3d07379ffd15c2bf7eba66d96959596f5551f54b191f356bfd0d5b8efd530e2f343bd025f1d09","tags":[["alt","A short note: https://video.nostr.build/00a5e6c9fbe9bf575076fac8..."],["e","d9d840ff5aba5f19f3b78f3d5889260c81759f2523290ec6ad1ac30d94370d49","wss://relay.nostr.band/","root","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975"],["p","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975","wss://bitcoiner.social/"],["r","https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4"],["imeta","url https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","x 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","size 396490","m video/mp4","dim 460x816","blurhash ]9JRT}004nt7M{~WoeR*WBj?00-;t7ofoLxtRja$kBazM{t7WDj[WCV[WVt6jtjtIVofoeWBofR+j[ofWCj[ayj[WCj@fQ","ox 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","alt "]]}] +[14:14:37.217] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space News: 'Andromeda' at 25: An optimistic but flawed sci-fi romp cobbled together from the notes of 'Star Trek' creator Gene Roddenberry\nLink: https://www.space.com/entertainment/space-movies-shows/andromeda-at-25-an-optimistic-but-flawed-sci-fi-romp-cobbled-together-from-the-notes-of-star-trek-creator-gene-roddenberry\nSummary: Paying tribute to the 'Star Trek' creator's posthumous space adventure that still resonates with fans today.","created_at":1759428862,"id":"6c44788dbed2053a0c89c0eec3ef947c5527bdc491b740ec1beecd16547ba28a","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"265bb61fadf48c935f02afcc5a1d774cf27b3008f1abc0e7bbddd32dad9be1dbc7685b759f57991c9876a04e8b5954447989ae05fb814e4edc45d9c59e5fe648","tags":[]}] +[14:14:37.278] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Let's hear some ideas of where is the best place to move to in the States. If you say California you will automatically be banned from Nostr. \nnostr:nevent1qqsykc6nnsduehekm35q0tlqv0a8nu28r5dq0l68nzveuwj58l66hfspz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsyg9s674dg4q88y0w9wcj3aeu8nfjjdrvphsckxdepfy0q3qxghf2s5psgqqqqqqs9c7qkm","created_at":1759428862,"id":"a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","kind":1,"pubkey":"101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","sig":"67aa917fc7cb98d699da7ed04db59c767d86ff81f44ce18c236141878185e2158b83b099f355ad2b24d6ba660514c0cbcf549a647c7080f04fca7c9582c998dc","tags":[["alt","A short note: Let's hear some ideas of where is the best place t..."],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/"],["q","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.damus.io/","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["zap","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/","0.9"],["zap","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/","0.1"]]}] +[14:14:37.338] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Amethyst tips\n\nHow to immediately improve your Nostr experience\nhttps://i.nostr.build/s4SdjbcWRnMTLswX.jpg","created_at":1759428857,"id":"84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"0710709c5a3553e4fb8b74c5af372bff3c6955ccf75c46a82293201d06f68c299e373389c94b27aebe5729b11885296a5c30c1c96942e3470082315f96b8564f","tags":[["alt","A short note: #Amethyst tips\n\nHow to immediately improve your No..."],["t","Amethyst"],["t","amethyst"],["r","https://i.nostr.build/s4SdjbcWRnMTLswX.jpg"],["imeta","url https://i.nostr.build/s4SdjbcWRnMTLswX.jpg","x 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","size 18785","m image/jpeg","dim 1008x413","blurhash ZF7^cUEZ?KSaf8s=I,$-I,X2xcNExbWBWAt8Ris;ImxJImxbWUbExcRis;t8WAoMkBj[oMfij]WB","ox 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","alt "]]}] +[14:14:37.399] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:37.459] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:37.520] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:14:37.580] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BREAKING: ‘AJN Live’ Soars to Number #5 on Top Free Apple News Apps\n\nhttps://www.infowars.com/posts/breaking-ajn-live-climbs-to-number-6-on-top-free-apple-news-apps/\n\n#Zap to support, DM to suggest new feeds.","created_at":1759428832,"id":"124cac29aa7d4a7614118ca102d3507d2e43bf3541b10f16777e24eab8876d7f","kind":1,"pubkey":"957dd3687817abb53e01635fb4fc1c029c2cd49202ec82f416ec240601b371d8","sig":"881e8a792d5def4c6c4424413daecadb97d39acabe23b03edb071025199661405dd35eea8d734a147e8da1ba3c099476ba0ad3ff45d99b350f8e87ea0941ea77","tags":[]}] +[14:14:37.641] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:37.701] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:37.762] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:37.822] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:37.883] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:37.943] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:38.004] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:38.064] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:38.125] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:38.186] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:38.246] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:14:38.307] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:40.003] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:40.003] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:40.004] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:40.004] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:40.155] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space Breaking News: Detection of phosphine in a brown dwarf atmosphere raises more questions\nLink: https://phys.org/news/2025-10-phosphine-brown-dwarf-atmosphere.html\nSummary: Phosphorus is one of six key elements necessary for life on Earth. When combined with hydrogen, phosphorus forms the molecule phosphine (PH3), an explosive, highly toxic gas.","created_at":1759428874,"id":"0d8f79a20ae4b5c2740918da828d504d03a2b76c6a94ec81297eb02de4ba2056","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"358c479024989c5e6d09d1f2f95f4203fd1a80aaea1f9efdf9fc5a10d114bd428a87ca0632d61b27f2da04e9797b3a7c3e36faee853f7e39ad585113d3d8661a","tags":[]}] +[14:14:40.215] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"自分増改築されまくったホテルとか探検したいです","created_at":1759428872,"id":"bcdfa3bc577f65832f0ff5a6fc3ee6d3b178903e4cb6752b9a4971b3e55a6d99","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6f0cb9739be65c682590ac3e864d918b2aeec1e997bb934cb53604455da7e2ac63fbebc2f1a48c3bb9694d2379aa55765cf5fe7b8741b67560cc003bde41713d","tags":[]}] +[14:14:40.275] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","created_at":1759428868,"id":"3b60d8bb7059518a5a326b1f3423916db4261d3724bc8c1c2e4ac6aeadec8d0e","kind":1,"pubkey":"1848313553d37fe4cbd8bad2d6bc6237615d73fca464edb2d1f4355900cf44f6","sig":"6cee9e7870f02e4c79f7ad9e6835d8ef19651898eb4c62b7def3d07379ffd15c2bf7eba66d96959596f5551f54b191f356bfd0d5b8efd530e2f343bd025f1d09","tags":[["alt","A short note: https://video.nostr.build/00a5e6c9fbe9bf575076fac8..."],["e","d9d840ff5aba5f19f3b78f3d5889260c81759f2523290ec6ad1ac30d94370d49","wss://relay.nostr.band/","root","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975"],["p","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975","wss://bitcoiner.social/"],["r","https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4"],["imeta","url https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","x 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","size 396490","m video/mp4","dim 460x816","blurhash ]9JRT}004nt7M{~WoeR*WBj?00-;t7ofoLxtRja$kBazM{t7WDj[WCV[WVt6jtjtIVofoeWBofR+j[ofWCj[ayj[WCj@fQ","ox 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","alt "]]}] +[14:14:40.336] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space News: 'Andromeda' at 25: An optimistic but flawed sci-fi romp cobbled together from the notes of 'Star Trek' creator Gene Roddenberry\nLink: https://www.space.com/entertainment/space-movies-shows/andromeda-at-25-an-optimistic-but-flawed-sci-fi-romp-cobbled-together-from-the-notes-of-star-trek-creator-gene-roddenberry\nSummary: Paying tribute to the 'Star Trek' creator's posthumous space adventure that still resonates with fans today.","created_at":1759428862,"id":"6c44788dbed2053a0c89c0eec3ef947c5527bdc491b740ec1beecd16547ba28a","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"265bb61fadf48c935f02afcc5a1d774cf27b3008f1abc0e7bbddd32dad9be1dbc7685b759f57991c9876a04e8b5954447989ae05fb814e4edc45d9c59e5fe648","tags":[]}] +[14:14:40.397] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Let's hear some ideas of where is the best place to move to in the States. If you say California you will automatically be banned from Nostr. \nnostr:nevent1qqsykc6nnsduehekm35q0tlqv0a8nu28r5dq0l68nzveuwj58l66hfspz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsyg9s674dg4q88y0w9wcj3aeu8nfjjdrvphsckxdepfy0q3qxghf2s5psgqqqqqqs9c7qkm","created_at":1759428862,"id":"a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","kind":1,"pubkey":"101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","sig":"67aa917fc7cb98d699da7ed04db59c767d86ff81f44ce18c236141878185e2158b83b099f355ad2b24d6ba660514c0cbcf549a647c7080f04fca7c9582c998dc","tags":[["alt","A short note: Let's hear some ideas of where is the best place t..."],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/"],["q","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.damus.io/","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["zap","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/","0.9"],["zap","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/","0.1"]]}] +[14:14:40.457] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Amethyst tips\n\nHow to immediately improve your Nostr experience\nhttps://i.nostr.build/s4SdjbcWRnMTLswX.jpg","created_at":1759428857,"id":"84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"0710709c5a3553e4fb8b74c5af372bff3c6955ccf75c46a82293201d06f68c299e373389c94b27aebe5729b11885296a5c30c1c96942e3470082315f96b8564f","tags":[["alt","A short note: #Amethyst tips\n\nHow to immediately improve your No..."],["t","Amethyst"],["t","amethyst"],["r","https://i.nostr.build/s4SdjbcWRnMTLswX.jpg"],["imeta","url https://i.nostr.build/s4SdjbcWRnMTLswX.jpg","x 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","size 18785","m image/jpeg","dim 1008x413","blurhash ZF7^cUEZ?KSaf8s=I,$-I,X2xcNExbWBWAt8Ris;ImxJImxbWUbExcRis;t8WAoMkBj[oMfij]WB","ox 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","alt "]]}] +[14:14:40.518] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:40.578] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:40.639] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:14:40.699] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BREAKING: ‘AJN Live’ Soars to Number #5 on Top Free Apple News Apps\n\nhttps://www.infowars.com/posts/breaking-ajn-live-climbs-to-number-6-on-top-free-apple-news-apps/\n\n#Zap to support, DM to suggest new feeds.","created_at":1759428832,"id":"124cac29aa7d4a7614118ca102d3507d2e43bf3541b10f16777e24eab8876d7f","kind":1,"pubkey":"957dd3687817abb53e01635fb4fc1c029c2cd49202ec82f416ec240601b371d8","sig":"881e8a792d5def4c6c4424413daecadb97d39acabe23b03edb071025199661405dd35eea8d734a147e8da1ba3c099476ba0ad3ff45d99b350f8e87ea0941ea77","tags":[]}] +[14:14:40.760] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:40.820] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:40.881] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:40.941] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:41.002] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:41.063] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:41.123] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:41.184] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:41.244] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:41.305] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:41.365] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:14:41.426] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:43.086] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:43.086] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:43.086] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:43.087] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:43.237] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"酒飲みすぎると一生飲まないぞって気持ちになるのに気づいたら飲んでるのなんなんだろう","created_at":1759428882,"id":"4e5f918acf70f4518af26742e24053a97107b008e3039567a013a64f04a0339e","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"8b92c8d1684fcf17906945271e3d0b528cc2faea55a81e3a7274b45f9d3f5c56d4e0909b94db5c81e64f8789474bdf24d1166176fb9b2ffa1f93e4ea01d1ed0d","tags":[]}] +[14:14:43.298] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space Breaking News: Detection of phosphine in a brown dwarf atmosphere raises more questions\nLink: https://phys.org/news/2025-10-phosphine-brown-dwarf-atmosphere.html\nSummary: Phosphorus is one of six key elements necessary for life on Earth. When combined with hydrogen, phosphorus forms the molecule phosphine (PH3), an explosive, highly toxic gas.","created_at":1759428874,"id":"0d8f79a20ae4b5c2740918da828d504d03a2b76c6a94ec81297eb02de4ba2056","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"358c479024989c5e6d09d1f2f95f4203fd1a80aaea1f9efdf9fc5a10d114bd428a87ca0632d61b27f2da04e9797b3a7c3e36faee853f7e39ad585113d3d8661a","tags":[]}] +[14:14:43.358] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"自分増改築されまくったホテルとか探検したいです","created_at":1759428872,"id":"bcdfa3bc577f65832f0ff5a6fc3ee6d3b178903e4cb6752b9a4971b3e55a6d99","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6f0cb9739be65c682590ac3e864d918b2aeec1e997bb934cb53604455da7e2ac63fbebc2f1a48c3bb9694d2379aa55765cf5fe7b8741b67560cc003bde41713d","tags":[]}] +[14:14:43.419] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","created_at":1759428868,"id":"3b60d8bb7059518a5a326b1f3423916db4261d3724bc8c1c2e4ac6aeadec8d0e","kind":1,"pubkey":"1848313553d37fe4cbd8bad2d6bc6237615d73fca464edb2d1f4355900cf44f6","sig":"6cee9e7870f02e4c79f7ad9e6835d8ef19651898eb4c62b7def3d07379ffd15c2bf7eba66d96959596f5551f54b191f356bfd0d5b8efd530e2f343bd025f1d09","tags":[["alt","A short note: https://video.nostr.build/00a5e6c9fbe9bf575076fac8..."],["e","d9d840ff5aba5f19f3b78f3d5889260c81759f2523290ec6ad1ac30d94370d49","wss://relay.nostr.band/","root","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975"],["p","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975","wss://bitcoiner.social/"],["r","https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4"],["imeta","url https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","x 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","size 396490","m video/mp4","dim 460x816","blurhash ]9JRT}004nt7M{~WoeR*WBj?00-;t7ofoLxtRja$kBazM{t7WDj[WCV[WVt6jtjtIVofoeWBofR+j[ofWCj[ayj[WCj@fQ","ox 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","alt "]]}] +[14:14:43.479] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space News: 'Andromeda' at 25: An optimistic but flawed sci-fi romp cobbled together from the notes of 'Star Trek' creator Gene Roddenberry\nLink: https://www.space.com/entertainment/space-movies-shows/andromeda-at-25-an-optimistic-but-flawed-sci-fi-romp-cobbled-together-from-the-notes-of-star-trek-creator-gene-roddenberry\nSummary: Paying tribute to the 'Star Trek' creator's posthumous space adventure that still resonates with fans today.","created_at":1759428862,"id":"6c44788dbed2053a0c89c0eec3ef947c5527bdc491b740ec1beecd16547ba28a","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"265bb61fadf48c935f02afcc5a1d774cf27b3008f1abc0e7bbddd32dad9be1dbc7685b759f57991c9876a04e8b5954447989ae05fb814e4edc45d9c59e5fe648","tags":[]}] +[14:14:43.540] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Let's hear some ideas of where is the best place to move to in the States. If you say California you will automatically be banned from Nostr. \nnostr:nevent1qqsykc6nnsduehekm35q0tlqv0a8nu28r5dq0l68nzveuwj58l66hfspz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsyg9s674dg4q88y0w9wcj3aeu8nfjjdrvphsckxdepfy0q3qxghf2s5psgqqqqqqs9c7qkm","created_at":1759428862,"id":"a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","kind":1,"pubkey":"101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","sig":"67aa917fc7cb98d699da7ed04db59c767d86ff81f44ce18c236141878185e2158b83b099f355ad2b24d6ba660514c0cbcf549a647c7080f04fca7c9582c998dc","tags":[["alt","A short note: Let's hear some ideas of where is the best place t..."],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/"],["q","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.damus.io/","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["zap","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/","0.9"],["zap","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/","0.1"]]}] +[14:14:43.600] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Amethyst tips\n\nHow to immediately improve your Nostr experience\nhttps://i.nostr.build/s4SdjbcWRnMTLswX.jpg","created_at":1759428857,"id":"84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"0710709c5a3553e4fb8b74c5af372bff3c6955ccf75c46a82293201d06f68c299e373389c94b27aebe5729b11885296a5c30c1c96942e3470082315f96b8564f","tags":[["alt","A short note: #Amethyst tips\n\nHow to immediately improve your No..."],["t","Amethyst"],["t","amethyst"],["r","https://i.nostr.build/s4SdjbcWRnMTLswX.jpg"],["imeta","url https://i.nostr.build/s4SdjbcWRnMTLswX.jpg","x 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","size 18785","m image/jpeg","dim 1008x413","blurhash ZF7^cUEZ?KSaf8s=I,$-I,X2xcNExbWBWAt8Ris;ImxJImxbWUbExcRis;t8WAoMkBj[oMfij]WB","ox 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","alt "]]}] +[14:14:43.661] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:43.721] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:43.782] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:14:43.842] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:43.903] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:43.964] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:44.024] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:44.085] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:44.145] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:44.206] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:44.266] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:44.327] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:44.387] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:44.448] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:44.509] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:46.205] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:46.205] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:46.205] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:46.205] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:46.357] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📰 Bitcoin clears $120K as onchain data points to a new BTC accumulation phase\nBitcoin cleared the $120,000 level for the first time since August as long-term selling cools and short-term holders stabilize, hinting at a fresh accumulation phase.\nRead more: https://cointelegraph.com/news/bitcoin-clears-dollar120k-as-onchain-data-points-to-a-new-btc-accumulation-phase?utm_source=rss_feed&utm_medium=rss%3F_t%3D1759428542331%26_nocache%3D1759428542331%26vfff%3D1759428542&utm_campaign=rss_partner_inbound\n#bitcoin #btc #news\n📷 Image: https://images.cointelegraph.com/images/528_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS91cGxvYWRzLzIwMjUtMDIvMDE5NGUyZDQtNGM3Ni03NzgzLTljZTAtOWFmNTYxOGJkZGFi.jpg","created_at":1759428884,"id":"f91711b01933d3dc0a3b0d9b5e89faeb71d70800fd9f04011fa6d64ecb086fef","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"95181c979d843f0273cd4025b089f7c3ad9b25c5e0c79ef0b69d4c91ba22fd845d82e2ca43ee7e15cadae65bed90e8e6ed03e13c3b111f1c6281ab4d46eb30af","tags":[]}] +[14:14:46.418] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"酒飲みすぎると一生飲まないぞって気持ちになるのに気づいたら飲んでるのなんなんだろう","created_at":1759428882,"id":"4e5f918acf70f4518af26742e24053a97107b008e3039567a013a64f04a0339e","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"8b92c8d1684fcf17906945271e3d0b528cc2faea55a81e3a7274b45f9d3f5c56d4e0909b94db5c81e64f8789474bdf24d1166176fb9b2ffa1f93e4ea01d1ed0d","tags":[]}] +[14:14:46.478] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space Breaking News: Detection of phosphine in a brown dwarf atmosphere raises more questions\nLink: https://phys.org/news/2025-10-phosphine-brown-dwarf-atmosphere.html\nSummary: Phosphorus is one of six key elements necessary for life on Earth. When combined with hydrogen, phosphorus forms the molecule phosphine (PH3), an explosive, highly toxic gas.","created_at":1759428874,"id":"0d8f79a20ae4b5c2740918da828d504d03a2b76c6a94ec81297eb02de4ba2056","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"358c479024989c5e6d09d1f2f95f4203fd1a80aaea1f9efdf9fc5a10d114bd428a87ca0632d61b27f2da04e9797b3a7c3e36faee853f7e39ad585113d3d8661a","tags":[]}] +[14:14:46.539] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"自分増改築されまくったホテルとか探検したいです","created_at":1759428872,"id":"bcdfa3bc577f65832f0ff5a6fc3ee6d3b178903e4cb6752b9a4971b3e55a6d99","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6f0cb9739be65c682590ac3e864d918b2aeec1e997bb934cb53604455da7e2ac63fbebc2f1a48c3bb9694d2379aa55765cf5fe7b8741b67560cc003bde41713d","tags":[]}] +[14:14:46.599] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","created_at":1759428868,"id":"3b60d8bb7059518a5a326b1f3423916db4261d3724bc8c1c2e4ac6aeadec8d0e","kind":1,"pubkey":"1848313553d37fe4cbd8bad2d6bc6237615d73fca464edb2d1f4355900cf44f6","sig":"6cee9e7870f02e4c79f7ad9e6835d8ef19651898eb4c62b7def3d07379ffd15c2bf7eba66d96959596f5551f54b191f356bfd0d5b8efd530e2f343bd025f1d09","tags":[["alt","A short note: https://video.nostr.build/00a5e6c9fbe9bf575076fac8..."],["e","d9d840ff5aba5f19f3b78f3d5889260c81759f2523290ec6ad1ac30d94370d49","wss://relay.nostr.band/","root","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975"],["p","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975","wss://bitcoiner.social/"],["r","https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4"],["imeta","url https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","x 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","size 396490","m video/mp4","dim 460x816","blurhash ]9JRT}004nt7M{~WoeR*WBj?00-;t7ofoLxtRja$kBazM{t7WDj[WCV[WVt6jtjtIVofoeWBofR+j[ofWCj[ayj[WCj@fQ","ox 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","alt "]]}] +[14:14:46.660] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space News: 'Andromeda' at 25: An optimistic but flawed sci-fi romp cobbled together from the notes of 'Star Trek' creator Gene Roddenberry\nLink: https://www.space.com/entertainment/space-movies-shows/andromeda-at-25-an-optimistic-but-flawed-sci-fi-romp-cobbled-together-from-the-notes-of-star-trek-creator-gene-roddenberry\nSummary: Paying tribute to the 'Star Trek' creator's posthumous space adventure that still resonates with fans today.","created_at":1759428862,"id":"6c44788dbed2053a0c89c0eec3ef947c5527bdc491b740ec1beecd16547ba28a","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"265bb61fadf48c935f02afcc5a1d774cf27b3008f1abc0e7bbddd32dad9be1dbc7685b759f57991c9876a04e8b5954447989ae05fb814e4edc45d9c59e5fe648","tags":[]}] +[14:14:46.721] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Let's hear some ideas of where is the best place to move to in the States. If you say California you will automatically be banned from Nostr. \nnostr:nevent1qqsykc6nnsduehekm35q0tlqv0a8nu28r5dq0l68nzveuwj58l66hfspz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsyg9s674dg4q88y0w9wcj3aeu8nfjjdrvphsckxdepfy0q3qxghf2s5psgqqqqqqs9c7qkm","created_at":1759428862,"id":"a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","kind":1,"pubkey":"101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","sig":"67aa917fc7cb98d699da7ed04db59c767d86ff81f44ce18c236141878185e2158b83b099f355ad2b24d6ba660514c0cbcf549a647c7080f04fca7c9582c998dc","tags":[["alt","A short note: Let's hear some ideas of where is the best place t..."],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/"],["q","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.damus.io/","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["zap","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/","0.9"],["zap","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/","0.1"]]}] +[14:14:46.781] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Amethyst tips\n\nHow to immediately improve your Nostr experience\nhttps://i.nostr.build/s4SdjbcWRnMTLswX.jpg","created_at":1759428857,"id":"84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"0710709c5a3553e4fb8b74c5af372bff3c6955ccf75c46a82293201d06f68c299e373389c94b27aebe5729b11885296a5c30c1c96942e3470082315f96b8564f","tags":[["alt","A short note: #Amethyst tips\n\nHow to immediately improve your No..."],["t","Amethyst"],["t","amethyst"],["r","https://i.nostr.build/s4SdjbcWRnMTLswX.jpg"],["imeta","url https://i.nostr.build/s4SdjbcWRnMTLswX.jpg","x 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","size 18785","m image/jpeg","dim 1008x413","blurhash ZF7^cUEZ?KSaf8s=I,$-I,X2xcNExbWBWAt8Ris;ImxJImxbWUbExcRis;t8WAoMkBj[oMfij]WB","ox 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","alt "]]}] +[14:14:46.842] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:46.902] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:46.963] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:47.023] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:47.084] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:47.109] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:47.170] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:47.230] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:47.291] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:47.351] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:47.412] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:47.473] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:47.533] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:47.593] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:50.268] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:50.268] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:50.268] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:50.268] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:50.420] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💡 Bitcoin Quiz:\nWhat is a block in Bitcoin?\n#bitcoin #quiz","created_at":1759428886,"id":"e0f207d07ab6cb382a79d7ae1009cf67b62596694e1f8bbaf846849c8705fd79","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"467e7af4fa35a415e8ee1dc0e385b7dc263defef48d7f5169d2f3f44414a8afb74eab69823d0292d3f07e01452b64162ad0900958e64973310ca26f2a52c3835","tags":[]}] +[14:14:50.480] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📰 Bitcoin clears $120K as onchain data points to a new BTC accumulation phase\nBitcoin cleared the $120,000 level for the first time since August as long-term selling cools and short-term holders stabilize, hinting at a fresh accumulation phase.\nRead more: https://cointelegraph.com/news/bitcoin-clears-dollar120k-as-onchain-data-points-to-a-new-btc-accumulation-phase?utm_source=rss_feed&utm_medium=rss%3F_t%3D1759428542331%26_nocache%3D1759428542331%26vfff%3D1759428542&utm_campaign=rss_partner_inbound\n#bitcoin #btc #news\n📷 Image: https://images.cointelegraph.com/images/528_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS91cGxvYWRzLzIwMjUtMDIvMDE5NGUyZDQtNGM3Ni03NzgzLTljZTAtOWFmNTYxOGJkZGFi.jpg","created_at":1759428884,"id":"f91711b01933d3dc0a3b0d9b5e89faeb71d70800fd9f04011fa6d64ecb086fef","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"95181c979d843f0273cd4025b089f7c3ad9b25c5e0c79ef0b69d4c91ba22fd845d82e2ca43ee7e15cadae65bed90e8e6ed03e13c3b111f1c6281ab4d46eb30af","tags":[]}] +[14:14:50.541] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"酒飲みすぎると一生飲まないぞって気持ちになるのに気づいたら飲んでるのなんなんだろう","created_at":1759428882,"id":"4e5f918acf70f4518af26742e24053a97107b008e3039567a013a64f04a0339e","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"8b92c8d1684fcf17906945271e3d0b528cc2faea55a81e3a7274b45f9d3f5c56d4e0909b94db5c81e64f8789474bdf24d1166176fb9b2ffa1f93e4ea01d1ed0d","tags":[]}] +[14:14:50.601] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space Breaking News: Detection of phosphine in a brown dwarf atmosphere raises more questions\nLink: https://phys.org/news/2025-10-phosphine-brown-dwarf-atmosphere.html\nSummary: Phosphorus is one of six key elements necessary for life on Earth. When combined with hydrogen, phosphorus forms the molecule phosphine (PH3), an explosive, highly toxic gas.","created_at":1759428874,"id":"0d8f79a20ae4b5c2740918da828d504d03a2b76c6a94ec81297eb02de4ba2056","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"358c479024989c5e6d09d1f2f95f4203fd1a80aaea1f9efdf9fc5a10d114bd428a87ca0632d61b27f2da04e9797b3a7c3e36faee853f7e39ad585113d3d8661a","tags":[]}] +[14:14:50.662] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"自分増改築されまくったホテルとか探検したいです","created_at":1759428872,"id":"bcdfa3bc577f65832f0ff5a6fc3ee6d3b178903e4cb6752b9a4971b3e55a6d99","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6f0cb9739be65c682590ac3e864d918b2aeec1e997bb934cb53604455da7e2ac63fbebc2f1a48c3bb9694d2379aa55765cf5fe7b8741b67560cc003bde41713d","tags":[]}] +[14:14:50.722] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","created_at":1759428868,"id":"3b60d8bb7059518a5a326b1f3423916db4261d3724bc8c1c2e4ac6aeadec8d0e","kind":1,"pubkey":"1848313553d37fe4cbd8bad2d6bc6237615d73fca464edb2d1f4355900cf44f6","sig":"6cee9e7870f02e4c79f7ad9e6835d8ef19651898eb4c62b7def3d07379ffd15c2bf7eba66d96959596f5551f54b191f356bfd0d5b8efd530e2f343bd025f1d09","tags":[["alt","A short note: https://video.nostr.build/00a5e6c9fbe9bf575076fac8..."],["e","d9d840ff5aba5f19f3b78f3d5889260c81759f2523290ec6ad1ac30d94370d49","wss://relay.nostr.band/","root","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975"],["p","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975","wss://bitcoiner.social/"],["r","https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4"],["imeta","url https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","x 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","size 396490","m video/mp4","dim 460x816","blurhash ]9JRT}004nt7M{~WoeR*WBj?00-;t7ofoLxtRja$kBazM{t7WDj[WCV[WVt6jtjtIVofoeWBofR+j[ofWCj[ayj[WCj@fQ","ox 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","alt "]]}] +[14:14:50.783] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space News: 'Andromeda' at 25: An optimistic but flawed sci-fi romp cobbled together from the notes of 'Star Trek' creator Gene Roddenberry\nLink: https://www.space.com/entertainment/space-movies-shows/andromeda-at-25-an-optimistic-but-flawed-sci-fi-romp-cobbled-together-from-the-notes-of-star-trek-creator-gene-roddenberry\nSummary: Paying tribute to the 'Star Trek' creator's posthumous space adventure that still resonates with fans today.","created_at":1759428862,"id":"6c44788dbed2053a0c89c0eec3ef947c5527bdc491b740ec1beecd16547ba28a","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"265bb61fadf48c935f02afcc5a1d774cf27b3008f1abc0e7bbddd32dad9be1dbc7685b759f57991c9876a04e8b5954447989ae05fb814e4edc45d9c59e5fe648","tags":[]}] +[14:14:50.843] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Let's hear some ideas of where is the best place to move to in the States. If you say California you will automatically be banned from Nostr. \nnostr:nevent1qqsykc6nnsduehekm35q0tlqv0a8nu28r5dq0l68nzveuwj58l66hfspz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsyg9s674dg4q88y0w9wcj3aeu8nfjjdrvphsckxdepfy0q3qxghf2s5psgqqqqqqs9c7qkm","created_at":1759428862,"id":"a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","kind":1,"pubkey":"101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","sig":"67aa917fc7cb98d699da7ed04db59c767d86ff81f44ce18c236141878185e2158b83b099f355ad2b24d6ba660514c0cbcf549a647c7080f04fca7c9582c998dc","tags":[["alt","A short note: Let's hear some ideas of where is the best place t..."],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/"],["q","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.damus.io/","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["zap","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/","0.9"],["zap","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/","0.1"]]}] +[14:14:50.904] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Amethyst tips\n\nHow to immediately improve your Nostr experience\nhttps://i.nostr.build/s4SdjbcWRnMTLswX.jpg","created_at":1759428857,"id":"84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"0710709c5a3553e4fb8b74c5af372bff3c6955ccf75c46a82293201d06f68c299e373389c94b27aebe5729b11885296a5c30c1c96942e3470082315f96b8564f","tags":[["alt","A short note: #Amethyst tips\n\nHow to immediately improve your No..."],["t","Amethyst"],["t","amethyst"],["r","https://i.nostr.build/s4SdjbcWRnMTLswX.jpg"],["imeta","url https://i.nostr.build/s4SdjbcWRnMTLswX.jpg","x 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","size 18785","m image/jpeg","dim 1008x413","blurhash ZF7^cUEZ?KSaf8s=I,$-I,X2xcNExbWBWAt8Ris;ImxJImxbWUbExcRis;t8WAoMkBj[oMfij]WB","ox 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","alt "]]}] +[14:14:50.964] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:51.025] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:51.085] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:51.146] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:51.206] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:51.267] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:51.328] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:51.388] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:51.449] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:51.509] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:51.570] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:51.630] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:51.691] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:53.352] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:53.353] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:53.353] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:53.353] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:53.503] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"失敗から学ばないわずかな例","created_at":1759428891,"id":"85816dd470639e9eb34d07a2efd7ec95fe1a86d9d545d6f6e1f156941e6681e4","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"5a2594cb6e5bd4fce491d8fbdc2b481a27b6bd45971fc8c91eb82d8cf587c37b9a6830e5af74adc04a9b5e85aaea23364f0a19699a7afd8f61e124e36358e195","tags":[]}] +[14:14:53.564] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💡 Bitcoin Quiz:\nWhat is a block in Bitcoin?\n#bitcoin #quiz","created_at":1759428886,"id":"e0f207d07ab6cb382a79d7ae1009cf67b62596694e1f8bbaf846849c8705fd79","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"467e7af4fa35a415e8ee1dc0e385b7dc263defef48d7f5169d2f3f44414a8afb74eab69823d0292d3f07e01452b64162ad0900958e64973310ca26f2a52c3835","tags":[]}] +[14:14:53.625] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📰 Bitcoin clears $120K as onchain data points to a new BTC accumulation phase\nBitcoin cleared the $120,000 level for the first time since August as long-term selling cools and short-term holders stabilize, hinting at a fresh accumulation phase.\nRead more: https://cointelegraph.com/news/bitcoin-clears-dollar120k-as-onchain-data-points-to-a-new-btc-accumulation-phase?utm_source=rss_feed&utm_medium=rss%3F_t%3D1759428542331%26_nocache%3D1759428542331%26vfff%3D1759428542&utm_campaign=rss_partner_inbound\n#bitcoin #btc #news\n📷 Image: https://images.cointelegraph.com/images/528_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS91cGxvYWRzLzIwMjUtMDIvMDE5NGUyZDQtNGM3Ni03NzgzLTljZTAtOWFmNTYxOGJkZGFi.jpg","created_at":1759428884,"id":"f91711b01933d3dc0a3b0d9b5e89faeb71d70800fd9f04011fa6d64ecb086fef","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"95181c979d843f0273cd4025b089f7c3ad9b25c5e0c79ef0b69d4c91ba22fd845d82e2ca43ee7e15cadae65bed90e8e6ed03e13c3b111f1c6281ab4d46eb30af","tags":[]}] +[14:14:53.685] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"酒飲みすぎると一生飲まないぞって気持ちになるのに気づいたら飲んでるのなんなんだろう","created_at":1759428882,"id":"4e5f918acf70f4518af26742e24053a97107b008e3039567a013a64f04a0339e","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"8b92c8d1684fcf17906945271e3d0b528cc2faea55a81e3a7274b45f9d3f5c56d4e0909b94db5c81e64f8789474bdf24d1166176fb9b2ffa1f93e4ea01d1ed0d","tags":[]}] +[14:14:53.746] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space Breaking News: Detection of phosphine in a brown dwarf atmosphere raises more questions\nLink: https://phys.org/news/2025-10-phosphine-brown-dwarf-atmosphere.html\nSummary: Phosphorus is one of six key elements necessary for life on Earth. When combined with hydrogen, phosphorus forms the molecule phosphine (PH3), an explosive, highly toxic gas.","created_at":1759428874,"id":"0d8f79a20ae4b5c2740918da828d504d03a2b76c6a94ec81297eb02de4ba2056","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"358c479024989c5e6d09d1f2f95f4203fd1a80aaea1f9efdf9fc5a10d114bd428a87ca0632d61b27f2da04e9797b3a7c3e36faee853f7e39ad585113d3d8661a","tags":[]}] +[14:14:53.806] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"自分増改築されまくったホテルとか探検したいです","created_at":1759428872,"id":"bcdfa3bc577f65832f0ff5a6fc3ee6d3b178903e4cb6752b9a4971b3e55a6d99","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6f0cb9739be65c682590ac3e864d918b2aeec1e997bb934cb53604455da7e2ac63fbebc2f1a48c3bb9694d2379aa55765cf5fe7b8741b67560cc003bde41713d","tags":[]}] +[14:14:53.867] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","created_at":1759428868,"id":"3b60d8bb7059518a5a326b1f3423916db4261d3724bc8c1c2e4ac6aeadec8d0e","kind":1,"pubkey":"1848313553d37fe4cbd8bad2d6bc6237615d73fca464edb2d1f4355900cf44f6","sig":"6cee9e7870f02e4c79f7ad9e6835d8ef19651898eb4c62b7def3d07379ffd15c2bf7eba66d96959596f5551f54b191f356bfd0d5b8efd530e2f343bd025f1d09","tags":[["alt","A short note: https://video.nostr.build/00a5e6c9fbe9bf575076fac8..."],["e","d9d840ff5aba5f19f3b78f3d5889260c81759f2523290ec6ad1ac30d94370d49","wss://relay.nostr.band/","root","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975"],["p","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975","wss://bitcoiner.social/"],["r","https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4"],["imeta","url https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","x 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","size 396490","m video/mp4","dim 460x816","blurhash ]9JRT}004nt7M{~WoeR*WBj?00-;t7ofoLxtRja$kBazM{t7WDj[WCV[WVt6jtjtIVofoeWBofR+j[ofWCj[ayj[WCj@fQ","ox 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","alt "]]}] +[14:14:53.927] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space News: 'Andromeda' at 25: An optimistic but flawed sci-fi romp cobbled together from the notes of 'Star Trek' creator Gene Roddenberry\nLink: https://www.space.com/entertainment/space-movies-shows/andromeda-at-25-an-optimistic-but-flawed-sci-fi-romp-cobbled-together-from-the-notes-of-star-trek-creator-gene-roddenberry\nSummary: Paying tribute to the 'Star Trek' creator's posthumous space adventure that still resonates with fans today.","created_at":1759428862,"id":"6c44788dbed2053a0c89c0eec3ef947c5527bdc491b740ec1beecd16547ba28a","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"265bb61fadf48c935f02afcc5a1d774cf27b3008f1abc0e7bbddd32dad9be1dbc7685b759f57991c9876a04e8b5954447989ae05fb814e4edc45d9c59e5fe648","tags":[]}] +[14:14:53.988] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Let's hear some ideas of where is the best place to move to in the States. If you say California you will automatically be banned from Nostr. \nnostr:nevent1qqsykc6nnsduehekm35q0tlqv0a8nu28r5dq0l68nzveuwj58l66hfspz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsyg9s674dg4q88y0w9wcj3aeu8nfjjdrvphsckxdepfy0q3qxghf2s5psgqqqqqqs9c7qkm","created_at":1759428862,"id":"a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","kind":1,"pubkey":"101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","sig":"67aa917fc7cb98d699da7ed04db59c767d86ff81f44ce18c236141878185e2158b83b099f355ad2b24d6ba660514c0cbcf549a647c7080f04fca7c9582c998dc","tags":[["alt","A short note: Let's hear some ideas of where is the best place t..."],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/"],["q","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.damus.io/","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["zap","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/","0.9"],["zap","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/","0.1"]]}] +[14:14:54.049] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Amethyst tips\n\nHow to immediately improve your Nostr experience\nhttps://i.nostr.build/s4SdjbcWRnMTLswX.jpg","created_at":1759428857,"id":"84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"0710709c5a3553e4fb8b74c5af372bff3c6955ccf75c46a82293201d06f68c299e373389c94b27aebe5729b11885296a5c30c1c96942e3470082315f96b8564f","tags":[["alt","A short note: #Amethyst tips\n\nHow to immediately improve your No..."],["t","Amethyst"],["t","amethyst"],["r","https://i.nostr.build/s4SdjbcWRnMTLswX.jpg"],["imeta","url https://i.nostr.build/s4SdjbcWRnMTLswX.jpg","x 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","size 18785","m image/jpeg","dim 1008x413","blurhash ZF7^cUEZ?KSaf8s=I,$-I,X2xcNExbWBWAt8Ris;ImxJImxbWUbExcRis;t8WAoMkBj[oMfij]WB","ox 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","alt "]]}] +[14:14:54.109] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:54.170] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:14:54.230] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:54.291] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:54.351] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:54.412] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:54.472] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:54.533] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:54.593] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:54.654] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:54.714] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:54.775] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:56.967] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:56.968] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:56.968] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:56.968] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:57.118] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"失敗から学ばないわずかな例","created_at":1759428891,"id":"85816dd470639e9eb34d07a2efd7ec95fe1a86d9d545d6f6e1f156941e6681e4","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"5a2594cb6e5bd4fce491d8fbdc2b481a27b6bd45971fc8c91eb82d8cf587c37b9a6830e5af74adc04a9b5e85aaea23364f0a19699a7afd8f61e124e36358e195","tags":[]}] +[14:14:57.129] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💡 Bitcoin Quiz:\nWhat is a block in Bitcoin?\n#bitcoin #quiz","created_at":1759428886,"id":"e0f207d07ab6cb382a79d7ae1009cf67b62596694e1f8bbaf846849c8705fd79","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"467e7af4fa35a415e8ee1dc0e385b7dc263defef48d7f5169d2f3f44414a8afb74eab69823d0292d3f07e01452b64162ad0900958e64973310ca26f2a52c3835","tags":[]}] +[14:14:57.300] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📰 Bitcoin clears $120K as onchain data points to a new BTC accumulation phase\nBitcoin cleared the $120,000 level for the first time since August as long-term selling cools and short-term holders stabilize, hinting at a fresh accumulation phase.\nRead more: https://cointelegraph.com/news/bitcoin-clears-dollar120k-as-onchain-data-points-to-a-new-btc-accumulation-phase?utm_source=rss_feed&utm_medium=rss%3F_t%3D1759428542331%26_nocache%3D1759428542331%26vfff%3D1759428542&utm_campaign=rss_partner_inbound\n#bitcoin #btc #news\n📷 Image: https://images.cointelegraph.com/images/528_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS91cGxvYWRzLzIwMjUtMDIvMDE5NGUyZDQtNGM3Ni03NzgzLTljZTAtOWFmNTYxOGJkZGFi.jpg","created_at":1759428884,"id":"f91711b01933d3dc0a3b0d9b5e89faeb71d70800fd9f04011fa6d64ecb086fef","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"95181c979d843f0273cd4025b089f7c3ad9b25c5e0c79ef0b69d4c91ba22fd845d82e2ca43ee7e15cadae65bed90e8e6ed03e13c3b111f1c6281ab4d46eb30af","tags":[]}] +[14:14:57.360] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"酒飲みすぎると一生飲まないぞって気持ちになるのに気づいたら飲んでるのなんなんだろう","created_at":1759428882,"id":"4e5f918acf70f4518af26742e24053a97107b008e3039567a013a64f04a0339e","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"8b92c8d1684fcf17906945271e3d0b528cc2faea55a81e3a7274b45f9d3f5c56d4e0909b94db5c81e64f8789474bdf24d1166176fb9b2ffa1f93e4ea01d1ed0d","tags":[]}] +[14:14:57.421] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space Breaking News: Detection of phosphine in a brown dwarf atmosphere raises more questions\nLink: https://phys.org/news/2025-10-phosphine-brown-dwarf-atmosphere.html\nSummary: Phosphorus is one of six key elements necessary for life on Earth. When combined with hydrogen, phosphorus forms the molecule phosphine (PH3), an explosive, highly toxic gas.","created_at":1759428874,"id":"0d8f79a20ae4b5c2740918da828d504d03a2b76c6a94ec81297eb02de4ba2056","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"358c479024989c5e6d09d1f2f95f4203fd1a80aaea1f9efdf9fc5a10d114bd428a87ca0632d61b27f2da04e9797b3a7c3e36faee853f7e39ad585113d3d8661a","tags":[]}] +[14:14:57.482] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"自分増改築されまくったホテルとか探検したいです","created_at":1759428872,"id":"bcdfa3bc577f65832f0ff5a6fc3ee6d3b178903e4cb6752b9a4971b3e55a6d99","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6f0cb9739be65c682590ac3e864d918b2aeec1e997bb934cb53604455da7e2ac63fbebc2f1a48c3bb9694d2379aa55765cf5fe7b8741b67560cc003bde41713d","tags":[]}] +[14:14:57.542] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","created_at":1759428868,"id":"3b60d8bb7059518a5a326b1f3423916db4261d3724bc8c1c2e4ac6aeadec8d0e","kind":1,"pubkey":"1848313553d37fe4cbd8bad2d6bc6237615d73fca464edb2d1f4355900cf44f6","sig":"6cee9e7870f02e4c79f7ad9e6835d8ef19651898eb4c62b7def3d07379ffd15c2bf7eba66d96959596f5551f54b191f356bfd0d5b8efd530e2f343bd025f1d09","tags":[["alt","A short note: https://video.nostr.build/00a5e6c9fbe9bf575076fac8..."],["e","d9d840ff5aba5f19f3b78f3d5889260c81759f2523290ec6ad1ac30d94370d49","wss://relay.nostr.band/","root","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975"],["p","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975","wss://bitcoiner.social/"],["r","https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4"],["imeta","url https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","x 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","size 396490","m video/mp4","dim 460x816","blurhash ]9JRT}004nt7M{~WoeR*WBj?00-;t7ofoLxtRja$kBazM{t7WDj[WCV[WVt6jtjtIVofoeWBofR+j[ofWCj[ayj[WCj@fQ","ox 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","alt "]]}] +[14:14:57.603] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space News: 'Andromeda' at 25: An optimistic but flawed sci-fi romp cobbled together from the notes of 'Star Trek' creator Gene Roddenberry\nLink: https://www.space.com/entertainment/space-movies-shows/andromeda-at-25-an-optimistic-but-flawed-sci-fi-romp-cobbled-together-from-the-notes-of-star-trek-creator-gene-roddenberry\nSummary: Paying tribute to the 'Star Trek' creator's posthumous space adventure that still resonates with fans today.","created_at":1759428862,"id":"6c44788dbed2053a0c89c0eec3ef947c5527bdc491b740ec1beecd16547ba28a","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"265bb61fadf48c935f02afcc5a1d774cf27b3008f1abc0e7bbddd32dad9be1dbc7685b759f57991c9876a04e8b5954447989ae05fb814e4edc45d9c59e5fe648","tags":[]}] +[14:14:57.664] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Let's hear some ideas of where is the best place to move to in the States. If you say California you will automatically be banned from Nostr. \nnostr:nevent1qqsykc6nnsduehekm35q0tlqv0a8nu28r5dq0l68nzveuwj58l66hfspz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsyg9s674dg4q88y0w9wcj3aeu8nfjjdrvphsckxdepfy0q3qxghf2s5psgqqqqqqs9c7qkm","created_at":1759428862,"id":"a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","kind":1,"pubkey":"101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","sig":"67aa917fc7cb98d699da7ed04db59c767d86ff81f44ce18c236141878185e2158b83b099f355ad2b24d6ba660514c0cbcf549a647c7080f04fca7c9582c998dc","tags":[["alt","A short note: Let's hear some ideas of where is the best place t..."],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/"],["q","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.damus.io/","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["zap","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/","0.9"],["zap","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/","0.1"]]}] +[14:14:57.724] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Amethyst tips\n\nHow to immediately improve your Nostr experience\nhttps://i.nostr.build/s4SdjbcWRnMTLswX.jpg","created_at":1759428857,"id":"84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"0710709c5a3553e4fb8b74c5af372bff3c6955ccf75c46a82293201d06f68c299e373389c94b27aebe5729b11885296a5c30c1c96942e3470082315f96b8564f","tags":[["alt","A short note: #Amethyst tips\n\nHow to immediately improve your No..."],["t","Amethyst"],["t","amethyst"],["r","https://i.nostr.build/s4SdjbcWRnMTLswX.jpg"],["imeta","url https://i.nostr.build/s4SdjbcWRnMTLswX.jpg","x 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","size 18785","m image/jpeg","dim 1008x413","blurhash ZF7^cUEZ?KSaf8s=I,$-I,X2xcNExbWBWAt8Ris;ImxJImxbWUbExcRis;t8WAoMkBj[oMfij]WB","ox 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","alt "]]}] +[14:14:57.784] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:57.845] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:14:57.906] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:57.966] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:58.027] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:58.087] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:58.148] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:58.208] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:58.269] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:58.330] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:58.390] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:58.451] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:00.152] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:00.152] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:00.152] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:00.152] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:00.313] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:15 ------------✄","created_at":1759428900,"id":"192a42cbfb24f1c81e49ba76f39465927bccac7eeaa91aca35ff2b9cd39fb213","kind":1,"pubkey":"d7c13d1edc3e0ba63ab74b859b2809fa15c0e8b538237dc8bd165b3f14cfe365","sig":"cb16feb450eb9fe4b05564b4596ef6f24ef191d72d7591567365d1c49fc3c6fb60ed330d7023846a69657571fdd26e0666bb11f665d61878435dd0f22dff93db","tags":[]}] +[14:15:00.374] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#PawsitiveVibes 🌞🐾 \n \n#dogstr #dog #Nostr #bestfren","created_at":1759428896,"id":"088380563de89d0aee402cf46323d519783e196fd61984e5acc10a7b7becd389","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"837afcf5f4f84ffda4cc1cc2eb8a2c11e7ca2eb053e29fbe819de28e23ae06f3610742beaf242e7d7157b38c131b4fdd6c1dd8415bf3eca33a10aff61889fb4c","tags":[]}] +[14:15:00.435] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"失敗から学ばないわずかな例","created_at":1759428891,"id":"85816dd470639e9eb34d07a2efd7ec95fe1a86d9d545d6f6e1f156941e6681e4","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"5a2594cb6e5bd4fce491d8fbdc2b481a27b6bd45971fc8c91eb82d8cf587c37b9a6830e5af74adc04a9b5e85aaea23364f0a19699a7afd8f61e124e36358e195","tags":[]}] +[14:15:00.495] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💡 Bitcoin Quiz:\nWhat is a block in Bitcoin?\n#bitcoin #quiz","created_at":1759428886,"id":"e0f207d07ab6cb382a79d7ae1009cf67b62596694e1f8bbaf846849c8705fd79","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"467e7af4fa35a415e8ee1dc0e385b7dc263defef48d7f5169d2f3f44414a8afb74eab69823d0292d3f07e01452b64162ad0900958e64973310ca26f2a52c3835","tags":[]}] +[14:15:00.556] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📰 Bitcoin clears $120K as onchain data points to a new BTC accumulation phase\nBitcoin cleared the $120,000 level for the first time since August as long-term selling cools and short-term holders stabilize, hinting at a fresh accumulation phase.\nRead more: https://cointelegraph.com/news/bitcoin-clears-dollar120k-as-onchain-data-points-to-a-new-btc-accumulation-phase?utm_source=rss_feed&utm_medium=rss%3F_t%3D1759428542331%26_nocache%3D1759428542331%26vfff%3D1759428542&utm_campaign=rss_partner_inbound\n#bitcoin #btc #news\n📷 Image: https://images.cointelegraph.com/images/528_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS91cGxvYWRzLzIwMjUtMDIvMDE5NGUyZDQtNGM3Ni03NzgzLTljZTAtOWFmNTYxOGJkZGFi.jpg","created_at":1759428884,"id":"f91711b01933d3dc0a3b0d9b5e89faeb71d70800fd9f04011fa6d64ecb086fef","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"95181c979d843f0273cd4025b089f7c3ad9b25c5e0c79ef0b69d4c91ba22fd845d82e2ca43ee7e15cadae65bed90e8e6ed03e13c3b111f1c6281ab4d46eb30af","tags":[]}] +[14:15:00.616] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"酒飲みすぎると一生飲まないぞって気持ちになるのに気づいたら飲んでるのなんなんだろう","created_at":1759428882,"id":"4e5f918acf70f4518af26742e24053a97107b008e3039567a013a64f04a0339e","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"8b92c8d1684fcf17906945271e3d0b528cc2faea55a81e3a7274b45f9d3f5c56d4e0909b94db5c81e64f8789474bdf24d1166176fb9b2ffa1f93e4ea01d1ed0d","tags":[]}] +[14:15:00.677] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space Breaking News: Detection of phosphine in a brown dwarf atmosphere raises more questions\nLink: https://phys.org/news/2025-10-phosphine-brown-dwarf-atmosphere.html\nSummary: Phosphorus is one of six key elements necessary for life on Earth. When combined with hydrogen, phosphorus forms the molecule phosphine (PH3), an explosive, highly toxic gas.","created_at":1759428874,"id":"0d8f79a20ae4b5c2740918da828d504d03a2b76c6a94ec81297eb02de4ba2056","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"358c479024989c5e6d09d1f2f95f4203fd1a80aaea1f9efdf9fc5a10d114bd428a87ca0632d61b27f2da04e9797b3a7c3e36faee853f7e39ad585113d3d8661a","tags":[]}] +[14:15:00.737] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"自分増改築されまくったホテルとか探検したいです","created_at":1759428872,"id":"bcdfa3bc577f65832f0ff5a6fc3ee6d3b178903e4cb6752b9a4971b3e55a6d99","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6f0cb9739be65c682590ac3e864d918b2aeec1e997bb934cb53604455da7e2ac63fbebc2f1a48c3bb9694d2379aa55765cf5fe7b8741b67560cc003bde41713d","tags":[]}] +[14:15:00.798] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","created_at":1759428868,"id":"3b60d8bb7059518a5a326b1f3423916db4261d3724bc8c1c2e4ac6aeadec8d0e","kind":1,"pubkey":"1848313553d37fe4cbd8bad2d6bc6237615d73fca464edb2d1f4355900cf44f6","sig":"6cee9e7870f02e4c79f7ad9e6835d8ef19651898eb4c62b7def3d07379ffd15c2bf7eba66d96959596f5551f54b191f356bfd0d5b8efd530e2f343bd025f1d09","tags":[["alt","A short note: https://video.nostr.build/00a5e6c9fbe9bf575076fac8..."],["e","d9d840ff5aba5f19f3b78f3d5889260c81759f2523290ec6ad1ac30d94370d49","wss://relay.nostr.band/","root","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975"],["p","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975","wss://bitcoiner.social/"],["r","https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4"],["imeta","url https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","x 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","size 396490","m video/mp4","dim 460x816","blurhash ]9JRT}004nt7M{~WoeR*WBj?00-;t7ofoLxtRja$kBazM{t7WDj[WCV[WVt6jtjtIVofoeWBofR+j[ofWCj[ayj[WCj@fQ","ox 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","alt "]]}] +[14:15:00.858] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space News: 'Andromeda' at 25: An optimistic but flawed sci-fi romp cobbled together from the notes of 'Star Trek' creator Gene Roddenberry\nLink: https://www.space.com/entertainment/space-movies-shows/andromeda-at-25-an-optimistic-but-flawed-sci-fi-romp-cobbled-together-from-the-notes-of-star-trek-creator-gene-roddenberry\nSummary: Paying tribute to the 'Star Trek' creator's posthumous space adventure that still resonates with fans today.","created_at":1759428862,"id":"6c44788dbed2053a0c89c0eec3ef947c5527bdc491b740ec1beecd16547ba28a","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"265bb61fadf48c935f02afcc5a1d774cf27b3008f1abc0e7bbddd32dad9be1dbc7685b759f57991c9876a04e8b5954447989ae05fb814e4edc45d9c59e5fe648","tags":[]}] +[14:15:00.919] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:00.980] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:01.040] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:01.101] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:01.161] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:01.222] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:01.283] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:01.343] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:01.404] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:01.464] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:01.525] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:01.586] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:03.251] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:03.251] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:03.251] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:03.251] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:03.403] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It's important to have role models 🫡","created_at":1759428903,"id":"abc13d7020f4d64998432af530804eebf89dfaeda1ab2770bb1ab4f7e8fcc3bc","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"b54762fc90da118a67d52773eba68c86ea0f62c3f2dc165116a4c9ac0998b6bada57b065c87ce4fdad1ba770920c15da904b86dc17f7c6378d4553399caad0e6","tags":[["alt","A short note: It's important to have role models 🫡"],["e","00c18579f3fab67414b8cca72fe690e18d5ea09bc2502fadb949f1b9ab51e882","wss://nos.lol/","root","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","wss://nostrelites.org/"]]}] +[14:15:03.464] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:15 ------------✄","created_at":1759428900,"id":"192a42cbfb24f1c81e49ba76f39465927bccac7eeaa91aca35ff2b9cd39fb213","kind":1,"pubkey":"d7c13d1edc3e0ba63ab74b859b2809fa15c0e8b538237dc8bd165b3f14cfe365","sig":"cb16feb450eb9fe4b05564b4596ef6f24ef191d72d7591567365d1c49fc3c6fb60ed330d7023846a69657571fdd26e0666bb11f665d61878435dd0f22dff93db","tags":[]}] +[14:15:03.524] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#PawsitiveVibes 🌞🐾 \n \n#dogstr #dog #Nostr #bestfren","created_at":1759428896,"id":"088380563de89d0aee402cf46323d519783e196fd61984e5acc10a7b7becd389","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"837afcf5f4f84ffda4cc1cc2eb8a2c11e7ca2eb053e29fbe819de28e23ae06f3610742beaf242e7d7157b38c131b4fdd6c1dd8415bf3eca33a10aff61889fb4c","tags":[]}] +[14:15:03.585] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"失敗から学ばないわずかな例","created_at":1759428891,"id":"85816dd470639e9eb34d07a2efd7ec95fe1a86d9d545d6f6e1f156941e6681e4","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"5a2594cb6e5bd4fce491d8fbdc2b481a27b6bd45971fc8c91eb82d8cf587c37b9a6830e5af74adc04a9b5e85aaea23364f0a19699a7afd8f61e124e36358e195","tags":[]}] +[14:15:03.645] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💡 Bitcoin Quiz:\nWhat is a block in Bitcoin?\n#bitcoin #quiz","created_at":1759428886,"id":"e0f207d07ab6cb382a79d7ae1009cf67b62596694e1f8bbaf846849c8705fd79","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"467e7af4fa35a415e8ee1dc0e385b7dc263defef48d7f5169d2f3f44414a8afb74eab69823d0292d3f07e01452b64162ad0900958e64973310ca26f2a52c3835","tags":[]}] +[14:15:03.706] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📰 Bitcoin clears $120K as onchain data points to a new BTC accumulation phase\nBitcoin cleared the $120,000 level for the first time since August as long-term selling cools and short-term holders stabilize, hinting at a fresh accumulation phase.\nRead more: https://cointelegraph.com/news/bitcoin-clears-dollar120k-as-onchain-data-points-to-a-new-btc-accumulation-phase?utm_source=rss_feed&utm_medium=rss%3F_t%3D1759428542331%26_nocache%3D1759428542331%26vfff%3D1759428542&utm_campaign=rss_partner_inbound\n#bitcoin #btc #news\n📷 Image: https://images.cointelegraph.com/images/528_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS91cGxvYWRzLzIwMjUtMDIvMDE5NGUyZDQtNGM3Ni03NzgzLTljZTAtOWFmNTYxOGJkZGFi.jpg","created_at":1759428884,"id":"f91711b01933d3dc0a3b0d9b5e89faeb71d70800fd9f04011fa6d64ecb086fef","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"95181c979d843f0273cd4025b089f7c3ad9b25c5e0c79ef0b69d4c91ba22fd845d82e2ca43ee7e15cadae65bed90e8e6ed03e13c3b111f1c6281ab4d46eb30af","tags":[]}] +[14:15:03.766] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"酒飲みすぎると一生飲まないぞって気持ちになるのに気づいたら飲んでるのなんなんだろう","created_at":1759428882,"id":"4e5f918acf70f4518af26742e24053a97107b008e3039567a013a64f04a0339e","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"8b92c8d1684fcf17906945271e3d0b528cc2faea55a81e3a7274b45f9d3f5c56d4e0909b94db5c81e64f8789474bdf24d1166176fb9b2ffa1f93e4ea01d1ed0d","tags":[]}] +[14:15:03.827] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space Breaking News: Detection of phosphine in a brown dwarf atmosphere raises more questions\nLink: https://phys.org/news/2025-10-phosphine-brown-dwarf-atmosphere.html\nSummary: Phosphorus is one of six key elements necessary for life on Earth. When combined with hydrogen, phosphorus forms the molecule phosphine (PH3), an explosive, highly toxic gas.","created_at":1759428874,"id":"0d8f79a20ae4b5c2740918da828d504d03a2b76c6a94ec81297eb02de4ba2056","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"358c479024989c5e6d09d1f2f95f4203fd1a80aaea1f9efdf9fc5a10d114bd428a87ca0632d61b27f2da04e9797b3a7c3e36faee853f7e39ad585113d3d8661a","tags":[]}] +[14:15:03.888] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"自分増改築されまくったホテルとか探検したいです","created_at":1759428872,"id":"bcdfa3bc577f65832f0ff5a6fc3ee6d3b178903e4cb6752b9a4971b3e55a6d99","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6f0cb9739be65c682590ac3e864d918b2aeec1e997bb934cb53604455da7e2ac63fbebc2f1a48c3bb9694d2379aa55765cf5fe7b8741b67560cc003bde41713d","tags":[]}] +[14:15:03.948] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","created_at":1759428868,"id":"3b60d8bb7059518a5a326b1f3423916db4261d3724bc8c1c2e4ac6aeadec8d0e","kind":1,"pubkey":"1848313553d37fe4cbd8bad2d6bc6237615d73fca464edb2d1f4355900cf44f6","sig":"6cee9e7870f02e4c79f7ad9e6835d8ef19651898eb4c62b7def3d07379ffd15c2bf7eba66d96959596f5551f54b191f356bfd0d5b8efd530e2f343bd025f1d09","tags":[["alt","A short note: https://video.nostr.build/00a5e6c9fbe9bf575076fac8..."],["e","d9d840ff5aba5f19f3b78f3d5889260c81759f2523290ec6ad1ac30d94370d49","wss://relay.nostr.band/","root","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975"],["p","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975","wss://bitcoiner.social/"],["r","https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4"],["imeta","url https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","x 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","size 396490","m video/mp4","dim 460x816","blurhash ]9JRT}004nt7M{~WoeR*WBj?00-;t7ofoLxtRja$kBazM{t7WDj[WCV[WVt6jtjtIVofoeWBofR+j[ofWCj[ayj[WCj@fQ","ox 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","alt "]]}] +[14:15:04.008] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:04.069] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:04.129] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:04.190] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:04.250] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:04.311] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:04.371] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:04.432] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:04.492] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:04.553] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:04.613] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:04.674] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:06.371] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:06.371] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:06.371] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:06.371] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:06.522] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"brit/pol/ - Capybara edition ... >'African tribe' who camped in Scottish woodland evicted class=\"quote\">>How Taylor Swift made herself too big to fail class=\"quote\">>Two Jewish victims killed in ... \nThread: https://boards.4chan.org/pol/thread/517860501\n\nhttps://i.4cdn.org/pol/1759424920243386s.jpg","created_at":1759428903,"id":"572eab9bd773008d06d598184b3989687029d705e96746105d17dc194ec9b3de","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"2b174f23ecd6c8534bf70830ed79728a4a19a38889cefd307fb7605ae8aa066b86b6e47a49b90960a0d0559fafd25f874a05203497b2b1d5a644035a2243b671","tags":[]}] +[14:15:06.583] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"二郎と同じだね❤️","created_at":1759428903,"id":"632af47d731bb799185000ff4db39a2162d126c008aef7ba7baeff8c4cc29faf","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"f010affe85cdc18f5a20e95c5ab96194e4572f76396828d7b4a7bbc6954864ba4725356dffd8f0452c8fe7b7d214f8d598e1be858ee6009df33ce1b39be42cb2","tags":[]}] +[14:15:06.644] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It's important to have role models 🫡","created_at":1759428903,"id":"abc13d7020f4d64998432af530804eebf89dfaeda1ab2770bb1ab4f7e8fcc3bc","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"b54762fc90da118a67d52773eba68c86ea0f62c3f2dc165116a4c9ac0998b6bada57b065c87ce4fdad1ba770920c15da904b86dc17f7c6378d4553399caad0e6","tags":[["alt","A short note: It's important to have role models 🫡"],["e","00c18579f3fab67414b8cca72fe690e18d5ea09bc2502fadb949f1b9ab51e882","wss://nos.lol/","root","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","wss://nostrelites.org/"]]}] +[14:15:06.704] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:15 ------------✄","created_at":1759428900,"id":"192a42cbfb24f1c81e49ba76f39465927bccac7eeaa91aca35ff2b9cd39fb213","kind":1,"pubkey":"d7c13d1edc3e0ba63ab74b859b2809fa15c0e8b538237dc8bd165b3f14cfe365","sig":"cb16feb450eb9fe4b05564b4596ef6f24ef191d72d7591567365d1c49fc3c6fb60ed330d7023846a69657571fdd26e0666bb11f665d61878435dd0f22dff93db","tags":[]}] +[14:15:06.765] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#PawsitiveVibes 🌞🐾 \n \n#dogstr #dog #Nostr #bestfren","created_at":1759428896,"id":"088380563de89d0aee402cf46323d519783e196fd61984e5acc10a7b7becd389","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"837afcf5f4f84ffda4cc1cc2eb8a2c11e7ca2eb053e29fbe819de28e23ae06f3610742beaf242e7d7157b38c131b4fdd6c1dd8415bf3eca33a10aff61889fb4c","tags":[]}] +[14:15:06.826] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"失敗から学ばないわずかな例","created_at":1759428891,"id":"85816dd470639e9eb34d07a2efd7ec95fe1a86d9d545d6f6e1f156941e6681e4","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"5a2594cb6e5bd4fce491d8fbdc2b481a27b6bd45971fc8c91eb82d8cf587c37b9a6830e5af74adc04a9b5e85aaea23364f0a19699a7afd8f61e124e36358e195","tags":[]}] +[14:15:06.886] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💡 Bitcoin Quiz:\nWhat is a block in Bitcoin?\n#bitcoin #quiz","created_at":1759428886,"id":"e0f207d07ab6cb382a79d7ae1009cf67b62596694e1f8bbaf846849c8705fd79","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"467e7af4fa35a415e8ee1dc0e385b7dc263defef48d7f5169d2f3f44414a8afb74eab69823d0292d3f07e01452b64162ad0900958e64973310ca26f2a52c3835","tags":[]}] +[14:15:06.947] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📰 Bitcoin clears $120K as onchain data points to a new BTC accumulation phase\nBitcoin cleared the $120,000 level for the first time since August as long-term selling cools and short-term holders stabilize, hinting at a fresh accumulation phase.\nRead more: https://cointelegraph.com/news/bitcoin-clears-dollar120k-as-onchain-data-points-to-a-new-btc-accumulation-phase?utm_source=rss_feed&utm_medium=rss%3F_t%3D1759428542331%26_nocache%3D1759428542331%26vfff%3D1759428542&utm_campaign=rss_partner_inbound\n#bitcoin #btc #news\n📷 Image: https://images.cointelegraph.com/images/528_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS91cGxvYWRzLzIwMjUtMDIvMDE5NGUyZDQtNGM3Ni03NzgzLTljZTAtOWFmNTYxOGJkZGFi.jpg","created_at":1759428884,"id":"f91711b01933d3dc0a3b0d9b5e89faeb71d70800fd9f04011fa6d64ecb086fef","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"95181c979d843f0273cd4025b089f7c3ad9b25c5e0c79ef0b69d4c91ba22fd845d82e2ca43ee7e15cadae65bed90e8e6ed03e13c3b111f1c6281ab4d46eb30af","tags":[]}] +[14:15:07.007] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"酒飲みすぎると一生飲まないぞって気持ちになるのに気づいたら飲んでるのなんなんだろう","created_at":1759428882,"id":"4e5f918acf70f4518af26742e24053a97107b008e3039567a013a64f04a0339e","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"8b92c8d1684fcf17906945271e3d0b528cc2faea55a81e3a7274b45f9d3f5c56d4e0909b94db5c81e64f8789474bdf24d1166176fb9b2ffa1f93e4ea01d1ed0d","tags":[]}] +[14:15:07.068] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space Breaking News: Detection of phosphine in a brown dwarf atmosphere raises more questions\nLink: https://phys.org/news/2025-10-phosphine-brown-dwarf-atmosphere.html\nSummary: Phosphorus is one of six key elements necessary for life on Earth. When combined with hydrogen, phosphorus forms the molecule phosphine (PH3), an explosive, highly toxic gas.","created_at":1759428874,"id":"0d8f79a20ae4b5c2740918da828d504d03a2b76c6a94ec81297eb02de4ba2056","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"358c479024989c5e6d09d1f2f95f4203fd1a80aaea1f9efdf9fc5a10d114bd428a87ca0632d61b27f2da04e9797b3a7c3e36faee853f7e39ad585113d3d8661a","tags":[]}] +[14:15:07.093] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:07.154] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:07.214] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:07.275] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:07.335] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:07.396] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:07.457] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:07.517] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:07.578] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:07.639] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:07.699] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:07.760] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:09.459] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:09.459] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:09.459] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:09.459] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:09.762] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I still buy mp3 downloads when it's an option 😂","created_at":1759428907,"id":"121a6a2695eb7b686b8f8138d94d3a20705706cd0a01a89e6ec33b3f6af7c808","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"95c6d67ba28bbc92a7ce3b478e1761213c08bf11d5d923983324152582ea3e190e6d0639611a46d3f1e84a52fab2c54f11127ea805bd4ae6300683421783d87d","tags":[["alt","A short note: I still buy mp3 downloads when it's an option 😂"],["e","d9aab550f3cdef1ca94db056533c9fe5d18b4bb105a2f3f8282f1a865b021276","wss://relay.nostr.band/","root","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["e","b58408458979fe93618724b9f6c8ece517dcf3fb04111ca14ef2d86e5c2b2aaf","wss://nostr.land/","","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a"],["e","a92f06226135511f353a9b130e7b9a4328dddb43430efc448993d18f386b3edd","wss://relay.nostr.band/","reply","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["p","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58","wss://relay.nostr.band/"],["p","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a","wss://nostr.land/"]]}] +[14:15:09.823] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"brit/pol/ - Capybara edition ... >'African tribe' who camped in Scottish woodland evicted class=\"quote\">>How Taylor Swift made herself too big to fail class=\"quote\">>Two Jewish victims killed in ... \nThread: https://boards.4chan.org/pol/thread/517860501\n\nhttps://i.4cdn.org/pol/1759424920243386s.jpg","created_at":1759428903,"id":"572eab9bd773008d06d598184b3989687029d705e96746105d17dc194ec9b3de","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"2b174f23ecd6c8534bf70830ed79728a4a19a38889cefd307fb7605ae8aa066b86b6e47a49b90960a0d0559fafd25f874a05203497b2b1d5a644035a2243b671","tags":[]}] +[14:15:09.883] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"二郎と同じだね❤️","created_at":1759428903,"id":"632af47d731bb799185000ff4db39a2162d126c008aef7ba7baeff8c4cc29faf","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"f010affe85cdc18f5a20e95c5ab96194e4572f76396828d7b4a7bbc6954864ba4725356dffd8f0452c8fe7b7d214f8d598e1be858ee6009df33ce1b39be42cb2","tags":[]}] +[14:15:09.944] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It's important to have role models 🫡","created_at":1759428903,"id":"abc13d7020f4d64998432af530804eebf89dfaeda1ab2770bb1ab4f7e8fcc3bc","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"b54762fc90da118a67d52773eba68c86ea0f62c3f2dc165116a4c9ac0998b6bada57b065c87ce4fdad1ba770920c15da904b86dc17f7c6378d4553399caad0e6","tags":[["alt","A short note: It's important to have role models 🫡"],["e","00c18579f3fab67414b8cca72fe690e18d5ea09bc2502fadb949f1b9ab51e882","wss://nos.lol/","root","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","wss://nostrelites.org/"]]}] +[14:15:10.004] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:15 ------------✄","created_at":1759428900,"id":"192a42cbfb24f1c81e49ba76f39465927bccac7eeaa91aca35ff2b9cd39fb213","kind":1,"pubkey":"d7c13d1edc3e0ba63ab74b859b2809fa15c0e8b538237dc8bd165b3f14cfe365","sig":"cb16feb450eb9fe4b05564b4596ef6f24ef191d72d7591567365d1c49fc3c6fb60ed330d7023846a69657571fdd26e0666bb11f665d61878435dd0f22dff93db","tags":[]}] +[14:15:10.065] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#PawsitiveVibes 🌞🐾 \n \n#dogstr #dog #Nostr #bestfren","created_at":1759428896,"id":"088380563de89d0aee402cf46323d519783e196fd61984e5acc10a7b7becd389","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"837afcf5f4f84ffda4cc1cc2eb8a2c11e7ca2eb053e29fbe819de28e23ae06f3610742beaf242e7d7157b38c131b4fdd6c1dd8415bf3eca33a10aff61889fb4c","tags":[]}] +[14:15:10.125] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"失敗から学ばないわずかな例","created_at":1759428891,"id":"85816dd470639e9eb34d07a2efd7ec95fe1a86d9d545d6f6e1f156941e6681e4","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"5a2594cb6e5bd4fce491d8fbdc2b481a27b6bd45971fc8c91eb82d8cf587c37b9a6830e5af74adc04a9b5e85aaea23364f0a19699a7afd8f61e124e36358e195","tags":[]}] +[14:15:10.186] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💡 Bitcoin Quiz:\nWhat is a block in Bitcoin?\n#bitcoin #quiz","created_at":1759428886,"id":"e0f207d07ab6cb382a79d7ae1009cf67b62596694e1f8bbaf846849c8705fd79","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"467e7af4fa35a415e8ee1dc0e385b7dc263defef48d7f5169d2f3f44414a8afb74eab69823d0292d3f07e01452b64162ad0900958e64973310ca26f2a52c3835","tags":[]}] +[14:15:10.246] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📰 Bitcoin clears $120K as onchain data points to a new BTC accumulation phase\nBitcoin cleared the $120,000 level for the first time since August as long-term selling cools and short-term holders stabilize, hinting at a fresh accumulation phase.\nRead more: https://cointelegraph.com/news/bitcoin-clears-dollar120k-as-onchain-data-points-to-a-new-btc-accumulation-phase?utm_source=rss_feed&utm_medium=rss%3F_t%3D1759428542331%26_nocache%3D1759428542331%26vfff%3D1759428542&utm_campaign=rss_partner_inbound\n#bitcoin #btc #news\n📷 Image: https://images.cointelegraph.com/images/528_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS91cGxvYWRzLzIwMjUtMDIvMDE5NGUyZDQtNGM3Ni03NzgzLTljZTAtOWFmNTYxOGJkZGFi.jpg","created_at":1759428884,"id":"f91711b01933d3dc0a3b0d9b5e89faeb71d70800fd9f04011fa6d64ecb086fef","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"95181c979d843f0273cd4025b089f7c3ad9b25c5e0c79ef0b69d4c91ba22fd845d82e2ca43ee7e15cadae65bed90e8e6ed03e13c3b111f1c6281ab4d46eb30af","tags":[]}] +[14:15:10.307] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"酒飲みすぎると一生飲まないぞって気持ちになるのに気づいたら飲んでるのなんなんだろう","created_at":1759428882,"id":"4e5f918acf70f4518af26742e24053a97107b008e3039567a013a64f04a0339e","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"8b92c8d1684fcf17906945271e3d0b528cc2faea55a81e3a7274b45f9d3f5c56d4e0909b94db5c81e64f8789474bdf24d1166176fb9b2ffa1f93e4ea01d1ed0d","tags":[]}] +[14:15:10.367] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:10.428] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:10.488] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:10.549] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:10.609] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:10.670] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:10.730] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:10.791] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:10.851] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:10.912] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:10.972] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:11.033] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:12.695] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:12.695] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:12.695] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:12.695] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:12.847] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Black bouncer under investigation after choking white student ... 20-year-old student had appeared to push the bouncer out of his way, who then rapidly placed him in a headlock to the shock of onlook... \nThread: https://boards.4chan.org/pol/thread/517855429\n\nhttps://i.4cdn.org/pol/1759421204321095s.jpg","created_at":1759428909,"id":"162601b6d33b1e14f97cf4a381760ffcb54538017d8100799eab515be884ccbd","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"28f3ba1ce8314e76c6fddfc9ab492eea4b4b8044748915b271bf6a09b47d83160fff70a4e6b8751230b9b0a541ae90a1521df61b288e845cb5f2bbf90709c461","tags":[]}] +[14:15:12.907] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I still buy mp3 downloads when it's an option 😂","created_at":1759428907,"id":"121a6a2695eb7b686b8f8138d94d3a20705706cd0a01a89e6ec33b3f6af7c808","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"95c6d67ba28bbc92a7ce3b478e1761213c08bf11d5d923983324152582ea3e190e6d0639611a46d3f1e84a52fab2c54f11127ea805bd4ae6300683421783d87d","tags":[["alt","A short note: I still buy mp3 downloads when it's an option 😂"],["e","d9aab550f3cdef1ca94db056533c9fe5d18b4bb105a2f3f8282f1a865b021276","wss://relay.nostr.band/","root","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["e","b58408458979fe93618724b9f6c8ece517dcf3fb04111ca14ef2d86e5c2b2aaf","wss://nostr.land/","","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a"],["e","a92f06226135511f353a9b130e7b9a4328dddb43430efc448993d18f386b3edd","wss://relay.nostr.band/","reply","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["p","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58","wss://relay.nostr.band/"],["p","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a","wss://nostr.land/"]]}] +[14:15:12.968] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"brit/pol/ - Capybara edition ... >'African tribe' who camped in Scottish woodland evicted class=\"quote\">>How Taylor Swift made herself too big to fail class=\"quote\">>Two Jewish victims killed in ... \nThread: https://boards.4chan.org/pol/thread/517860501\n\nhttps://i.4cdn.org/pol/1759424920243386s.jpg","created_at":1759428903,"id":"572eab9bd773008d06d598184b3989687029d705e96746105d17dc194ec9b3de","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"2b174f23ecd6c8534bf70830ed79728a4a19a38889cefd307fb7605ae8aa066b86b6e47a49b90960a0d0559fafd25f874a05203497b2b1d5a644035a2243b671","tags":[]}] +[14:15:13.028] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"二郎と同じだね❤️","created_at":1759428903,"id":"632af47d731bb799185000ff4db39a2162d126c008aef7ba7baeff8c4cc29faf","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"f010affe85cdc18f5a20e95c5ab96194e4572f76396828d7b4a7bbc6954864ba4725356dffd8f0452c8fe7b7d214f8d598e1be858ee6009df33ce1b39be42cb2","tags":[]}] +[14:15:13.089] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It's important to have role models 🫡","created_at":1759428903,"id":"abc13d7020f4d64998432af530804eebf89dfaeda1ab2770bb1ab4f7e8fcc3bc","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"b54762fc90da118a67d52773eba68c86ea0f62c3f2dc165116a4c9ac0998b6bada57b065c87ce4fdad1ba770920c15da904b86dc17f7c6378d4553399caad0e6","tags":[["alt","A short note: It's important to have role models 🫡"],["e","00c18579f3fab67414b8cca72fe690e18d5ea09bc2502fadb949f1b9ab51e882","wss://nos.lol/","root","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","wss://nostrelites.org/"]]}] +[14:15:13.150] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:15 ------------✄","created_at":1759428900,"id":"192a42cbfb24f1c81e49ba76f39465927bccac7eeaa91aca35ff2b9cd39fb213","kind":1,"pubkey":"d7c13d1edc3e0ba63ab74b859b2809fa15c0e8b538237dc8bd165b3f14cfe365","sig":"cb16feb450eb9fe4b05564b4596ef6f24ef191d72d7591567365d1c49fc3c6fb60ed330d7023846a69657571fdd26e0666bb11f665d61878435dd0f22dff93db","tags":[]}] +[14:15:13.210] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#PawsitiveVibes 🌞🐾 \n \n#dogstr #dog #Nostr #bestfren","created_at":1759428896,"id":"088380563de89d0aee402cf46323d519783e196fd61984e5acc10a7b7becd389","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"837afcf5f4f84ffda4cc1cc2eb8a2c11e7ca2eb053e29fbe819de28e23ae06f3610742beaf242e7d7157b38c131b4fdd6c1dd8415bf3eca33a10aff61889fb4c","tags":[]}] +[14:15:13.271] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"失敗から学ばないわずかな例","created_at":1759428891,"id":"85816dd470639e9eb34d07a2efd7ec95fe1a86d9d545d6f6e1f156941e6681e4","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"5a2594cb6e5bd4fce491d8fbdc2b481a27b6bd45971fc8c91eb82d8cf587c37b9a6830e5af74adc04a9b5e85aaea23364f0a19699a7afd8f61e124e36358e195","tags":[]}] +[14:15:13.331] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💡 Bitcoin Quiz:\nWhat is a block in Bitcoin?\n#bitcoin #quiz","created_at":1759428886,"id":"e0f207d07ab6cb382a79d7ae1009cf67b62596694e1f8bbaf846849c8705fd79","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"467e7af4fa35a415e8ee1dc0e385b7dc263defef48d7f5169d2f3f44414a8afb74eab69823d0292d3f07e01452b64162ad0900958e64973310ca26f2a52c3835","tags":[]}] +[14:15:13.392] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📰 Bitcoin clears $120K as onchain data points to a new BTC accumulation phase\nBitcoin cleared the $120,000 level for the first time since August as long-term selling cools and short-term holders stabilize, hinting at a fresh accumulation phase.\nRead more: https://cointelegraph.com/news/bitcoin-clears-dollar120k-as-onchain-data-points-to-a-new-btc-accumulation-phase?utm_source=rss_feed&utm_medium=rss%3F_t%3D1759428542331%26_nocache%3D1759428542331%26vfff%3D1759428542&utm_campaign=rss_partner_inbound\n#bitcoin #btc #news\n📷 Image: https://images.cointelegraph.com/images/528_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS91cGxvYWRzLzIwMjUtMDIvMDE5NGUyZDQtNGM3Ni03NzgzLTljZTAtOWFmNTYxOGJkZGFi.jpg","created_at":1759428884,"id":"f91711b01933d3dc0a3b0d9b5e89faeb71d70800fd9f04011fa6d64ecb086fef","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"95181c979d843f0273cd4025b089f7c3ad9b25c5e0c79ef0b69d4c91ba22fd845d82e2ca43ee7e15cadae65bed90e8e6ed03e13c3b111f1c6281ab4d46eb30af","tags":[]}] +[14:15:13.452] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:13.513] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:13.573] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:13.634] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:13.694] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:13.755] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:13.815] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:13.876] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:13.936] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:13.997] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:14.058] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:14.118] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:15.819] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:15.819] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:15.819] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:15.819] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:15.971] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Black bouncer under investigation after choking white student ... 20-year-old student had appeared to push the bouncer out of his way, who then rapidly placed him in a headlock to the shock of onlook... \nThread: https://boards.4chan.org/pol/thread/517855429\n\nhttps://i.4cdn.org/pol/1759421204321095s.jpg","created_at":1759428909,"id":"162601b6d33b1e14f97cf4a381760ffcb54538017d8100799eab515be884ccbd","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"28f3ba1ce8314e76c6fddfc9ab492eea4b4b8044748915b271bf6a09b47d83160fff70a4e6b8751230b9b0a541ae90a1521df61b288e845cb5f2bbf90709c461","tags":[]}] +[14:15:16.031] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I still buy mp3 downloads when it's an option 😂","created_at":1759428907,"id":"121a6a2695eb7b686b8f8138d94d3a20705706cd0a01a89e6ec33b3f6af7c808","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"95c6d67ba28bbc92a7ce3b478e1761213c08bf11d5d923983324152582ea3e190e6d0639611a46d3f1e84a52fab2c54f11127ea805bd4ae6300683421783d87d","tags":[["alt","A short note: I still buy mp3 downloads when it's an option 😂"],["e","d9aab550f3cdef1ca94db056533c9fe5d18b4bb105a2f3f8282f1a865b021276","wss://relay.nostr.band/","root","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["e","b58408458979fe93618724b9f6c8ece517dcf3fb04111ca14ef2d86e5c2b2aaf","wss://nostr.land/","","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a"],["e","a92f06226135511f353a9b130e7b9a4328dddb43430efc448993d18f386b3edd","wss://relay.nostr.band/","reply","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["p","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58","wss://relay.nostr.band/"],["p","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a","wss://nostr.land/"]]}] +[14:15:16.092] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"brit/pol/ - Capybara edition ... >'African tribe' who camped in Scottish woodland evicted class=\"quote\">>How Taylor Swift made herself too big to fail class=\"quote\">>Two Jewish victims killed in ... \nThread: https://boards.4chan.org/pol/thread/517860501\n\nhttps://i.4cdn.org/pol/1759424920243386s.jpg","created_at":1759428903,"id":"572eab9bd773008d06d598184b3989687029d705e96746105d17dc194ec9b3de","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"2b174f23ecd6c8534bf70830ed79728a4a19a38889cefd307fb7605ae8aa066b86b6e47a49b90960a0d0559fafd25f874a05203497b2b1d5a644035a2243b671","tags":[]}] +[14:15:16.152] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"二郎と同じだね❤️","created_at":1759428903,"id":"632af47d731bb799185000ff4db39a2162d126c008aef7ba7baeff8c4cc29faf","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"f010affe85cdc18f5a20e95c5ab96194e4572f76396828d7b4a7bbc6954864ba4725356dffd8f0452c8fe7b7d214f8d598e1be858ee6009df33ce1b39be42cb2","tags":[]}] +[14:15:16.213] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It's important to have role models 🫡","created_at":1759428903,"id":"abc13d7020f4d64998432af530804eebf89dfaeda1ab2770bb1ab4f7e8fcc3bc","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"b54762fc90da118a67d52773eba68c86ea0f62c3f2dc165116a4c9ac0998b6bada57b065c87ce4fdad1ba770920c15da904b86dc17f7c6378d4553399caad0e6","tags":[["alt","A short note: It's important to have role models 🫡"],["e","00c18579f3fab67414b8cca72fe690e18d5ea09bc2502fadb949f1b9ab51e882","wss://nos.lol/","root","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","wss://nostrelites.org/"]]}] +[14:15:16.273] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:15 ------------✄","created_at":1759428900,"id":"192a42cbfb24f1c81e49ba76f39465927bccac7eeaa91aca35ff2b9cd39fb213","kind":1,"pubkey":"d7c13d1edc3e0ba63ab74b859b2809fa15c0e8b538237dc8bd165b3f14cfe365","sig":"cb16feb450eb9fe4b05564b4596ef6f24ef191d72d7591567365d1c49fc3c6fb60ed330d7023846a69657571fdd26e0666bb11f665d61878435dd0f22dff93db","tags":[]}] +[14:15:16.334] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#PawsitiveVibes 🌞🐾 \n \n#dogstr #dog #Nostr #bestfren","created_at":1759428896,"id":"088380563de89d0aee402cf46323d519783e196fd61984e5acc10a7b7becd389","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"837afcf5f4f84ffda4cc1cc2eb8a2c11e7ca2eb053e29fbe819de28e23ae06f3610742beaf242e7d7157b38c131b4fdd6c1dd8415bf3eca33a10aff61889fb4c","tags":[]}] +[14:15:16.394] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"失敗から学ばないわずかな例","created_at":1759428891,"id":"85816dd470639e9eb34d07a2efd7ec95fe1a86d9d545d6f6e1f156941e6681e4","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"5a2594cb6e5bd4fce491d8fbdc2b481a27b6bd45971fc8c91eb82d8cf587c37b9a6830e5af74adc04a9b5e85aaea23364f0a19699a7afd8f61e124e36358e195","tags":[]}] +[14:15:16.455] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💡 Bitcoin Quiz:\nWhat is a block in Bitcoin?\n#bitcoin #quiz","created_at":1759428886,"id":"e0f207d07ab6cb382a79d7ae1009cf67b62596694e1f8bbaf846849c8705fd79","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"467e7af4fa35a415e8ee1dc0e385b7dc263defef48d7f5169d2f3f44414a8afb74eab69823d0292d3f07e01452b64162ad0900958e64973310ca26f2a52c3835","tags":[]}] +[14:15:16.515] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📰 Bitcoin clears $120K as onchain data points to a new BTC accumulation phase\nBitcoin cleared the $120,000 level for the first time since August as long-term selling cools and short-term holders stabilize, hinting at a fresh accumulation phase.\nRead more: https://cointelegraph.com/news/bitcoin-clears-dollar120k-as-onchain-data-points-to-a-new-btc-accumulation-phase?utm_source=rss_feed&utm_medium=rss%3F_t%3D1759428542331%26_nocache%3D1759428542331%26vfff%3D1759428542&utm_campaign=rss_partner_inbound\n#bitcoin #btc #news\n📷 Image: https://images.cointelegraph.com/images/528_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS91cGxvYWRzLzIwMjUtMDIvMDE5NGUyZDQtNGM3Ni03NzgzLTljZTAtOWFmNTYxOGJkZGFi.jpg","created_at":1759428884,"id":"f91711b01933d3dc0a3b0d9b5e89faeb71d70800fd9f04011fa6d64ecb086fef","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"95181c979d843f0273cd4025b089f7c3ad9b25c5e0c79ef0b69d4c91ba22fd845d82e2ca43ee7e15cadae65bed90e8e6ed03e13c3b111f1c6281ab4d46eb30af","tags":[]}] +[14:15:16.576] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:16.637] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:16.697] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:16.758] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:16.818] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:16.879] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:16.939] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:17.000] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:17.061] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:17.086] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:17.147] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:17.207] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:18.908] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:18.908] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:18.908] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:18.908] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:19.240] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂も探検したい","created_at":1759428916,"id":"78263645fed8fbed6d3416d9f86d58572df4f1a478b601e266266bfd01853dba","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"17f85e8c04a07c2dd362a584d986695a48d99f6c4d58e124e941f06d08aeba94b6862a547f4784d4d8c2070fba261c947e0b6feb701215892a15bca4ad6b8dc8","tags":[]}] +[14:15:19.301] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Will the fate of planet Earth be bleak without white people? ... When someone talks about preserving the white race, it's because they know that white people are the only ones who can protect the plan... \nThread: https://boards.4channel.org/his/thread/18040382\n\nhttps://i.4cdn.org/his/1759419587988474s.jpg","created_at":1759428915,"id":"930afdbc58c132ace266619bfb5baeb47d69a524bdcc23fb2f8b8504d2f20160","kind":1,"pubkey":"507882f5727ba9196bf790429763883948de3d15c7eba5075c5c16899db608dd","sig":"aff026660254bd08055ebcce78093273318d4f6da31a31a91f349d26fd11e0eabdbfccc1d3fab0e063ada804462ac3cc28dc0f60b93eaf2f80ab7588444b47b6","tags":[]}] +[14:15:19.362] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun kedepan\n\nkira-kira siapa yang akan membangunkan anak muda untuk membuat perubahan?\n\nhanya bisa nyimak.","created_at":1759428915,"id":"0afdf9920d1e7c0adcb5e1df33057cf1b3b5504563e468bd85e5e6d5d86161fe","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"9819e175a25d82f61726e83d9dff700869d70e9332790e4874a49d54c35e2fb3c4e6d615f125ea1911e8c2ebe8950bbf9200eb74f0b09c25e019906d3dcc1ea7","tags":[["alt","A short note: Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun ke..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:15:19.422] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Black bouncer under investigation after choking white student ... 20-year-old student had appeared to push the bouncer out of his way, who then rapidly placed him in a headlock to the shock of onlook... \nThread: https://boards.4chan.org/pol/thread/517855429\n\nhttps://i.4cdn.org/pol/1759421204321095s.jpg","created_at":1759428909,"id":"162601b6d33b1e14f97cf4a381760ffcb54538017d8100799eab515be884ccbd","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"28f3ba1ce8314e76c6fddfc9ab492eea4b4b8044748915b271bf6a09b47d83160fff70a4e6b8751230b9b0a541ae90a1521df61b288e845cb5f2bbf90709c461","tags":[]}] +[14:15:19.482] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I still buy mp3 downloads when it's an option 😂","created_at":1759428907,"id":"121a6a2695eb7b686b8f8138d94d3a20705706cd0a01a89e6ec33b3f6af7c808","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"95c6d67ba28bbc92a7ce3b478e1761213c08bf11d5d923983324152582ea3e190e6d0639611a46d3f1e84a52fab2c54f11127ea805bd4ae6300683421783d87d","tags":[["alt","A short note: I still buy mp3 downloads when it's an option 😂"],["e","d9aab550f3cdef1ca94db056533c9fe5d18b4bb105a2f3f8282f1a865b021276","wss://relay.nostr.band/","root","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["e","b58408458979fe93618724b9f6c8ece517dcf3fb04111ca14ef2d86e5c2b2aaf","wss://nostr.land/","","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a"],["e","a92f06226135511f353a9b130e7b9a4328dddb43430efc448993d18f386b3edd","wss://relay.nostr.band/","reply","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["p","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58","wss://relay.nostr.band/"],["p","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a","wss://nostr.land/"]]}] +[14:15:19.543] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"brit/pol/ - Capybara edition ... >'African tribe' who camped in Scottish woodland evicted class=\"quote\">>How Taylor Swift made herself too big to fail class=\"quote\">>Two Jewish victims killed in ... \nThread: https://boards.4chan.org/pol/thread/517860501\n\nhttps://i.4cdn.org/pol/1759424920243386s.jpg","created_at":1759428903,"id":"572eab9bd773008d06d598184b3989687029d705e96746105d17dc194ec9b3de","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"2b174f23ecd6c8534bf70830ed79728a4a19a38889cefd307fb7605ae8aa066b86b6e47a49b90960a0d0559fafd25f874a05203497b2b1d5a644035a2243b671","tags":[]}] +[14:15:19.603] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"二郎と同じだね❤️","created_at":1759428903,"id":"632af47d731bb799185000ff4db39a2162d126c008aef7ba7baeff8c4cc29faf","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"f010affe85cdc18f5a20e95c5ab96194e4572f76396828d7b4a7bbc6954864ba4725356dffd8f0452c8fe7b7d214f8d598e1be858ee6009df33ce1b39be42cb2","tags":[]}] +[14:15:19.664] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It's important to have role models 🫡","created_at":1759428903,"id":"abc13d7020f4d64998432af530804eebf89dfaeda1ab2770bb1ab4f7e8fcc3bc","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"b54762fc90da118a67d52773eba68c86ea0f62c3f2dc165116a4c9ac0998b6bada57b065c87ce4fdad1ba770920c15da904b86dc17f7c6378d4553399caad0e6","tags":[["alt","A short note: It's important to have role models 🫡"],["e","00c18579f3fab67414b8cca72fe690e18d5ea09bc2502fadb949f1b9ab51e882","wss://nos.lol/","root","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","wss://nostrelites.org/"]]}] +[14:15:19.724] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:15 ------------✄","created_at":1759428900,"id":"192a42cbfb24f1c81e49ba76f39465927bccac7eeaa91aca35ff2b9cd39fb213","kind":1,"pubkey":"d7c13d1edc3e0ba63ab74b859b2809fa15c0e8b538237dc8bd165b3f14cfe365","sig":"cb16feb450eb9fe4b05564b4596ef6f24ef191d72d7591567365d1c49fc3c6fb60ed330d7023846a69657571fdd26e0666bb11f665d61878435dd0f22dff93db","tags":[]}] +[14:15:19.785] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#PawsitiveVibes 🌞🐾 \n \n#dogstr #dog #Nostr #bestfren","created_at":1759428896,"id":"088380563de89d0aee402cf46323d519783e196fd61984e5acc10a7b7becd389","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"837afcf5f4f84ffda4cc1cc2eb8a2c11e7ca2eb053e29fbe819de28e23ae06f3610742beaf242e7d7157b38c131b4fdd6c1dd8415bf3eca33a10aff61889fb4c","tags":[]}] +[14:15:19.845] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:19.906] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:19.966] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:20.027] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:20.087] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:20.148] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:20.208] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:20.269] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:20.329] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:20.390] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:20.451] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:20.511] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:22.211] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:22.211] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:22.211] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:22.211] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:22.513] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂も探検したい","created_at":1759428916,"id":"78263645fed8fbed6d3416d9f86d58572df4f1a478b601e266266bfd01853dba","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"17f85e8c04a07c2dd362a584d986695a48d99f6c4d58e124e941f06d08aeba94b6862a547f4784d4d8c2070fba261c947e0b6feb701215892a15bca4ad6b8dc8","tags":[]}] +[14:15:22.573] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Will the fate of planet Earth be bleak without white people? ... When someone talks about preserving the white race, it's because they know that white people are the only ones who can protect the plan... \nThread: https://boards.4channel.org/his/thread/18040382\n\nhttps://i.4cdn.org/his/1759419587988474s.jpg","created_at":1759428915,"id":"930afdbc58c132ace266619bfb5baeb47d69a524bdcc23fb2f8b8504d2f20160","kind":1,"pubkey":"507882f5727ba9196bf790429763883948de3d15c7eba5075c5c16899db608dd","sig":"aff026660254bd08055ebcce78093273318d4f6da31a31a91f349d26fd11e0eabdbfccc1d3fab0e063ada804462ac3cc28dc0f60b93eaf2f80ab7588444b47b6","tags":[]}] +[14:15:22.633] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun kedepan\n\nkira-kira siapa yang akan membangunkan anak muda untuk membuat perubahan?\n\nhanya bisa nyimak.","created_at":1759428915,"id":"0afdf9920d1e7c0adcb5e1df33057cf1b3b5504563e468bd85e5e6d5d86161fe","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"9819e175a25d82f61726e83d9dff700869d70e9332790e4874a49d54c35e2fb3c4e6d615f125ea1911e8c2ebe8950bbf9200eb74f0b09c25e019906d3dcc1ea7","tags":[["alt","A short note: Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun ke..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:15:22.694] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Black bouncer under investigation after choking white student ... 20-year-old student had appeared to push the bouncer out of his way, who then rapidly placed him in a headlock to the shock of onlook... \nThread: https://boards.4chan.org/pol/thread/517855429\n\nhttps://i.4cdn.org/pol/1759421204321095s.jpg","created_at":1759428909,"id":"162601b6d33b1e14f97cf4a381760ffcb54538017d8100799eab515be884ccbd","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"28f3ba1ce8314e76c6fddfc9ab492eea4b4b8044748915b271bf6a09b47d83160fff70a4e6b8751230b9b0a541ae90a1521df61b288e845cb5f2bbf90709c461","tags":[]}] +[14:15:22.754] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I still buy mp3 downloads when it's an option 😂","created_at":1759428907,"id":"121a6a2695eb7b686b8f8138d94d3a20705706cd0a01a89e6ec33b3f6af7c808","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"95c6d67ba28bbc92a7ce3b478e1761213c08bf11d5d923983324152582ea3e190e6d0639611a46d3f1e84a52fab2c54f11127ea805bd4ae6300683421783d87d","tags":[["alt","A short note: I still buy mp3 downloads when it's an option 😂"],["e","d9aab550f3cdef1ca94db056533c9fe5d18b4bb105a2f3f8282f1a865b021276","wss://relay.nostr.band/","root","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["e","b58408458979fe93618724b9f6c8ece517dcf3fb04111ca14ef2d86e5c2b2aaf","wss://nostr.land/","","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a"],["e","a92f06226135511f353a9b130e7b9a4328dddb43430efc448993d18f386b3edd","wss://relay.nostr.band/","reply","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["p","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58","wss://relay.nostr.band/"],["p","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a","wss://nostr.land/"]]}] +[14:15:22.815] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"brit/pol/ - Capybara edition ... >'African tribe' who camped in Scottish woodland evicted class=\"quote\">>How Taylor Swift made herself too big to fail class=\"quote\">>Two Jewish victims killed in ... \nThread: https://boards.4chan.org/pol/thread/517860501\n\nhttps://i.4cdn.org/pol/1759424920243386s.jpg","created_at":1759428903,"id":"572eab9bd773008d06d598184b3989687029d705e96746105d17dc194ec9b3de","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"2b174f23ecd6c8534bf70830ed79728a4a19a38889cefd307fb7605ae8aa066b86b6e47a49b90960a0d0559fafd25f874a05203497b2b1d5a644035a2243b671","tags":[]}] +[14:15:22.875] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"二郎と同じだね❤️","created_at":1759428903,"id":"632af47d731bb799185000ff4db39a2162d126c008aef7ba7baeff8c4cc29faf","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"f010affe85cdc18f5a20e95c5ab96194e4572f76396828d7b4a7bbc6954864ba4725356dffd8f0452c8fe7b7d214f8d598e1be858ee6009df33ce1b39be42cb2","tags":[]}] +[14:15:22.936] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It's important to have role models 🫡","created_at":1759428903,"id":"abc13d7020f4d64998432af530804eebf89dfaeda1ab2770bb1ab4f7e8fcc3bc","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"b54762fc90da118a67d52773eba68c86ea0f62c3f2dc165116a4c9ac0998b6bada57b065c87ce4fdad1ba770920c15da904b86dc17f7c6378d4553399caad0e6","tags":[["alt","A short note: It's important to have role models 🫡"],["e","00c18579f3fab67414b8cca72fe690e18d5ea09bc2502fadb949f1b9ab51e882","wss://nos.lol/","root","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","wss://nostrelites.org/"]]}] +[14:15:22.996] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:15 ------------✄","created_at":1759428900,"id":"192a42cbfb24f1c81e49ba76f39465927bccac7eeaa91aca35ff2b9cd39fb213","kind":1,"pubkey":"d7c13d1edc3e0ba63ab74b859b2809fa15c0e8b538237dc8bd165b3f14cfe365","sig":"cb16feb450eb9fe4b05564b4596ef6f24ef191d72d7591567365d1c49fc3c6fb60ed330d7023846a69657571fdd26e0666bb11f665d61878435dd0f22dff93db","tags":[]}] +[14:15:23.057] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#PawsitiveVibes 🌞🐾 \n \n#dogstr #dog #Nostr #bestfren","created_at":1759428896,"id":"088380563de89d0aee402cf46323d519783e196fd61984e5acc10a7b7becd389","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"837afcf5f4f84ffda4cc1cc2eb8a2c11e7ca2eb053e29fbe819de28e23ae06f3610742beaf242e7d7157b38c131b4fdd6c1dd8415bf3eca33a10aff61889fb4c","tags":[]}] +[14:15:23.117] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:23.178] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:23.238] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:23.299] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:23.359] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:23.420] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:23.480] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:23.541] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:23.601] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:23.662] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:23.722] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:23.783] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:25.491] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:25.491] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:25.491] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:25.491] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:25.642] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Rapperswil","created_at":1759428925,"id":"50147c2f17aa21d6f5e42ab372637ccff9062d326d10d824d63f314b42b48979","kind":1,"pubkey":"e989aa6e0137d52a410ecd89ae59f7adbfb0bdec9786b9181c3707954b4cfa69","sig":"c7a0e3c3e7ea9ff31da9dd301d92184daf1f32f28ca9c1a3912fbde4c524582f1df1ab6c2d9f0941b74082bc1dc4aecdbde26baf61c4aaf62a5a7d48db381608","tags":[["e","e64cd11167e1a39bcac8e8752440749e1e8a8b3d7abdd23b4b1480f757845183","wss://nos.lol","root"],["e","609a860530f5b6f9069c5e5dd1a55ab0a126b1d00d79ac109b0a634934910a09","","reply"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4"],["t","rapperswil"]]}] +[14:15:25.703] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Car Repair General ... Replacing Struts With Shit Tools Edition \nThread: https://boards.4channel.org/diy/thread/2948294\n\nhttps://i.4cdn.org/diy/1759375177870525s.jpg","created_at":1759428922,"id":"0085058fdbc6fc68f5e1f0f3c6c0e201bffc9148cac727f2661781981ae8fda8","kind":1,"pubkey":"a826d770d2d94e0c0341af82ec18f0b913b3917ce02b9fcbbc5bfaf8498925c6","sig":"0469fa07588d1d93780666fb9ccc133e4851768a32e236af44542f3863f68d846d89047bdcb11622bdde39044233b47082d7f6f886be926f74e339315cdef407","tags":[]}] +[14:15:25.764] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂も探検したい","created_at":1759428916,"id":"78263645fed8fbed6d3416d9f86d58572df4f1a478b601e266266bfd01853dba","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"17f85e8c04a07c2dd362a584d986695a48d99f6c4d58e124e941f06d08aeba94b6862a547f4784d4d8c2070fba261c947e0b6feb701215892a15bca4ad6b8dc8","tags":[]}] +[14:15:25.824] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Will the fate of planet Earth be bleak without white people? ... When someone talks about preserving the white race, it's because they know that white people are the only ones who can protect the plan... \nThread: https://boards.4channel.org/his/thread/18040382\n\nhttps://i.4cdn.org/his/1759419587988474s.jpg","created_at":1759428915,"id":"930afdbc58c132ace266619bfb5baeb47d69a524bdcc23fb2f8b8504d2f20160","kind":1,"pubkey":"507882f5727ba9196bf790429763883948de3d15c7eba5075c5c16899db608dd","sig":"aff026660254bd08055ebcce78093273318d4f6da31a31a91f349d26fd11e0eabdbfccc1d3fab0e063ada804462ac3cc28dc0f60b93eaf2f80ab7588444b47b6","tags":[]}] +[14:15:25.884] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun kedepan\n\nkira-kira siapa yang akan membangunkan anak muda untuk membuat perubahan?\n\nhanya bisa nyimak.","created_at":1759428915,"id":"0afdf9920d1e7c0adcb5e1df33057cf1b3b5504563e468bd85e5e6d5d86161fe","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"9819e175a25d82f61726e83d9dff700869d70e9332790e4874a49d54c35e2fb3c4e6d615f125ea1911e8c2ebe8950bbf9200eb74f0b09c25e019906d3dcc1ea7","tags":[["alt","A short note: Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun ke..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:15:25.945] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Black bouncer under investigation after choking white student ... 20-year-old student had appeared to push the bouncer out of his way, who then rapidly placed him in a headlock to the shock of onlook... \nThread: https://boards.4chan.org/pol/thread/517855429\n\nhttps://i.4cdn.org/pol/1759421204321095s.jpg","created_at":1759428909,"id":"162601b6d33b1e14f97cf4a381760ffcb54538017d8100799eab515be884ccbd","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"28f3ba1ce8314e76c6fddfc9ab492eea4b4b8044748915b271bf6a09b47d83160fff70a4e6b8751230b9b0a541ae90a1521df61b288e845cb5f2bbf90709c461","tags":[]}] +[14:15:26.005] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I still buy mp3 downloads when it's an option 😂","created_at":1759428907,"id":"121a6a2695eb7b686b8f8138d94d3a20705706cd0a01a89e6ec33b3f6af7c808","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"95c6d67ba28bbc92a7ce3b478e1761213c08bf11d5d923983324152582ea3e190e6d0639611a46d3f1e84a52fab2c54f11127ea805bd4ae6300683421783d87d","tags":[["alt","A short note: I still buy mp3 downloads when it's an option 😂"],["e","d9aab550f3cdef1ca94db056533c9fe5d18b4bb105a2f3f8282f1a865b021276","wss://relay.nostr.band/","root","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["e","b58408458979fe93618724b9f6c8ece517dcf3fb04111ca14ef2d86e5c2b2aaf","wss://nostr.land/","","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a"],["e","a92f06226135511f353a9b130e7b9a4328dddb43430efc448993d18f386b3edd","wss://relay.nostr.band/","reply","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["p","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58","wss://relay.nostr.band/"],["p","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a","wss://nostr.land/"]]}] +[14:15:26.066] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"brit/pol/ - Capybara edition ... >'African tribe' who camped in Scottish woodland evicted class=\"quote\">>How Taylor Swift made herself too big to fail class=\"quote\">>Two Jewish victims killed in ... \nThread: https://boards.4chan.org/pol/thread/517860501\n\nhttps://i.4cdn.org/pol/1759424920243386s.jpg","created_at":1759428903,"id":"572eab9bd773008d06d598184b3989687029d705e96746105d17dc194ec9b3de","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"2b174f23ecd6c8534bf70830ed79728a4a19a38889cefd307fb7605ae8aa066b86b6e47a49b90960a0d0559fafd25f874a05203497b2b1d5a644035a2243b671","tags":[]}] +[14:15:26.126] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"二郎と同じだね❤️","created_at":1759428903,"id":"632af47d731bb799185000ff4db39a2162d126c008aef7ba7baeff8c4cc29faf","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"f010affe85cdc18f5a20e95c5ab96194e4572f76396828d7b4a7bbc6954864ba4725356dffd8f0452c8fe7b7d214f8d598e1be858ee6009df33ce1b39be42cb2","tags":[]}] +[14:15:26.187] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It's important to have role models 🫡","created_at":1759428903,"id":"abc13d7020f4d64998432af530804eebf89dfaeda1ab2770bb1ab4f7e8fcc3bc","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"b54762fc90da118a67d52773eba68c86ea0f62c3f2dc165116a4c9ac0998b6bada57b065c87ce4fdad1ba770920c15da904b86dc17f7c6378d4553399caad0e6","tags":[["alt","A short note: It's important to have role models 🫡"],["e","00c18579f3fab67414b8cca72fe690e18d5ea09bc2502fadb949f1b9ab51e882","wss://nos.lol/","root","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","wss://nostrelites.org/"]]}] +[14:15:26.247] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:26.308] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:26.368] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:26.429] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:26.489] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:26.550] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:26.610] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:26.671] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:26.731] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:26.791] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:26.852] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:26.912] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:28.571] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:28.571] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:28.571] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:28.572] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:28.722] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this is the note of the day","created_at":1759428928,"id":"e7d86bedb3b0575739ed5defd53d0c7a580f55c3b093ab42b0caa342c7ee0a15","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"398d550d179c7c6bcb605e39d923b1e1d44983bf231a673f67ee0df15639238ab6548971f19c192f1243ea8f4a9438b76c01c3fd4a79073361d7071708570418","tags":[["alt","A short note: this is the note of the day"],["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.nostr.band/","root","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["e","ee66a32b0a3a68533ea6d879f2cb2ec87b0d5660642e76195f1e95bfad64f96b","wss://nostr.land/","reply","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe","wss://welcome.nostr.wine/"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370","wss://nostr.land/"]]}] +[14:15:28.783] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Rapperswil","created_at":1759428925,"id":"50147c2f17aa21d6f5e42ab372637ccff9062d326d10d824d63f314b42b48979","kind":1,"pubkey":"e989aa6e0137d52a410ecd89ae59f7adbfb0bdec9786b9181c3707954b4cfa69","sig":"c7a0e3c3e7ea9ff31da9dd301d92184daf1f32f28ca9c1a3912fbde4c524582f1df1ab6c2d9f0941b74082bc1dc4aecdbde26baf61c4aaf62a5a7d48db381608","tags":[["e","e64cd11167e1a39bcac8e8752440749e1e8a8b3d7abdd23b4b1480f757845183","wss://nos.lol","root"],["e","609a860530f5b6f9069c5e5dd1a55ab0a126b1d00d79ac109b0a634934910a09","","reply"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4"],["t","rapperswil"]]}] +[14:15:28.844] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Car Repair General ... Replacing Struts With Shit Tools Edition \nThread: https://boards.4channel.org/diy/thread/2948294\n\nhttps://i.4cdn.org/diy/1759375177870525s.jpg","created_at":1759428922,"id":"0085058fdbc6fc68f5e1f0f3c6c0e201bffc9148cac727f2661781981ae8fda8","kind":1,"pubkey":"a826d770d2d94e0c0341af82ec18f0b913b3917ce02b9fcbbc5bfaf8498925c6","sig":"0469fa07588d1d93780666fb9ccc133e4851768a32e236af44542f3863f68d846d89047bdcb11622bdde39044233b47082d7f6f886be926f74e339315cdef407","tags":[]}] +[14:15:28.904] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂も探検したい","created_at":1759428916,"id":"78263645fed8fbed6d3416d9f86d58572df4f1a478b601e266266bfd01853dba","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"17f85e8c04a07c2dd362a584d986695a48d99f6c4d58e124e941f06d08aeba94b6862a547f4784d4d8c2070fba261c947e0b6feb701215892a15bca4ad6b8dc8","tags":[]}] +[14:15:28.965] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Will the fate of planet Earth be bleak without white people? ... When someone talks about preserving the white race, it's because they know that white people are the only ones who can protect the plan... \nThread: https://boards.4channel.org/his/thread/18040382\n\nhttps://i.4cdn.org/his/1759419587988474s.jpg","created_at":1759428915,"id":"930afdbc58c132ace266619bfb5baeb47d69a524bdcc23fb2f8b8504d2f20160","kind":1,"pubkey":"507882f5727ba9196bf790429763883948de3d15c7eba5075c5c16899db608dd","sig":"aff026660254bd08055ebcce78093273318d4f6da31a31a91f349d26fd11e0eabdbfccc1d3fab0e063ada804462ac3cc28dc0f60b93eaf2f80ab7588444b47b6","tags":[]}] +[14:15:29.025] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun kedepan\n\nkira-kira siapa yang akan membangunkan anak muda untuk membuat perubahan?\n\nhanya bisa nyimak.","created_at":1759428915,"id":"0afdf9920d1e7c0adcb5e1df33057cf1b3b5504563e468bd85e5e6d5d86161fe","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"9819e175a25d82f61726e83d9dff700869d70e9332790e4874a49d54c35e2fb3c4e6d615f125ea1911e8c2ebe8950bbf9200eb74f0b09c25e019906d3dcc1ea7","tags":[["alt","A short note: Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun ke..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:15:29.086] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Black bouncer under investigation after choking white student ... 20-year-old student had appeared to push the bouncer out of his way, who then rapidly placed him in a headlock to the shock of onlook... \nThread: https://boards.4chan.org/pol/thread/517855429\n\nhttps://i.4cdn.org/pol/1759421204321095s.jpg","created_at":1759428909,"id":"162601b6d33b1e14f97cf4a381760ffcb54538017d8100799eab515be884ccbd","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"28f3ba1ce8314e76c6fddfc9ab492eea4b4b8044748915b271bf6a09b47d83160fff70a4e6b8751230b9b0a541ae90a1521df61b288e845cb5f2bbf90709c461","tags":[]}] +[14:15:29.147] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I still buy mp3 downloads when it's an option 😂","created_at":1759428907,"id":"121a6a2695eb7b686b8f8138d94d3a20705706cd0a01a89e6ec33b3f6af7c808","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"95c6d67ba28bbc92a7ce3b478e1761213c08bf11d5d923983324152582ea3e190e6d0639611a46d3f1e84a52fab2c54f11127ea805bd4ae6300683421783d87d","tags":[["alt","A short note: I still buy mp3 downloads when it's an option 😂"],["e","d9aab550f3cdef1ca94db056533c9fe5d18b4bb105a2f3f8282f1a865b021276","wss://relay.nostr.band/","root","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["e","b58408458979fe93618724b9f6c8ece517dcf3fb04111ca14ef2d86e5c2b2aaf","wss://nostr.land/","","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a"],["e","a92f06226135511f353a9b130e7b9a4328dddb43430efc448993d18f386b3edd","wss://relay.nostr.band/","reply","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["p","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58","wss://relay.nostr.band/"],["p","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a","wss://nostr.land/"]]}] +[14:15:29.207] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"brit/pol/ - Capybara edition ... >'African tribe' who camped in Scottish woodland evicted class=\"quote\">>How Taylor Swift made herself too big to fail class=\"quote\">>Two Jewish victims killed in ... \nThread: https://boards.4chan.org/pol/thread/517860501\n\nhttps://i.4cdn.org/pol/1759424920243386s.jpg","created_at":1759428903,"id":"572eab9bd773008d06d598184b3989687029d705e96746105d17dc194ec9b3de","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"2b174f23ecd6c8534bf70830ed79728a4a19a38889cefd307fb7605ae8aa066b86b6e47a49b90960a0d0559fafd25f874a05203497b2b1d5a644035a2243b671","tags":[]}] +[14:15:29.267] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"二郎と同じだね❤️","created_at":1759428903,"id":"632af47d731bb799185000ff4db39a2162d126c008aef7ba7baeff8c4cc29faf","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"f010affe85cdc18f5a20e95c5ab96194e4572f76396828d7b4a7bbc6954864ba4725356dffd8f0452c8fe7b7d214f8d598e1be858ee6009df33ce1b39be42cb2","tags":[]}] +[14:15:29.328] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:29.388] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:29.449] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:29.510] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:29.570] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:29.631] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:29.691] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:29.752] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:29.812] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:29.873] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:29.933] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:29.994] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:31.691] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:31.692] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:31.692] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:31.692] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:31.843] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf28rkdkgszsgmxy6uet7fqrmacrdgzkkgpz9mhxue69uhkummnw3ezuamfdejj7q3qqnykqjt67cv2ux84z3anuhpsnmea3f39za52rsyzpcpvjdmgesasxpqqqqqqzf3f6f4","created_at":1759428929,"id":"4fe18771deb9fff83ad3e28934deb8c0a388d0150903bf5802b79796943ae11c","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"babc831990103ab78dda88bde637e6bddffe73a5fd123638cd64e63cb3667761c6e5c22736bc2c4bbf16b04ca4da164d80765d0cf93004d3cbb5ee9a818b8461","tags":[["alt","A short note: Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf2..."],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["q","5ac3bc4fbb72d23fc8380f212a38ecdb22028236626b995f9201efb81b502b59","wss://nostr.wine/","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["zap","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/","0.9"],["zap","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/","0.1"]]}] +[14:15:31.903] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Trump Says Radical Left's Shutdown Misstep Opens \"Unprecedented Opportunity\" For Mass Firings Of Fed Workers\nhttps://www.zerohedge.com/political/democrats-govt-shutdown-misstep-revives-trump-doge-clear-out-dead-wood-bloated-dc","created_at":1759428929,"id":"9712de449c96bf9cd5cd8f77c41f475b5f43fe9d8fda9060d646cedcc3c19349","kind":1,"pubkey":"164857321a7b0e7403e08f1bef80967aca9385fbde04b71da2e44010823d46ad","sig":"046bc8ec673fd4e1aca4d2f7380b83ad47ddbda881c30d4e45a2987206a74333eed108432327a9b389b9788db53afce479ee06bf853c6ad693d6e5330a820f16","tags":[]}] +[14:15:31.964] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this is the note of the day","created_at":1759428928,"id":"e7d86bedb3b0575739ed5defd53d0c7a580f55c3b093ab42b0caa342c7ee0a15","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"398d550d179c7c6bcb605e39d923b1e1d44983bf231a673f67ee0df15639238ab6548971f19c192f1243ea8f4a9438b76c01c3fd4a79073361d7071708570418","tags":[["alt","A short note: this is the note of the day"],["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.nostr.band/","root","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["e","ee66a32b0a3a68533ea6d879f2cb2ec87b0d5660642e76195f1e95bfad64f96b","wss://nostr.land/","reply","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe","wss://welcome.nostr.wine/"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370","wss://nostr.land/"]]}] +[14:15:32.025] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Rapperswil","created_at":1759428925,"id":"50147c2f17aa21d6f5e42ab372637ccff9062d326d10d824d63f314b42b48979","kind":1,"pubkey":"e989aa6e0137d52a410ecd89ae59f7adbfb0bdec9786b9181c3707954b4cfa69","sig":"c7a0e3c3e7ea9ff31da9dd301d92184daf1f32f28ca9c1a3912fbde4c524582f1df1ab6c2d9f0941b74082bc1dc4aecdbde26baf61c4aaf62a5a7d48db381608","tags":[["e","e64cd11167e1a39bcac8e8752440749e1e8a8b3d7abdd23b4b1480f757845183","wss://nos.lol","root"],["e","609a860530f5b6f9069c5e5dd1a55ab0a126b1d00d79ac109b0a634934910a09","","reply"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4"],["t","rapperswil"]]}] +[14:15:32.085] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Car Repair General ... Replacing Struts With Shit Tools Edition \nThread: https://boards.4channel.org/diy/thread/2948294\n\nhttps://i.4cdn.org/diy/1759375177870525s.jpg","created_at":1759428922,"id":"0085058fdbc6fc68f5e1f0f3c6c0e201bffc9148cac727f2661781981ae8fda8","kind":1,"pubkey":"a826d770d2d94e0c0341af82ec18f0b913b3917ce02b9fcbbc5bfaf8498925c6","sig":"0469fa07588d1d93780666fb9ccc133e4851768a32e236af44542f3863f68d846d89047bdcb11622bdde39044233b47082d7f6f886be926f74e339315cdef407","tags":[]}] +[14:15:32.111] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂も探検したい","created_at":1759428916,"id":"78263645fed8fbed6d3416d9f86d58572df4f1a478b601e266266bfd01853dba","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"17f85e8c04a07c2dd362a584d986695a48d99f6c4d58e124e941f06d08aeba94b6862a547f4784d4d8c2070fba261c947e0b6feb701215892a15bca4ad6b8dc8","tags":[]}] +[14:15:32.171] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Will the fate of planet Earth be bleak without white people? ... When someone talks about preserving the white race, it's because they know that white people are the only ones who can protect the plan... \nThread: https://boards.4channel.org/his/thread/18040382\n\nhttps://i.4cdn.org/his/1759419587988474s.jpg","created_at":1759428915,"id":"930afdbc58c132ace266619bfb5baeb47d69a524bdcc23fb2f8b8504d2f20160","kind":1,"pubkey":"507882f5727ba9196bf790429763883948de3d15c7eba5075c5c16899db608dd","sig":"aff026660254bd08055ebcce78093273318d4f6da31a31a91f349d26fd11e0eabdbfccc1d3fab0e063ada804462ac3cc28dc0f60b93eaf2f80ab7588444b47b6","tags":[]}] +[14:15:32.232] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun kedepan\n\nkira-kira siapa yang akan membangunkan anak muda untuk membuat perubahan?\n\nhanya bisa nyimak.","created_at":1759428915,"id":"0afdf9920d1e7c0adcb5e1df33057cf1b3b5504563e468bd85e5e6d5d86161fe","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"9819e175a25d82f61726e83d9dff700869d70e9332790e4874a49d54c35e2fb3c4e6d615f125ea1911e8c2ebe8950bbf9200eb74f0b09c25e019906d3dcc1ea7","tags":[["alt","A short note: Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun ke..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:15:32.292] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Black bouncer under investigation after choking white student ... 20-year-old student had appeared to push the bouncer out of his way, who then rapidly placed him in a headlock to the shock of onlook... \nThread: https://boards.4chan.org/pol/thread/517855429\n\nhttps://i.4cdn.org/pol/1759421204321095s.jpg","created_at":1759428909,"id":"162601b6d33b1e14f97cf4a381760ffcb54538017d8100799eab515be884ccbd","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"28f3ba1ce8314e76c6fddfc9ab492eea4b4b8044748915b271bf6a09b47d83160fff70a4e6b8751230b9b0a541ae90a1521df61b288e845cb5f2bbf90709c461","tags":[]}] +[14:15:32.353] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I still buy mp3 downloads when it's an option 😂","created_at":1759428907,"id":"121a6a2695eb7b686b8f8138d94d3a20705706cd0a01a89e6ec33b3f6af7c808","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"95c6d67ba28bbc92a7ce3b478e1761213c08bf11d5d923983324152582ea3e190e6d0639611a46d3f1e84a52fab2c54f11127ea805bd4ae6300683421783d87d","tags":[["alt","A short note: I still buy mp3 downloads when it's an option 😂"],["e","d9aab550f3cdef1ca94db056533c9fe5d18b4bb105a2f3f8282f1a865b021276","wss://relay.nostr.band/","root","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["e","b58408458979fe93618724b9f6c8ece517dcf3fb04111ca14ef2d86e5c2b2aaf","wss://nostr.land/","","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a"],["e","a92f06226135511f353a9b130e7b9a4328dddb43430efc448993d18f386b3edd","wss://relay.nostr.band/","reply","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["p","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58","wss://relay.nostr.band/"],["p","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a","wss://nostr.land/"]]}] +[14:15:32.414] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:32.474] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:32.535] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:32.596] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:32.656] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:32.717] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:32.777] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:32.838] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:32.898] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:32.959] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:33.019] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:33.080] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:34.781] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:34.781] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:34.781] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:34.781] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:34.932] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🏁🐫 Silk-Road Racing Team\n\n#silkroad #freeross #bitcoin #racing\n\n\n⚡️https://ronin21.xyz/products/silk-road-racing-team-heavyweight-t-shirt?variant=51175733789014\nhttps://blossom.primal.net/938bf1e974172957d962e07dc9365c06424c5f62aae3ceb1562e258cc5a0d939.jpg","created_at":1759428931,"id":"ae45a55b877f321295ba976e4d7fe1b73b8bbcbc76fbbd11f874a35c7f901809","kind":1,"pubkey":"163717aed71f45fe18e706bb1230a34aea815043acb22f54c5cdfe30d0c96bc4","sig":"4167314c607129f6d3109d385458ef112c61f29bdb9efbe582cac76a289441560b9ef7b1d58579a86642a1a2250a6dba2a4058232187735a3c9821a7323883e2","tags":[["t","silkroad"],["t","freeross"],["t","bitcoin"],["t","racing"]]}] +[14:15:34.993] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf28rkdkgszsgmxy6uet7fqrmacrdgzkkgpz9mhxue69uhkummnw3ezuamfdejj7q3qqnykqjt67cv2ux84z3anuhpsnmea3f39za52rsyzpcpvjdmgesasxpqqqqqqzf3f6f4","created_at":1759428929,"id":"4fe18771deb9fff83ad3e28934deb8c0a388d0150903bf5802b79796943ae11c","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"babc831990103ab78dda88bde637e6bddffe73a5fd123638cd64e63cb3667761c6e5c22736bc2c4bbf16b04ca4da164d80765d0cf93004d3cbb5ee9a818b8461","tags":[["alt","A short note: Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf2..."],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["q","5ac3bc4fbb72d23fc8380f212a38ecdb22028236626b995f9201efb81b502b59","wss://nostr.wine/","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["zap","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/","0.9"],["zap","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/","0.1"]]}] +[14:15:35.053] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Trump Says Radical Left's Shutdown Misstep Opens \"Unprecedented Opportunity\" For Mass Firings Of Fed Workers\nhttps://www.zerohedge.com/political/democrats-govt-shutdown-misstep-revives-trump-doge-clear-out-dead-wood-bloated-dc","created_at":1759428929,"id":"9712de449c96bf9cd5cd8f77c41f475b5f43fe9d8fda9060d646cedcc3c19349","kind":1,"pubkey":"164857321a7b0e7403e08f1bef80967aca9385fbde04b71da2e44010823d46ad","sig":"046bc8ec673fd4e1aca4d2f7380b83ad47ddbda881c30d4e45a2987206a74333eed108432327a9b389b9788db53afce479ee06bf853c6ad693d6e5330a820f16","tags":[]}] +[14:15:35.114] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this is the note of the day","created_at":1759428928,"id":"e7d86bedb3b0575739ed5defd53d0c7a580f55c3b093ab42b0caa342c7ee0a15","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"398d550d179c7c6bcb605e39d923b1e1d44983bf231a673f67ee0df15639238ab6548971f19c192f1243ea8f4a9438b76c01c3fd4a79073361d7071708570418","tags":[["alt","A short note: this is the note of the day"],["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.nostr.band/","root","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["e","ee66a32b0a3a68533ea6d879f2cb2ec87b0d5660642e76195f1e95bfad64f96b","wss://nostr.land/","reply","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe","wss://welcome.nostr.wine/"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370","wss://nostr.land/"]]}] +[14:15:35.174] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Rapperswil","created_at":1759428925,"id":"50147c2f17aa21d6f5e42ab372637ccff9062d326d10d824d63f314b42b48979","kind":1,"pubkey":"e989aa6e0137d52a410ecd89ae59f7adbfb0bdec9786b9181c3707954b4cfa69","sig":"c7a0e3c3e7ea9ff31da9dd301d92184daf1f32f28ca9c1a3912fbde4c524582f1df1ab6c2d9f0941b74082bc1dc4aecdbde26baf61c4aaf62a5a7d48db381608","tags":[["e","e64cd11167e1a39bcac8e8752440749e1e8a8b3d7abdd23b4b1480f757845183","wss://nos.lol","root"],["e","609a860530f5b6f9069c5e5dd1a55ab0a126b1d00d79ac109b0a634934910a09","","reply"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4"],["t","rapperswil"]]}] +[14:15:35.235] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Car Repair General ... Replacing Struts With Shit Tools Edition \nThread: https://boards.4channel.org/diy/thread/2948294\n\nhttps://i.4cdn.org/diy/1759375177870525s.jpg","created_at":1759428922,"id":"0085058fdbc6fc68f5e1f0f3c6c0e201bffc9148cac727f2661781981ae8fda8","kind":1,"pubkey":"a826d770d2d94e0c0341af82ec18f0b913b3917ce02b9fcbbc5bfaf8498925c6","sig":"0469fa07588d1d93780666fb9ccc133e4851768a32e236af44542f3863f68d846d89047bdcb11622bdde39044233b47082d7f6f886be926f74e339315cdef407","tags":[]}] +[14:15:35.296] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂も探検したい","created_at":1759428916,"id":"78263645fed8fbed6d3416d9f86d58572df4f1a478b601e266266bfd01853dba","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"17f85e8c04a07c2dd362a584d986695a48d99f6c4d58e124e941f06d08aeba94b6862a547f4784d4d8c2070fba261c947e0b6feb701215892a15bca4ad6b8dc8","tags":[]}] +[14:15:35.356] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Will the fate of planet Earth be bleak without white people? ... When someone talks about preserving the white race, it's because they know that white people are the only ones who can protect the plan... \nThread: https://boards.4channel.org/his/thread/18040382\n\nhttps://i.4cdn.org/his/1759419587988474s.jpg","created_at":1759428915,"id":"930afdbc58c132ace266619bfb5baeb47d69a524bdcc23fb2f8b8504d2f20160","kind":1,"pubkey":"507882f5727ba9196bf790429763883948de3d15c7eba5075c5c16899db608dd","sig":"aff026660254bd08055ebcce78093273318d4f6da31a31a91f349d26fd11e0eabdbfccc1d3fab0e063ada804462ac3cc28dc0f60b93eaf2f80ab7588444b47b6","tags":[]}] +[14:15:35.417] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun kedepan\n\nkira-kira siapa yang akan membangunkan anak muda untuk membuat perubahan?\n\nhanya bisa nyimak.","created_at":1759428915,"id":"0afdf9920d1e7c0adcb5e1df33057cf1b3b5504563e468bd85e5e6d5d86161fe","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"9819e175a25d82f61726e83d9dff700869d70e9332790e4874a49d54c35e2fb3c4e6d615f125ea1911e8c2ebe8950bbf9200eb74f0b09c25e019906d3dcc1ea7","tags":[["alt","A short note: Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun ke..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:15:35.477] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Black bouncer under investigation after choking white student ... 20-year-old student had appeared to push the bouncer out of his way, who then rapidly placed him in a headlock to the shock of onlook... \nThread: https://boards.4chan.org/pol/thread/517855429\n\nhttps://i.4cdn.org/pol/1759421204321095s.jpg","created_at":1759428909,"id":"162601b6d33b1e14f97cf4a381760ffcb54538017d8100799eab515be884ccbd","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"28f3ba1ce8314e76c6fddfc9ab492eea4b4b8044748915b271bf6a09b47d83160fff70a4e6b8751230b9b0a541ae90a1521df61b288e845cb5f2bbf90709c461","tags":[]}] +[14:15:35.538] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:35.598] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:35.659] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:35.719] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:35.780] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:35.840] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:35.901] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:35.961] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:36.022] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:36.082] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:36.143] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:36.203] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:37.866] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:37.866] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:37.866] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:37.866] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:38.018] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🏁🐫 Silk-Road Racing Team\n\n#silkroad #freeross #bitcoin #racing\n\n\n⚡️https://ronin21.xyz/products/silk-road-racing-team-heavyweight-t-shirt?variant=51175733789014\nhttps://blossom.primal.net/938bf1e974172957d962e07dc9365c06424c5f62aae3ceb1562e258cc5a0d939.jpg","created_at":1759428931,"id":"ae45a55b877f321295ba976e4d7fe1b73b8bbcbc76fbbd11f874a35c7f901809","kind":1,"pubkey":"163717aed71f45fe18e706bb1230a34aea815043acb22f54c5cdfe30d0c96bc4","sig":"4167314c607129f6d3109d385458ef112c61f29bdb9efbe582cac76a289441560b9ef7b1d58579a86642a1a2250a6dba2a4058232187735a3c9821a7323883e2","tags":[["t","silkroad"],["t","freeross"],["t","bitcoin"],["t","racing"]]}] +[14:15:38.078] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf28rkdkgszsgmxy6uet7fqrmacrdgzkkgpz9mhxue69uhkummnw3ezuamfdejj7q3qqnykqjt67cv2ux84z3anuhpsnmea3f39za52rsyzpcpvjdmgesasxpqqqqqqzf3f6f4","created_at":1759428929,"id":"4fe18771deb9fff83ad3e28934deb8c0a388d0150903bf5802b79796943ae11c","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"babc831990103ab78dda88bde637e6bddffe73a5fd123638cd64e63cb3667761c6e5c22736bc2c4bbf16b04ca4da164d80765d0cf93004d3cbb5ee9a818b8461","tags":[["alt","A short note: Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf2..."],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["q","5ac3bc4fbb72d23fc8380f212a38ecdb22028236626b995f9201efb81b502b59","wss://nostr.wine/","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["zap","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/","0.9"],["zap","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/","0.1"]]}] +[14:15:38.139] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Trump Says Radical Left's Shutdown Misstep Opens \"Unprecedented Opportunity\" For Mass Firings Of Fed Workers\nhttps://www.zerohedge.com/political/democrats-govt-shutdown-misstep-revives-trump-doge-clear-out-dead-wood-bloated-dc","created_at":1759428929,"id":"9712de449c96bf9cd5cd8f77c41f475b5f43fe9d8fda9060d646cedcc3c19349","kind":1,"pubkey":"164857321a7b0e7403e08f1bef80967aca9385fbde04b71da2e44010823d46ad","sig":"046bc8ec673fd4e1aca4d2f7380b83ad47ddbda881c30d4e45a2987206a74333eed108432327a9b389b9788db53afce479ee06bf853c6ad693d6e5330a820f16","tags":[]}] +[14:15:38.199] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this is the note of the day","created_at":1759428928,"id":"e7d86bedb3b0575739ed5defd53d0c7a580f55c3b093ab42b0caa342c7ee0a15","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"398d550d179c7c6bcb605e39d923b1e1d44983bf231a673f67ee0df15639238ab6548971f19c192f1243ea8f4a9438b76c01c3fd4a79073361d7071708570418","tags":[["alt","A short note: this is the note of the day"],["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.nostr.band/","root","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["e","ee66a32b0a3a68533ea6d879f2cb2ec87b0d5660642e76195f1e95bfad64f96b","wss://nostr.land/","reply","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe","wss://welcome.nostr.wine/"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370","wss://nostr.land/"]]}] +[14:15:38.260] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Rapperswil","created_at":1759428925,"id":"50147c2f17aa21d6f5e42ab372637ccff9062d326d10d824d63f314b42b48979","kind":1,"pubkey":"e989aa6e0137d52a410ecd89ae59f7adbfb0bdec9786b9181c3707954b4cfa69","sig":"c7a0e3c3e7ea9ff31da9dd301d92184daf1f32f28ca9c1a3912fbde4c524582f1df1ab6c2d9f0941b74082bc1dc4aecdbde26baf61c4aaf62a5a7d48db381608","tags":[["e","e64cd11167e1a39bcac8e8752440749e1e8a8b3d7abdd23b4b1480f757845183","wss://nos.lol","root"],["e","609a860530f5b6f9069c5e5dd1a55ab0a126b1d00d79ac109b0a634934910a09","","reply"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4"],["t","rapperswil"]]}] +[14:15:38.321] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Car Repair General ... Replacing Struts With Shit Tools Edition \nThread: https://boards.4channel.org/diy/thread/2948294\n\nhttps://i.4cdn.org/diy/1759375177870525s.jpg","created_at":1759428922,"id":"0085058fdbc6fc68f5e1f0f3c6c0e201bffc9148cac727f2661781981ae8fda8","kind":1,"pubkey":"a826d770d2d94e0c0341af82ec18f0b913b3917ce02b9fcbbc5bfaf8498925c6","sig":"0469fa07588d1d93780666fb9ccc133e4851768a32e236af44542f3863f68d846d89047bdcb11622bdde39044233b47082d7f6f886be926f74e339315cdef407","tags":[]}] +[14:15:38.381] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂も探検したい","created_at":1759428916,"id":"78263645fed8fbed6d3416d9f86d58572df4f1a478b601e266266bfd01853dba","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"17f85e8c04a07c2dd362a584d986695a48d99f6c4d58e124e941f06d08aeba94b6862a547f4784d4d8c2070fba261c947e0b6feb701215892a15bca4ad6b8dc8","tags":[]}] +[14:15:38.442] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Will the fate of planet Earth be bleak without white people? ... When someone talks about preserving the white race, it's because they know that white people are the only ones who can protect the plan... \nThread: https://boards.4channel.org/his/thread/18040382\n\nhttps://i.4cdn.org/his/1759419587988474s.jpg","created_at":1759428915,"id":"930afdbc58c132ace266619bfb5baeb47d69a524bdcc23fb2f8b8504d2f20160","kind":1,"pubkey":"507882f5727ba9196bf790429763883948de3d15c7eba5075c5c16899db608dd","sig":"aff026660254bd08055ebcce78093273318d4f6da31a31a91f349d26fd11e0eabdbfccc1d3fab0e063ada804462ac3cc28dc0f60b93eaf2f80ab7588444b47b6","tags":[]}] +[14:15:38.502] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun kedepan\n\nkira-kira siapa yang akan membangunkan anak muda untuk membuat perubahan?\n\nhanya bisa nyimak.","created_at":1759428915,"id":"0afdf9920d1e7c0adcb5e1df33057cf1b3b5504563e468bd85e5e6d5d86161fe","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"9819e175a25d82f61726e83d9dff700869d70e9332790e4874a49d54c35e2fb3c4e6d615f125ea1911e8c2ebe8950bbf9200eb74f0b09c25e019906d3dcc1ea7","tags":[["alt","A short note: Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun ke..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:15:38.563] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Black bouncer under investigation after choking white student ... 20-year-old student had appeared to push the bouncer out of his way, who then rapidly placed him in a headlock to the shock of onlook... \nThread: https://boards.4chan.org/pol/thread/517855429\n\nhttps://i.4cdn.org/pol/1759421204321095s.jpg","created_at":1759428909,"id":"162601b6d33b1e14f97cf4a381760ffcb54538017d8100799eab515be884ccbd","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"28f3ba1ce8314e76c6fddfc9ab492eea4b4b8044748915b271bf6a09b47d83160fff70a4e6b8751230b9b0a541ae90a1521df61b288e845cb5f2bbf90709c461","tags":[]}] +[14:15:38.623] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:38.684] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:38.744] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:38.805] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:38.865] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:38.926] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:38.986] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:39.047] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:39.107] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:39.168] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:39.229] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:39.289] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:40.990] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:40.990] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:40.990] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:40.990] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:41.143] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for XMR\nPrice: 0.00288218BTC (3%)\nBTC: 0.0025 - 0.005\nXMR: 0.86739898 - 1.73479796\nMethod: Altcoins\nCreated: 2025-10-02T18:15:20Z","created_at":1759428938,"id":"b334d673cf4cac72e79ad6b501be5ffd8dc2a91fe95082e34afd81f2cc22ed57","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1790a9e48cecf21194eb8e3eda4a0a1a15882c8562333f4a26d8f7b7cea0a24f23706c794557184c36c9a115e62997132c0602b9701a1516a014c84a4cb4bea0","tags":[]}] +[14:15:41.204] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🏁🐫 Silk-Road Racing Team\n\n#silkroad #freeross #bitcoin #racing\n\n\n⚡️https://ronin21.xyz/products/silk-road-racing-team-heavyweight-t-shirt?variant=51175733789014\nhttps://blossom.primal.net/938bf1e974172957d962e07dc9365c06424c5f62aae3ceb1562e258cc5a0d939.jpg","created_at":1759428931,"id":"ae45a55b877f321295ba976e4d7fe1b73b8bbcbc76fbbd11f874a35c7f901809","kind":1,"pubkey":"163717aed71f45fe18e706bb1230a34aea815043acb22f54c5cdfe30d0c96bc4","sig":"4167314c607129f6d3109d385458ef112c61f29bdb9efbe582cac76a289441560b9ef7b1d58579a86642a1a2250a6dba2a4058232187735a3c9821a7323883e2","tags":[["t","silkroad"],["t","freeross"],["t","bitcoin"],["t","racing"]]}] +[14:15:41.264] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf28rkdkgszsgmxy6uet7fqrmacrdgzkkgpz9mhxue69uhkummnw3ezuamfdejj7q3qqnykqjt67cv2ux84z3anuhpsnmea3f39za52rsyzpcpvjdmgesasxpqqqqqqzf3f6f4","created_at":1759428929,"id":"4fe18771deb9fff83ad3e28934deb8c0a388d0150903bf5802b79796943ae11c","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"babc831990103ab78dda88bde637e6bddffe73a5fd123638cd64e63cb3667761c6e5c22736bc2c4bbf16b04ca4da164d80765d0cf93004d3cbb5ee9a818b8461","tags":[["alt","A short note: Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf2..."],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["q","5ac3bc4fbb72d23fc8380f212a38ecdb22028236626b995f9201efb81b502b59","wss://nostr.wine/","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["zap","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/","0.9"],["zap","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/","0.1"]]}] +[14:15:41.325] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Trump Says Radical Left's Shutdown Misstep Opens \"Unprecedented Opportunity\" For Mass Firings Of Fed Workers\nhttps://www.zerohedge.com/political/democrats-govt-shutdown-misstep-revives-trump-doge-clear-out-dead-wood-bloated-dc","created_at":1759428929,"id":"9712de449c96bf9cd5cd8f77c41f475b5f43fe9d8fda9060d646cedcc3c19349","kind":1,"pubkey":"164857321a7b0e7403e08f1bef80967aca9385fbde04b71da2e44010823d46ad","sig":"046bc8ec673fd4e1aca4d2f7380b83ad47ddbda881c30d4e45a2987206a74333eed108432327a9b389b9788db53afce479ee06bf853c6ad693d6e5330a820f16","tags":[]}] +[14:15:41.385] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this is the note of the day","created_at":1759428928,"id":"e7d86bedb3b0575739ed5defd53d0c7a580f55c3b093ab42b0caa342c7ee0a15","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"398d550d179c7c6bcb605e39d923b1e1d44983bf231a673f67ee0df15639238ab6548971f19c192f1243ea8f4a9438b76c01c3fd4a79073361d7071708570418","tags":[["alt","A short note: this is the note of the day"],["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.nostr.band/","root","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["e","ee66a32b0a3a68533ea6d879f2cb2ec87b0d5660642e76195f1e95bfad64f96b","wss://nostr.land/","reply","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe","wss://welcome.nostr.wine/"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370","wss://nostr.land/"]]}] +[14:15:41.446] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Rapperswil","created_at":1759428925,"id":"50147c2f17aa21d6f5e42ab372637ccff9062d326d10d824d63f314b42b48979","kind":1,"pubkey":"e989aa6e0137d52a410ecd89ae59f7adbfb0bdec9786b9181c3707954b4cfa69","sig":"c7a0e3c3e7ea9ff31da9dd301d92184daf1f32f28ca9c1a3912fbde4c524582f1df1ab6c2d9f0941b74082bc1dc4aecdbde26baf61c4aaf62a5a7d48db381608","tags":[["e","e64cd11167e1a39bcac8e8752440749e1e8a8b3d7abdd23b4b1480f757845183","wss://nos.lol","root"],["e","609a860530f5b6f9069c5e5dd1a55ab0a126b1d00d79ac109b0a634934910a09","","reply"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4"],["t","rapperswil"]]}] +[14:15:41.506] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Car Repair General ... Replacing Struts With Shit Tools Edition \nThread: https://boards.4channel.org/diy/thread/2948294\n\nhttps://i.4cdn.org/diy/1759375177870525s.jpg","created_at":1759428922,"id":"0085058fdbc6fc68f5e1f0f3c6c0e201bffc9148cac727f2661781981ae8fda8","kind":1,"pubkey":"a826d770d2d94e0c0341af82ec18f0b913b3917ce02b9fcbbc5bfaf8498925c6","sig":"0469fa07588d1d93780666fb9ccc133e4851768a32e236af44542f3863f68d846d89047bdcb11622bdde39044233b47082d7f6f886be926f74e339315cdef407","tags":[]}] +[14:15:41.567] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂も探検したい","created_at":1759428916,"id":"78263645fed8fbed6d3416d9f86d58572df4f1a478b601e266266bfd01853dba","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"17f85e8c04a07c2dd362a584d986695a48d99f6c4d58e124e941f06d08aeba94b6862a547f4784d4d8c2070fba261c947e0b6feb701215892a15bca4ad6b8dc8","tags":[]}] +[14:15:41.627] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Will the fate of planet Earth be bleak without white people? ... When someone talks about preserving the white race, it's because they know that white people are the only ones who can protect the plan... \nThread: https://boards.4channel.org/his/thread/18040382\n\nhttps://i.4cdn.org/his/1759419587988474s.jpg","created_at":1759428915,"id":"930afdbc58c132ace266619bfb5baeb47d69a524bdcc23fb2f8b8504d2f20160","kind":1,"pubkey":"507882f5727ba9196bf790429763883948de3d15c7eba5075c5c16899db608dd","sig":"aff026660254bd08055ebcce78093273318d4f6da31a31a91f349d26fd11e0eabdbfccc1d3fab0e063ada804462ac3cc28dc0f60b93eaf2f80ab7588444b47b6","tags":[]}] +[14:15:41.688] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun kedepan\n\nkira-kira siapa yang akan membangunkan anak muda untuk membuat perubahan?\n\nhanya bisa nyimak.","created_at":1759428915,"id":"0afdf9920d1e7c0adcb5e1df33057cf1b3b5504563e468bd85e5e6d5d86161fe","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"9819e175a25d82f61726e83d9dff700869d70e9332790e4874a49d54c35e2fb3c4e6d615f125ea1911e8c2ebe8950bbf9200eb74f0b09c25e019906d3dcc1ea7","tags":[["alt","A short note: Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun ke..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:15:41.748] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:41.809] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:41.870] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:41.930] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:41.991] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:42.051] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:42.077] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:42.138] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:42.198] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:42.259] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:42.320] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:42.380] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:44.078] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:44.078] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:44.078] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:44.079] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:44.230] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for XMR\nPrice: 0.00288218BTC (3%)\nBTC: 0.0025 - 0.005\nXMR: 0.86739898 - 1.73479796\nMethod: Altcoins\nCreated: 2025-10-02T18:15:20Z","created_at":1759428938,"id":"b334d673cf4cac72e79ad6b501be5ffd8dc2a91fe95082e34afd81f2cc22ed57","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1790a9e48cecf21194eb8e3eda4a0a1a15882c8562333f4a26d8f7b7cea0a24f23706c794557184c36c9a115e62997132c0602b9701a1516a014c84a4cb4bea0","tags":[]}] +[14:15:44.290] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🏁🐫 Silk-Road Racing Team\n\n#silkroad #freeross #bitcoin #racing\n\n\n⚡️https://ronin21.xyz/products/silk-road-racing-team-heavyweight-t-shirt?variant=51175733789014\nhttps://blossom.primal.net/938bf1e974172957d962e07dc9365c06424c5f62aae3ceb1562e258cc5a0d939.jpg","created_at":1759428931,"id":"ae45a55b877f321295ba976e4d7fe1b73b8bbcbc76fbbd11f874a35c7f901809","kind":1,"pubkey":"163717aed71f45fe18e706bb1230a34aea815043acb22f54c5cdfe30d0c96bc4","sig":"4167314c607129f6d3109d385458ef112c61f29bdb9efbe582cac76a289441560b9ef7b1d58579a86642a1a2250a6dba2a4058232187735a3c9821a7323883e2","tags":[["t","silkroad"],["t","freeross"],["t","bitcoin"],["t","racing"]]}] +[14:15:44.381] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf28rkdkgszsgmxy6uet7fqrmacrdgzkkgpz9mhxue69uhkummnw3ezuamfdejj7q3qqnykqjt67cv2ux84z3anuhpsnmea3f39za52rsyzpcpvjdmgesasxpqqqqqqzf3f6f4","created_at":1759428929,"id":"4fe18771deb9fff83ad3e28934deb8c0a388d0150903bf5802b79796943ae11c","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"babc831990103ab78dda88bde637e6bddffe73a5fd123638cd64e63cb3667761c6e5c22736bc2c4bbf16b04ca4da164d80765d0cf93004d3cbb5ee9a818b8461","tags":[["alt","A short note: Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf2..."],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["q","5ac3bc4fbb72d23fc8380f212a38ecdb22028236626b995f9201efb81b502b59","wss://nostr.wine/","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["zap","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/","0.9"],["zap","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/","0.1"]]}] +[14:15:44.441] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Trump Says Radical Left's Shutdown Misstep Opens \"Unprecedented Opportunity\" For Mass Firings Of Fed Workers\nhttps://www.zerohedge.com/political/democrats-govt-shutdown-misstep-revives-trump-doge-clear-out-dead-wood-bloated-dc","created_at":1759428929,"id":"9712de449c96bf9cd5cd8f77c41f475b5f43fe9d8fda9060d646cedcc3c19349","kind":1,"pubkey":"164857321a7b0e7403e08f1bef80967aca9385fbde04b71da2e44010823d46ad","sig":"046bc8ec673fd4e1aca4d2f7380b83ad47ddbda881c30d4e45a2987206a74333eed108432327a9b389b9788db53afce479ee06bf853c6ad693d6e5330a820f16","tags":[]}] +[14:15:44.502] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this is the note of the day","created_at":1759428928,"id":"e7d86bedb3b0575739ed5defd53d0c7a580f55c3b093ab42b0caa342c7ee0a15","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"398d550d179c7c6bcb605e39d923b1e1d44983bf231a673f67ee0df15639238ab6548971f19c192f1243ea8f4a9438b76c01c3fd4a79073361d7071708570418","tags":[["alt","A short note: this is the note of the day"],["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.nostr.band/","root","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["e","ee66a32b0a3a68533ea6d879f2cb2ec87b0d5660642e76195f1e95bfad64f96b","wss://nostr.land/","reply","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe","wss://welcome.nostr.wine/"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370","wss://nostr.land/"]]}] +[14:15:44.562] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Rapperswil","created_at":1759428925,"id":"50147c2f17aa21d6f5e42ab372637ccff9062d326d10d824d63f314b42b48979","kind":1,"pubkey":"e989aa6e0137d52a410ecd89ae59f7adbfb0bdec9786b9181c3707954b4cfa69","sig":"c7a0e3c3e7ea9ff31da9dd301d92184daf1f32f28ca9c1a3912fbde4c524582f1df1ab6c2d9f0941b74082bc1dc4aecdbde26baf61c4aaf62a5a7d48db381608","tags":[["e","e64cd11167e1a39bcac8e8752440749e1e8a8b3d7abdd23b4b1480f757845183","wss://nos.lol","root"],["e","609a860530f5b6f9069c5e5dd1a55ab0a126b1d00d79ac109b0a634934910a09","","reply"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4"],["t","rapperswil"]]}] +[14:15:44.623] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Car Repair General ... Replacing Struts With Shit Tools Edition \nThread: https://boards.4channel.org/diy/thread/2948294\n\nhttps://i.4cdn.org/diy/1759375177870525s.jpg","created_at":1759428922,"id":"0085058fdbc6fc68f5e1f0f3c6c0e201bffc9148cac727f2661781981ae8fda8","kind":1,"pubkey":"a826d770d2d94e0c0341af82ec18f0b913b3917ce02b9fcbbc5bfaf8498925c6","sig":"0469fa07588d1d93780666fb9ccc133e4851768a32e236af44542f3863f68d846d89047bdcb11622bdde39044233b47082d7f6f886be926f74e339315cdef407","tags":[]}] +[14:15:44.683] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂も探検したい","created_at":1759428916,"id":"78263645fed8fbed6d3416d9f86d58572df4f1a478b601e266266bfd01853dba","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"17f85e8c04a07c2dd362a584d986695a48d99f6c4d58e124e941f06d08aeba94b6862a547f4784d4d8c2070fba261c947e0b6feb701215892a15bca4ad6b8dc8","tags":[]}] +[14:15:44.744] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Will the fate of planet Earth be bleak without white people? ... When someone talks about preserving the white race, it's because they know that white people are the only ones who can protect the plan... \nThread: https://boards.4channel.org/his/thread/18040382\n\nhttps://i.4cdn.org/his/1759419587988474s.jpg","created_at":1759428915,"id":"930afdbc58c132ace266619bfb5baeb47d69a524bdcc23fb2f8b8504d2f20160","kind":1,"pubkey":"507882f5727ba9196bf790429763883948de3d15c7eba5075c5c16899db608dd","sig":"aff026660254bd08055ebcce78093273318d4f6da31a31a91f349d26fd11e0eabdbfccc1d3fab0e063ada804462ac3cc28dc0f60b93eaf2f80ab7588444b47b6","tags":[]}] +[14:15:44.804] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun kedepan\n\nkira-kira siapa yang akan membangunkan anak muda untuk membuat perubahan?\n\nhanya bisa nyimak.","created_at":1759428915,"id":"0afdf9920d1e7c0adcb5e1df33057cf1b3b5504563e468bd85e5e6d5d86161fe","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"9819e175a25d82f61726e83d9dff700869d70e9332790e4874a49d54c35e2fb3c4e6d615f125ea1911e8c2ebe8950bbf9200eb74f0b09c25e019906d3dcc1ea7","tags":[["alt","A short note: Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun ke..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:15:44.865] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:44.925] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:44.986] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:45.047] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:45.107] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:45.168] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:45.228] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:45.289] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:45.349] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:45.410] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:45.471] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:45.531] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:46.438] RECV nos.lol:443: 35ad47c025884a286dd65fa"],["p","bbb5dda0e15567979f0543407bdc2033d6f0bbb30f72512a981cfdb2f09e2747" +[14:15:46.800] RECV nos.lol:443: 344279f7a36aa3de1710c9198b1e9e8a394cd13e0dd5c994c63"],["p +[14:15:47.102] RECV nos.lol:443: e5aaf4b89afc400c184579e"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],[ +[14:15:47.550] RECV nos.lol:443: b558da5ff69bc3cbb81e"],["p","726a1e261cc6474674e8285 +[14:15:48.466] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:48.466] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:48.467] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:48.467] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:48.619] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for XMR\nPrice: 0.00288218BTC (3%)\nBTC: 0.0025 - 0.005\nXMR: 0.86739898 - 1.73479796\nMethod: Altcoins\nCreated: 2025-10-02T18:15:20Z","created_at":1759428938,"id":"b334d673cf4cac72e79ad6b501be5ffd8dc2a91fe95082e34afd81f2cc22ed57","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1790a9e48cecf21194eb8e3eda4a0a1a15882c8562333f4a26d8f7b7cea0a24f23706c794557184c36c9a115e62997132c0602b9701a1516a014c84a4cb4bea0","tags":[]}] +[14:15:48.679] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🏁🐫 Silk-Road Racing Team\n\n#silkroad #freeross #bitcoin #racing\n\n\n⚡️https://ronin21.xyz/products/silk-road-racing-team-heavyweight-t-shirt?variant=51175733789014\nhttps://blossom.primal.net/938bf1e974172957d962e07dc9365c06424c5f62aae3ceb1562e258cc5a0d939.jpg","created_at":1759428931,"id":"ae45a55b877f321295ba976e4d7fe1b73b8bbcbc76fbbd11f874a35c7f901809","kind":1,"pubkey":"163717aed71f45fe18e706bb1230a34aea815043acb22f54c5cdfe30d0c96bc4","sig":"4167314c607129f6d3109d385458ef112c61f29bdb9efbe582cac76a289441560b9ef7b1d58579a86642a1a2250a6dba2a4058232187735a3c9821a7323883e2","tags":[["t","silkroad"],["t","freeross"],["t","bitcoin"],["t","racing"]]}] +[14:15:48.740] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf28rkdkgszsgmxy6uet7fqrmacrdgzkkgpz9mhxue69uhkummnw3ezuamfdejj7q3qqnykqjt67cv2ux84z3anuhpsnmea3f39za52rsyzpcpvjdmgesasxpqqqqqqzf3f6f4","created_at":1759428929,"id":"4fe18771deb9fff83ad3e28934deb8c0a388d0150903bf5802b79796943ae11c","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"babc831990103ab78dda88bde637e6bddffe73a5fd123638cd64e63cb3667761c6e5c22736bc2c4bbf16b04ca4da164d80765d0cf93004d3cbb5ee9a818b8461","tags":[["alt","A short note: Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf2..."],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["q","5ac3bc4fbb72d23fc8380f212a38ecdb22028236626b995f9201efb81b502b59","wss://nostr.wine/","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["zap","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/","0.9"],["zap","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/","0.1"]]}] +[14:15:48.800] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Trump Says Radical Left's Shutdown Misstep Opens \"Unprecedented Opportunity\" For Mass Firings Of Fed Workers\nhttps://www.zerohedge.com/political/democrats-govt-shutdown-misstep-revives-trump-doge-clear-out-dead-wood-bloated-dc","created_at":1759428929,"id":"9712de449c96bf9cd5cd8f77c41f475b5f43fe9d8fda9060d646cedcc3c19349","kind":1,"pubkey":"164857321a7b0e7403e08f1bef80967aca9385fbde04b71da2e44010823d46ad","sig":"046bc8ec673fd4e1aca4d2f7380b83ad47ddbda881c30d4e45a2987206a74333eed108432327a9b389b9788db53afce479ee06bf853c6ad693d6e5330a820f16","tags":[]}] +[14:15:48.861] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this is the note of the day","created_at":1759428928,"id":"e7d86bedb3b0575739ed5defd53d0c7a580f55c3b093ab42b0caa342c7ee0a15","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"398d550d179c7c6bcb605e39d923b1e1d44983bf231a673f67ee0df15639238ab6548971f19c192f1243ea8f4a9438b76c01c3fd4a79073361d7071708570418","tags":[["alt","A short note: this is the note of the day"],["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.nostr.band/","root","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["e","ee66a32b0a3a68533ea6d879f2cb2ec87b0d5660642e76195f1e95bfad64f96b","wss://nostr.land/","reply","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe","wss://welcome.nostr.wine/"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370","wss://nostr.land/"]]}] +[14:15:48.922] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Rapperswil","created_at":1759428925,"id":"50147c2f17aa21d6f5e42ab372637ccff9062d326d10d824d63f314b42b48979","kind":1,"pubkey":"e989aa6e0137d52a410ecd89ae59f7adbfb0bdec9786b9181c3707954b4cfa69","sig":"c7a0e3c3e7ea9ff31da9dd301d92184daf1f32f28ca9c1a3912fbde4c524582f1df1ab6c2d9f0941b74082bc1dc4aecdbde26baf61c4aaf62a5a7d48db381608","tags":[["e","e64cd11167e1a39bcac8e8752440749e1e8a8b3d7abdd23b4b1480f757845183","wss://nos.lol","root"],["e","609a860530f5b6f9069c5e5dd1a55ab0a126b1d00d79ac109b0a634934910a09","","reply"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4"],["t","rapperswil"]]}] +[14:15:48.982] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Car Repair General ... Replacing Struts With Shit Tools Edition \nThread: https://boards.4channel.org/diy/thread/2948294\n\nhttps://i.4cdn.org/diy/1759375177870525s.jpg","created_at":1759428922,"id":"0085058fdbc6fc68f5e1f0f3c6c0e201bffc9148cac727f2661781981ae8fda8","kind":1,"pubkey":"a826d770d2d94e0c0341af82ec18f0b913b3917ce02b9fcbbc5bfaf8498925c6","sig":"0469fa07588d1d93780666fb9ccc133e4851768a32e236af44542f3863f68d846d89047bdcb11622bdde39044233b47082d7f6f886be926f74e339315cdef407","tags":[]}] +[14:15:49.043] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂も探検したい","created_at":1759428916,"id":"78263645fed8fbed6d3416d9f86d58572df4f1a478b601e266266bfd01853dba","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"17f85e8c04a07c2dd362a584d986695a48d99f6c4d58e124e941f06d08aeba94b6862a547f4784d4d8c2070fba261c947e0b6feb701215892a15bca4ad6b8dc8","tags":[]}] +[14:15:49.103] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Will the fate of planet Earth be bleak without white people? ... When someone talks about preserving the white race, it's because they know that white people are the only ones who can protect the plan... \nThread: https://boards.4channel.org/his/thread/18040382\n\nhttps://i.4cdn.org/his/1759419587988474s.jpg","created_at":1759428915,"id":"930afdbc58c132ace266619bfb5baeb47d69a524bdcc23fb2f8b8504d2f20160","kind":1,"pubkey":"507882f5727ba9196bf790429763883948de3d15c7eba5075c5c16899db608dd","sig":"aff026660254bd08055ebcce78093273318d4f6da31a31a91f349d26fd11e0eabdbfccc1d3fab0e063ada804462ac3cc28dc0f60b93eaf2f80ab7588444b47b6","tags":[]}] +[14:15:49.164] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun kedepan\n\nkira-kira siapa yang akan membangunkan anak muda untuk membuat perubahan?\n\nhanya bisa nyimak.","created_at":1759428915,"id":"0afdf9920d1e7c0adcb5e1df33057cf1b3b5504563e468bd85e5e6d5d86161fe","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"9819e175a25d82f61726e83d9dff700869d70e9332790e4874a49d54c35e2fb3c4e6d615f125ea1911e8c2ebe8950bbf9200eb74f0b09c25e019906d3dcc1ea7","tags":[["alt","A short note: Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun ke..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:15:49.225] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:49.285] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:49.346] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:49.406] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:49.467] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:49.527] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:49.588] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:49.648] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:49.709] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:49.769] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:49.830] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:49.891] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:50.797] RECV nos.lol:443: 35ad47c025884a286dd65fa"],["p","bbb5dda0e15567979f0543407bdc2033d6f0bbb30f72512a981cfdb2f09e2747" +[14:15:51.159] RECV nos.lol:443: 344279f7a36aa3de1710c9198b1e9e8a394cd13e0dd5c994c63"],["p +[14:15:51.461] RECV nos.lol:443: e5aaf4b89afc400c184579e"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],[ +[14:15:51.944] RECV nos.lol:443: b558da5ff69bc3cbb81e"],["p","726a1e261cc6474674e8285 +[14:15:53.016] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:53.016] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:53.016] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:53.016] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:53.166] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:15:53.227] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"芋だ。ポテトだ。","created_at":1759428952,"id":"98e10ca46043d19a48e42b965592959e8ded70ff480062a571fec75efcefae77","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"d1dcdab580fa953f6c02be147b02908b581571a7ac53635859f0c16650e6e07805384889dff999f0078f019af6d43517f1ccc8ba5d67564d333c2efc8baad6ca","tags":[]}] +[14:15:53.620] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"飲食に関して、縄文時代の遺伝子が残ってるから貪欲になってしまう傾向があるので、これは私たちのせいではない","created_at":1759428950,"id":"9690d42b7f5aaa858d77eda3ee8982930ed085a8293fcacd8cdb98c0e7b8bbbc","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d75067485e36b9eb4c85a1af9b6044d2b7f853d3fbb18faab9140c67795837704e1345b90548b1802546c3b0f4e880c16b82c3204f50a7a1806d6ec3bd3fe8d7","tags":[]}] +[14:15:53.680] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for XMR\nPrice: 0.00288218BTC (3%)\nBTC: 0.0025 - 0.005\nXMR: 0.86739898 - 1.73479796\nMethod: Altcoins\nCreated: 2025-10-02T18:15:20Z","created_at":1759428938,"id":"b334d673cf4cac72e79ad6b501be5ffd8dc2a91fe95082e34afd81f2cc22ed57","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1790a9e48cecf21194eb8e3eda4a0a1a15882c8562333f4a26d8f7b7cea0a24f23706c794557184c36c9a115e62997132c0602b9701a1516a014c84a4cb4bea0","tags":[]}] +[14:15:53.741] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🏁🐫 Silk-Road Racing Team\n\n#silkroad #freeross #bitcoin #racing\n\n\n⚡️https://ronin21.xyz/products/silk-road-racing-team-heavyweight-t-shirt?variant=51175733789014\nhttps://blossom.primal.net/938bf1e974172957d962e07dc9365c06424c5f62aae3ceb1562e258cc5a0d939.jpg","created_at":1759428931,"id":"ae45a55b877f321295ba976e4d7fe1b73b8bbcbc76fbbd11f874a35c7f901809","kind":1,"pubkey":"163717aed71f45fe18e706bb1230a34aea815043acb22f54c5cdfe30d0c96bc4","sig":"4167314c607129f6d3109d385458ef112c61f29bdb9efbe582cac76a289441560b9ef7b1d58579a86642a1a2250a6dba2a4058232187735a3c9821a7323883e2","tags":[["t","silkroad"],["t","freeross"],["t","bitcoin"],["t","racing"]]}] +[14:15:53.801] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf28rkdkgszsgmxy6uet7fqrmacrdgzkkgpz9mhxue69uhkummnw3ezuamfdejj7q3qqnykqjt67cv2ux84z3anuhpsnmea3f39za52rsyzpcpvjdmgesasxpqqqqqqzf3f6f4","created_at":1759428929,"id":"4fe18771deb9fff83ad3e28934deb8c0a388d0150903bf5802b79796943ae11c","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"babc831990103ab78dda88bde637e6bddffe73a5fd123638cd64e63cb3667761c6e5c22736bc2c4bbf16b04ca4da164d80765d0cf93004d3cbb5ee9a818b8461","tags":[["alt","A short note: Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf2..."],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["q","5ac3bc4fbb72d23fc8380f212a38ecdb22028236626b995f9201efb81b502b59","wss://nostr.wine/","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["zap","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/","0.9"],["zap","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/","0.1"]]}] +[14:15:53.862] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Trump Says Radical Left's Shutdown Misstep Opens \"Unprecedented Opportunity\" For Mass Firings Of Fed Workers\nhttps://www.zerohedge.com/political/democrats-govt-shutdown-misstep-revives-trump-doge-clear-out-dead-wood-bloated-dc","created_at":1759428929,"id":"9712de449c96bf9cd5cd8f77c41f475b5f43fe9d8fda9060d646cedcc3c19349","kind":1,"pubkey":"164857321a7b0e7403e08f1bef80967aca9385fbde04b71da2e44010823d46ad","sig":"046bc8ec673fd4e1aca4d2f7380b83ad47ddbda881c30d4e45a2987206a74333eed108432327a9b389b9788db53afce479ee06bf853c6ad693d6e5330a820f16","tags":[]}] +[14:15:53.922] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this is the note of the day","created_at":1759428928,"id":"e7d86bedb3b0575739ed5defd53d0c7a580f55c3b093ab42b0caa342c7ee0a15","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"398d550d179c7c6bcb605e39d923b1e1d44983bf231a673f67ee0df15639238ab6548971f19c192f1243ea8f4a9438b76c01c3fd4a79073361d7071708570418","tags":[["alt","A short note: this is the note of the day"],["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.nostr.band/","root","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["e","ee66a32b0a3a68533ea6d879f2cb2ec87b0d5660642e76195f1e95bfad64f96b","wss://nostr.land/","reply","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe","wss://welcome.nostr.wine/"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370","wss://nostr.land/"]]}] +[14:15:53.983] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Rapperswil","created_at":1759428925,"id":"50147c2f17aa21d6f5e42ab372637ccff9062d326d10d824d63f314b42b48979","kind":1,"pubkey":"e989aa6e0137d52a410ecd89ae59f7adbfb0bdec9786b9181c3707954b4cfa69","sig":"c7a0e3c3e7ea9ff31da9dd301d92184daf1f32f28ca9c1a3912fbde4c524582f1df1ab6c2d9f0941b74082bc1dc4aecdbde26baf61c4aaf62a5a7d48db381608","tags":[["e","e64cd11167e1a39bcac8e8752440749e1e8a8b3d7abdd23b4b1480f757845183","wss://nos.lol","root"],["e","609a860530f5b6f9069c5e5dd1a55ab0a126b1d00d79ac109b0a634934910a09","","reply"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4"],["t","rapperswil"]]}] +[14:15:54.044] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Car Repair General ... Replacing Struts With Shit Tools Edition \nThread: https://boards.4channel.org/diy/thread/2948294\n\nhttps://i.4cdn.org/diy/1759375177870525s.jpg","created_at":1759428922,"id":"0085058fdbc6fc68f5e1f0f3c6c0e201bffc9148cac727f2661781981ae8fda8","kind":1,"pubkey":"a826d770d2d94e0c0341af82ec18f0b913b3917ce02b9fcbbc5bfaf8498925c6","sig":"0469fa07588d1d93780666fb9ccc133e4851768a32e236af44542f3863f68d846d89047bdcb11622bdde39044233b47082d7f6f886be926f74e339315cdef407","tags":[]}] +[14:15:54.104] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:54.165] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:54.225] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:54.286] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:54.347] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:54.407] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:54.468] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:54.528] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:54.589] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:54.649] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:54.710] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:54.771] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:55.676] RECV nos.lol:443: 35ad47c025884a286dd65fa"],["p","bbb5dda0e15567979f0543407bdc2033d6f0bbb30f72512a981cfdb2f09e2747" +[14:15:56.039] RECV nos.lol:443: 344279f7a36aa3de1710c9198b1e9e8a394cd13e0dd5c994c63"],["p +[14:15:56.341] RECV nos.lol:443: e5aaf4b89afc400c184579e"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],[ +[14:15:56.825] RECV nos.lol:443: b558da5ff69bc3cbb81e"],["p","726a1e261cc6474674e8285 +[14:15:58.333] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:58.333] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:58.333] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:58.333] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:58.485] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:15:58.546] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:15:58.607] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:15:58.667] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"芋だ。ポテトだ。","created_at":1759428952,"id":"98e10ca46043d19a48e42b965592959e8ded70ff480062a571fec75efcefae77","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"d1dcdab580fa953f6c02be147b02908b581571a7ac53635859f0c16650e6e07805384889dff999f0078f019af6d43517f1ccc8ba5d67564d333c2efc8baad6ca","tags":[]}] +[14:15:58.728] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"飲食に関して、縄文時代の遺伝子が残ってるから貪欲になってしまう傾向があるので、これは私たちのせいではない","created_at":1759428950,"id":"9690d42b7f5aaa858d77eda3ee8982930ed085a8293fcacd8cdb98c0e7b8bbbc","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d75067485e36b9eb4c85a1af9b6044d2b7f853d3fbb18faab9140c67795837704e1345b90548b1802546c3b0f4e880c16b82c3204f50a7a1806d6ec3bd3fe8d7","tags":[]}] +[14:15:58.788] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for XMR\nPrice: 0.00288218BTC (3%)\nBTC: 0.0025 - 0.005\nXMR: 0.86739898 - 1.73479796\nMethod: Altcoins\nCreated: 2025-10-02T18:15:20Z","created_at":1759428938,"id":"b334d673cf4cac72e79ad6b501be5ffd8dc2a91fe95082e34afd81f2cc22ed57","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1790a9e48cecf21194eb8e3eda4a0a1a15882c8562333f4a26d8f7b7cea0a24f23706c794557184c36c9a115e62997132c0602b9701a1516a014c84a4cb4bea0","tags":[]}] +[14:15:58.849] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🏁🐫 Silk-Road Racing Team\n\n#silkroad #freeross #bitcoin #racing\n\n\n⚡️https://ronin21.xyz/products/silk-road-racing-team-heavyweight-t-shirt?variant=51175733789014\nhttps://blossom.primal.net/938bf1e974172957d962e07dc9365c06424c5f62aae3ceb1562e258cc5a0d939.jpg","created_at":1759428931,"id":"ae45a55b877f321295ba976e4d7fe1b73b8bbcbc76fbbd11f874a35c7f901809","kind":1,"pubkey":"163717aed71f45fe18e706bb1230a34aea815043acb22f54c5cdfe30d0c96bc4","sig":"4167314c607129f6d3109d385458ef112c61f29bdb9efbe582cac76a289441560b9ef7b1d58579a86642a1a2250a6dba2a4058232187735a3c9821a7323883e2","tags":[["t","silkroad"],["t","freeross"],["t","bitcoin"],["t","racing"]]}] +[14:15:58.909] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf28rkdkgszsgmxy6uet7fqrmacrdgzkkgpz9mhxue69uhkummnw3ezuamfdejj7q3qqnykqjt67cv2ux84z3anuhpsnmea3f39za52rsyzpcpvjdmgesasxpqqqqqqzf3f6f4","created_at":1759428929,"id":"4fe18771deb9fff83ad3e28934deb8c0a388d0150903bf5802b79796943ae11c","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"babc831990103ab78dda88bde637e6bddffe73a5fd123638cd64e63cb3667761c6e5c22736bc2c4bbf16b04ca4da164d80765d0cf93004d3cbb5ee9a818b8461","tags":[["alt","A short note: Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf2..."],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["q","5ac3bc4fbb72d23fc8380f212a38ecdb22028236626b995f9201efb81b502b59","wss://nostr.wine/","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["zap","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/","0.9"],["zap","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/","0.1"]]}] +[14:15:58.970] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Trump Says Radical Left's Shutdown Misstep Opens \"Unprecedented Opportunity\" For Mass Firings Of Fed Workers\nhttps://www.zerohedge.com/political/democrats-govt-shutdown-misstep-revives-trump-doge-clear-out-dead-wood-bloated-dc","created_at":1759428929,"id":"9712de449c96bf9cd5cd8f77c41f475b5f43fe9d8fda9060d646cedcc3c19349","kind":1,"pubkey":"164857321a7b0e7403e08f1bef80967aca9385fbde04b71da2e44010823d46ad","sig":"046bc8ec673fd4e1aca4d2f7380b83ad47ddbda881c30d4e45a2987206a74333eed108432327a9b389b9788db53afce479ee06bf853c6ad693d6e5330a820f16","tags":[]}] +[14:15:59.030] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this is the note of the day","created_at":1759428928,"id":"e7d86bedb3b0575739ed5defd53d0c7a580f55c3b093ab42b0caa342c7ee0a15","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"398d550d179c7c6bcb605e39d923b1e1d44983bf231a673f67ee0df15639238ab6548971f19c192f1243ea8f4a9438b76c01c3fd4a79073361d7071708570418","tags":[["alt","A short note: this is the note of the day"],["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.nostr.band/","root","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["e","ee66a32b0a3a68533ea6d879f2cb2ec87b0d5660642e76195f1e95bfad64f96b","wss://nostr.land/","reply","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe","wss://welcome.nostr.wine/"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370","wss://nostr.land/"]]}] +[14:15:59.091] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:59.151] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:59.212] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:59.273] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:59.333] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:59.394] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:59.454] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:59.515] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:59.575] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:59.636] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:59.696] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:59.757] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:00.663] RECV nos.lol:443: 35ad47c025884a286dd65fa"],["p","bbb5dda0e15567979f0543407bdc2033d6f0bbb30f72512a981cfdb2f09e2747" +[14:16:01.026] RECV nos.lol:443: 344279f7a36aa3de1710c9198b1e9e8a394cd13e0dd5c994c63"],["p +[14:16:01.328] RECV nos.lol:443: e5aaf4b89afc400c184579e"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],[ +[14:16:01.811] RECV nos.lol:443: b558da5ff69bc3cbb81e"],["p","726a1e261cc6474674e8285 +[14:16:03.323] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:03.323] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:03.323] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:03.323] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:03.474] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:03.535] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:03.595] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:16:03.655] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:16:03.716] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"芋だ。ポテトだ。","created_at":1759428952,"id":"98e10ca46043d19a48e42b965592959e8ded70ff480062a571fec75efcefae77","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"d1dcdab580fa953f6c02be147b02908b581571a7ac53635859f0c16650e6e07805384889dff999f0078f019af6d43517f1ccc8ba5d67564d333c2efc8baad6ca","tags":[]}] +[14:16:03.777] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"飲食に関して、縄文時代の遺伝子が残ってるから貪欲になってしまう傾向があるので、これは私たちのせいではない","created_at":1759428950,"id":"9690d42b7f5aaa858d77eda3ee8982930ed085a8293fcacd8cdb98c0e7b8bbbc","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d75067485e36b9eb4c85a1af9b6044d2b7f853d3fbb18faab9140c67795837704e1345b90548b1802546c3b0f4e880c16b82c3204f50a7a1806d6ec3bd3fe8d7","tags":[]}] +[14:16:03.837] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for XMR\nPrice: 0.00288218BTC (3%)\nBTC: 0.0025 - 0.005\nXMR: 0.86739898 - 1.73479796\nMethod: Altcoins\nCreated: 2025-10-02T18:15:20Z","created_at":1759428938,"id":"b334d673cf4cac72e79ad6b501be5ffd8dc2a91fe95082e34afd81f2cc22ed57","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1790a9e48cecf21194eb8e3eda4a0a1a15882c8562333f4a26d8f7b7cea0a24f23706c794557184c36c9a115e62997132c0602b9701a1516a014c84a4cb4bea0","tags":[]}] +[14:16:03.898] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🏁🐫 Silk-Road Racing Team\n\n#silkroad #freeross #bitcoin #racing\n\n\n⚡️https://ronin21.xyz/products/silk-road-racing-team-heavyweight-t-shirt?variant=51175733789014\nhttps://blossom.primal.net/938bf1e974172957d962e07dc9365c06424c5f62aae3ceb1562e258cc5a0d939.jpg","created_at":1759428931,"id":"ae45a55b877f321295ba976e4d7fe1b73b8bbcbc76fbbd11f874a35c7f901809","kind":1,"pubkey":"163717aed71f45fe18e706bb1230a34aea815043acb22f54c5cdfe30d0c96bc4","sig":"4167314c607129f6d3109d385458ef112c61f29bdb9efbe582cac76a289441560b9ef7b1d58579a86642a1a2250a6dba2a4058232187735a3c9821a7323883e2","tags":[["t","silkroad"],["t","freeross"],["t","bitcoin"],["t","racing"]]}] +[14:16:03.959] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf28rkdkgszsgmxy6uet7fqrmacrdgzkkgpz9mhxue69uhkummnw3ezuamfdejj7q3qqnykqjt67cv2ux84z3anuhpsnmea3f39za52rsyzpcpvjdmgesasxpqqqqqqzf3f6f4","created_at":1759428929,"id":"4fe18771deb9fff83ad3e28934deb8c0a388d0150903bf5802b79796943ae11c","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"babc831990103ab78dda88bde637e6bddffe73a5fd123638cd64e63cb3667761c6e5c22736bc2c4bbf16b04ca4da164d80765d0cf93004d3cbb5ee9a818b8461","tags":[["alt","A short note: Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf2..."],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["q","5ac3bc4fbb72d23fc8380f212a38ecdb22028236626b995f9201efb81b502b59","wss://nostr.wine/","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["zap","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/","0.9"],["zap","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/","0.1"]]}] +[14:16:04.019] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Trump Says Radical Left's Shutdown Misstep Opens \"Unprecedented Opportunity\" For Mass Firings Of Fed Workers\nhttps://www.zerohedge.com/political/democrats-govt-shutdown-misstep-revives-trump-doge-clear-out-dead-wood-bloated-dc","created_at":1759428929,"id":"9712de449c96bf9cd5cd8f77c41f475b5f43fe9d8fda9060d646cedcc3c19349","kind":1,"pubkey":"164857321a7b0e7403e08f1bef80967aca9385fbde04b71da2e44010823d46ad","sig":"046bc8ec673fd4e1aca4d2f7380b83ad47ddbda881c30d4e45a2987206a74333eed108432327a9b389b9788db53afce479ee06bf853c6ad693d6e5330a820f16","tags":[]}] +[14:16:04.080] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:04.140] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:04.201] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:04.261] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:04.322] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:04.382] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:04.443] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:04.503] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:04.564] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:04.624] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:04.685] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:04.745] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:04.806] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:05.712] RECV nos.lol:443: 35ad47c025884a286dd65fa"],["p","bbb5dda0e15567979f0543407bdc2033d6f0bbb30f72512a981cfdb2f09e2747" +[14:16:06.075] RECV nos.lol:443: 344279f7a36aa3de1710c9198b1e9e8a394cd13e0dd5c994c63"],["p +[14:16:06.377] RECV nos.lol:443: e5aaf4b89afc400c184579e"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],[ +[14:16:06.860] RECV nos.lol:443: b558da5ff69bc3cbb81e"],["p","726a1e261cc6474674e8285 +[14:16:07.741] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:07.742] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:07.742] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:07.742] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:07.894] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:07.954] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:08.015] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:08.075] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:16:08.136] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:16:08.197] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"芋だ。ポテトだ。","created_at":1759428952,"id":"98e10ca46043d19a48e42b965592959e8ded70ff480062a571fec75efcefae77","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"d1dcdab580fa953f6c02be147b02908b581571a7ac53635859f0c16650e6e07805384889dff999f0078f019af6d43517f1ccc8ba5d67564d333c2efc8baad6ca","tags":[]}] +[14:16:08.257] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"飲食に関して、縄文時代の遺伝子が残ってるから貪欲になってしまう傾向があるので、これは私たちのせいではない","created_at":1759428950,"id":"9690d42b7f5aaa858d77eda3ee8982930ed085a8293fcacd8cdb98c0e7b8bbbc","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d75067485e36b9eb4c85a1af9b6044d2b7f853d3fbb18faab9140c67795837704e1345b90548b1802546c3b0f4e880c16b82c3204f50a7a1806d6ec3bd3fe8d7","tags":[]}] +[14:16:08.318] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for XMR\nPrice: 0.00288218BTC (3%)\nBTC: 0.0025 - 0.005\nXMR: 0.86739898 - 1.73479796\nMethod: Altcoins\nCreated: 2025-10-02T18:15:20Z","created_at":1759428938,"id":"b334d673cf4cac72e79ad6b501be5ffd8dc2a91fe95082e34afd81f2cc22ed57","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1790a9e48cecf21194eb8e3eda4a0a1a15882c8562333f4a26d8f7b7cea0a24f23706c794557184c36c9a115e62997132c0602b9701a1516a014c84a4cb4bea0","tags":[]}] +[14:16:08.378] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🏁🐫 Silk-Road Racing Team\n\n#silkroad #freeross #bitcoin #racing\n\n\n⚡️https://ronin21.xyz/products/silk-road-racing-team-heavyweight-t-shirt?variant=51175733789014\nhttps://blossom.primal.net/938bf1e974172957d962e07dc9365c06424c5f62aae3ceb1562e258cc5a0d939.jpg","created_at":1759428931,"id":"ae45a55b877f321295ba976e4d7fe1b73b8bbcbc76fbbd11f874a35c7f901809","kind":1,"pubkey":"163717aed71f45fe18e706bb1230a34aea815043acb22f54c5cdfe30d0c96bc4","sig":"4167314c607129f6d3109d385458ef112c61f29bdb9efbe582cac76a289441560b9ef7b1d58579a86642a1a2250a6dba2a4058232187735a3c9821a7323883e2","tags":[["t","silkroad"],["t","freeross"],["t","bitcoin"],["t","racing"]]}] +[14:16:08.439] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf28rkdkgszsgmxy6uet7fqrmacrdgzkkgpz9mhxue69uhkummnw3ezuamfdejj7q3qqnykqjt67cv2ux84z3anuhpsnmea3f39za52rsyzpcpvjdmgesasxpqqqqqqzf3f6f4","created_at":1759428929,"id":"4fe18771deb9fff83ad3e28934deb8c0a388d0150903bf5802b79796943ae11c","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"babc831990103ab78dda88bde637e6bddffe73a5fd123638cd64e63cb3667761c6e5c22736bc2c4bbf16b04ca4da164d80765d0cf93004d3cbb5ee9a818b8461","tags":[["alt","A short note: Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf2..."],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["q","5ac3bc4fbb72d23fc8380f212a38ecdb22028236626b995f9201efb81b502b59","wss://nostr.wine/","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["zap","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/","0.9"],["zap","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/","0.1"]]}] +[14:16:08.499] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:08.560] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:08.620] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:08.681] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:08.742] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:08.802] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:08.863] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:08.923] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:08.984] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:09.044] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:09.105] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:09.165] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:10.071] RECV nos.lol:443: 35ad47c025884a286dd65fa"],["p","bbb5dda0e15567979f0543407bdc2033d6f0bbb30f72512a981cfdb2f09e2747" +[14:16:10.434] RECV nos.lol:443: 344279f7a36aa3de1710c9198b1e9e8a394cd13e0dd5c994c63"],["p +[14:16:10.736] RECV nos.lol:443: e5aaf4b89afc400c184579e"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],[ +[14:16:11.219] RECV nos.lol:443: b558da5ff69bc3cbb81e"],["p","726a1e261cc6474674e8285 +[14:16:12.139] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:12.140] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:12.140] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:12.140] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:12.444] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:16:12.454] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:12.515] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:12.575] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:12.636] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:16:12.696] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:16:12.757] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"芋だ。ポテトだ。","created_at":1759428952,"id":"98e10ca46043d19a48e42b965592959e8ded70ff480062a571fec75efcefae77","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"d1dcdab580fa953f6c02be147b02908b581571a7ac53635859f0c16650e6e07805384889dff999f0078f019af6d43517f1ccc8ba5d67564d333c2efc8baad6ca","tags":[]}] +[14:16:12.818] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"飲食に関して、縄文時代の遺伝子が残ってるから貪欲になってしまう傾向があるので、これは私たちのせいではない","created_at":1759428950,"id":"9690d42b7f5aaa858d77eda3ee8982930ed085a8293fcacd8cdb98c0e7b8bbbc","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d75067485e36b9eb4c85a1af9b6044d2b7f853d3fbb18faab9140c67795837704e1345b90548b1802546c3b0f4e880c16b82c3204f50a7a1806d6ec3bd3fe8d7","tags":[]}] +[14:16:12.878] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for XMR\nPrice: 0.00288218BTC (3%)\nBTC: 0.0025 - 0.005\nXMR: 0.86739898 - 1.73479796\nMethod: Altcoins\nCreated: 2025-10-02T18:15:20Z","created_at":1759428938,"id":"b334d673cf4cac72e79ad6b501be5ffd8dc2a91fe95082e34afd81f2cc22ed57","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1790a9e48cecf21194eb8e3eda4a0a1a15882c8562333f4a26d8f7b7cea0a24f23706c794557184c36c9a115e62997132c0602b9701a1516a014c84a4cb4bea0","tags":[]}] +[14:16:12.938] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🏁🐫 Silk-Road Racing Team\n\n#silkroad #freeross #bitcoin #racing\n\n\n⚡️https://ronin21.xyz/products/silk-road-racing-team-heavyweight-t-shirt?variant=51175733789014\nhttps://blossom.primal.net/938bf1e974172957d962e07dc9365c06424c5f62aae3ceb1562e258cc5a0d939.jpg","created_at":1759428931,"id":"ae45a55b877f321295ba976e4d7fe1b73b8bbcbc76fbbd11f874a35c7f901809","kind":1,"pubkey":"163717aed71f45fe18e706bb1230a34aea815043acb22f54c5cdfe30d0c96bc4","sig":"4167314c607129f6d3109d385458ef112c61f29bdb9efbe582cac76a289441560b9ef7b1d58579a86642a1a2250a6dba2a4058232187735a3c9821a7323883e2","tags":[["t","silkroad"],["t","freeross"],["t","bitcoin"],["t","racing"]]}] +[14:16:12.999] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:13.059] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:16:13.120] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:13.181] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:13.241] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:13.302] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:13.362] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:13.423] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:13.483] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:13.544] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:13.604] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:13.665] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:13.725] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759428970,"id":"3dcc288de450f3fd689b75b7bd1372e76d84de1579775cb1ada98de457496701","kind":3,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"f87cce7a5a220c3f965fd7c9f5f5c67a4fc72862c91696813eaaea87857aabc6b568f72e28f8eb9679626879a518d8cd898ee407481ef166c20c38da7ca499f0","tags":[["p","585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","123afae7d187ba36d6ddcd97dbf4acc59aeffe243f782592ff8f25ed579df306"],["p","dd9b989dfe5e0840a92538f3e9f84f674e5f17ab05932efbacb4d8e6c905f302"],["p","b6960fcbc7c04536bc98f55c48d9f9fee55983e7f763c124453af728af82311d"],["p","2a55ed52ed31f85f8bdef3bdd165aa74265d82c952193d7b76fb4c76cccc4231"],["p","805b34f708837dfb3e7f05815ac5760564628b58d5a0ce839ccbb6ef3620fac3"],["p","1c8c756b11bee55a9539dc96fa3032cf08ca65ce04b4f68ec1d09193f0527c6e"],["p","b10b0d5e5fae9c6c48a8c77f7e5abd42a79e9480e25a4094051d4ba4ce14456b"],["p","0403c86a1bb4cfbc34c8a493fbd1f0d158d42dd06d03eaa3720882a066d3a378"],["p","2c930918de42dca5d140c84c58e6d4f25b05a5d016171001c29c2a236d90c511"],["p","7d2473f4eb255262f97f8bc5cb431997503f2ed3d0b133b1b5e45229fa3b00ff"],["p","583ef554f95ac3c34d18d90005f80788bb8357b232236646815f4826c66e54a6"],["p","8be6bafee48ba2551e7f7a71455ae78e0a3cac5c469386306ef0c7a9b50da031"],["p","5e1a49baa20ef3daf90d0116c624b4c587d0bb10f35c106439e7f47f81884214"],["p","4d6d388658271af489f6fc8458ddf010bd9268c1fed673352c0c6ae7fee13f23"],["p","1d80e5588de010d137a67c42b03717595f5f510e73e42cfc48f31bae91844d59"],["p","f0fb31d1810a9f95df3d178fcd67ca0b09879ad11e8689e56962cd839fb8ead4"],["p","f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0"],["p","43baaf0c28e6cfb195b17ee083e19eb3a4afdfac54d9b6baf170270ed193e34c"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","bf2376e17ba4ec269d10fcc996a4746b451152be9031fa48e74553dde5526bce"],["p","958b754a1d3de5b5eca0fe31d2d555f451325f8498a83da1997b7fcd5c39e88c"],["p","be39043cc12efbddfee564d95da751a71df6c139e2def45c431cadeb4a573ca3"],["p","0dcfcaac3d6f6796f7bc300a7d0d3b71bad1457f4e6b72f9cf490e1e55767be4"],["p","1af54955936be804f95010647ea5ada5c7627eddf0734a7f813bba0e31eed960"],["p","f96c3d76497074c4c83a7b3823380e77dc73d5a9494fd2e053e4a1453e17824b"],["p","1aa1dbbeeb04dde30e1e7a00f7eea7605549e78726d53522e3990aa68009f433"],["p","21335073401a310cc9179fe3a77e9666710cfdf630dfd840f972c183a244b1ad"],["p","0f52b01a82649e892f9175f8dcc8cd432ac6cd5e0f5d5f8bbde62b1b21263741"],["p","5ffb8e1b6b629c0e34a013f9298ebb0759b98a3d24029916321d5eb4255b6735"],["p","a6230ed2c2cb6c9240b4de29946e0b3857c0652cc8b3bee5e73c793f5c09a369"],["p","4b0bcab460adda31fad5a326fb0c04f6ec821fb24be85dbdc03c04cc0e12fc07"],["p","9b6d95b76a01191a4c778185681ed7f3bced2fffa8e41516ec78240b213285f5"],["p","cccfccb023231da836fd3f86605163fc41be51800fe13248da3125b35718521c"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["p","2efdb88e1ad052d9d72eb8f6787efa7f2c432064ff7af8efd1776af944bfc3e3"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"],["p","2bcb31df1c1d848f230c86011a01aa329afb2a0c32fc926c725dc8e293e2a4e4"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d"],["p","cb0f973f96e28c12890afe39c2c84c54e12758b2ed53d3b150820bff66331530"],["p","813c2662366a12f6337b951c048552fd3c4894e403cab701634dcd803786dc09"],["p","32d1df355d2ceeea5cd1c41d574b9105c68eeefd7c0bd29e49c152fe71c4c7d5"],["p","9356d008ab226ab6b08ab3c73900546b2836c48c7527f0e5332c09201a3e6dc8"],["p","da66d621d05bb7a7d64c1adfe0ea6421ca7db60d1089cd98b06ccfcd0ea2ed78"],["p","f8e6c64342f1e052480630e27e1016dce35fc3a614e60434fef4aa2503328ca9"],["p","391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248"],["p","e4b67f9f7c0a1cce1c24ca9196f8e1446fcce17fdef5d5eb46a3929433ea4d91"],["p","b480a3f71f13017ddbdb1a045b95fa752d631108f52e7c51f2a171832a31d8af"],["p","8fb140b4e8ddef97ce4b821d247278a1a4353362623f64021484b372f948000c"],["p","ad9738030ab84c04ffaec64abadd6cc682cb3501d193a5ff1c94b90770915558"],["p","a9f8b3f2ac19cc06d5194dd1ac9314d4741a09777444986553926d9165181647"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","bad9867380f6f2b8f50d3ff869aaf75dc998797204a7c85a4bf6f8bb9fc07078"],["p","12cfc2ec5a39a39d02f921f77e701dbc175b6287f22ddf0247af39706967f1d9"],["p","184dca27c18fec7d9e38e15552a6d5c2cd22741a7fe356fd13c4bd99c63594ee"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","6d0aab5fa4dbf03612bb16466c9e6e102b6dcbb51251735f8f3b3f36f8136f75"],["p","38a8f31c3e46f488768757e0b93a26ac28451259bb4295ea3847b38088333a6c"],["p","cbaa0c829ed322c1551cb6619b4c08b9a26ac97ffb4e959205eec78ee9313245"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","9ba8c688f091ca48de2b0f9bc998e3bc36a0092149f9201767da592849777f1c"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","bef514bd58c8ceea4beb9e6b84a8d983935f7be26f49e14df68098f1ba64156e"],["p","111647ac263ecb407f191dea6c5dc77ec22c99274da8a10a2c694d6965d03421"],["p","7744c38a5915be8ac8fee2cd615473da463b5fa81d8876a499c9f99921558bdb"],["p","dd35763b08908d07fc0da8ecffe5206d8fb349d9be5465b186f53eac1bb444a7"],["p","cf473ebe9736ba689c718de3d5ef38909bca57db3c38e3f9de7f5dadfc88ed6f"]]}] +[14:16:14.632] RECV nos.lol:443: 35ad47c025884a286dd65fa"],["p","bbb5dda0e15567979f0543407bdc2033d6f0bbb30f72512a981cfdb2f09e2747" +[14:16:14.995] RECV nos.lol:443: 344279f7a36aa3de1710c9198b1e9e8a394cd13e0dd5c994c63"],["p +[14:16:15.297] RECV nos.lol:443: e5aaf4b89afc400c184579e"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],[ +[14:16:15.780] RECV nos.lol:443: b558da5ff69bc3cbb81e"],["p","726a1e261cc6474674e8285 +[14:16:16.696] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:16.696] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:16.696] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:16.696] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:16.848] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:16:16.954] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:17.015] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:17.076] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:17.101] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:16:17.161] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:16:17.222] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"芋だ。ポテトだ。","created_at":1759428952,"id":"98e10ca46043d19a48e42b965592959e8ded70ff480062a571fec75efcefae77","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"d1dcdab580fa953f6c02be147b02908b581571a7ac53635859f0c16650e6e07805384889dff999f0078f019af6d43517f1ccc8ba5d67564d333c2efc8baad6ca","tags":[]}] +[14:16:17.282] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"飲食に関して、縄文時代の遺伝子が残ってるから貪欲になってしまう傾向があるので、これは私たちのせいではない","created_at":1759428950,"id":"9690d42b7f5aaa858d77eda3ee8982930ed085a8293fcacd8cdb98c0e7b8bbbc","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d75067485e36b9eb4c85a1af9b6044d2b7f853d3fbb18faab9140c67795837704e1345b90548b1802546c3b0f4e880c16b82c3204f50a7a1806d6ec3bd3fe8d7","tags":[]}] +[14:16:17.343] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for XMR\nPrice: 0.00288218BTC (3%)\nBTC: 0.0025 - 0.005\nXMR: 0.86739898 - 1.73479796\nMethod: Altcoins\nCreated: 2025-10-02T18:15:20Z","created_at":1759428938,"id":"b334d673cf4cac72e79ad6b501be5ffd8dc2a91fe95082e34afd81f2cc22ed57","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1790a9e48cecf21194eb8e3eda4a0a1a15882c8562333f4a26d8f7b7cea0a24f23706c794557184c36c9a115e62997132c0602b9701a1516a014c84a4cb4bea0","tags":[]}] +[14:16:17.403] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🏁🐫 Silk-Road Racing Team\n\n#silkroad #freeross #bitcoin #racing\n\n\n⚡️https://ronin21.xyz/products/silk-road-racing-team-heavyweight-t-shirt?variant=51175733789014\nhttps://blossom.primal.net/938bf1e974172957d962e07dc9365c06424c5f62aae3ceb1562e258cc5a0d939.jpg","created_at":1759428931,"id":"ae45a55b877f321295ba976e4d7fe1b73b8bbcbc76fbbd11f874a35c7f901809","kind":1,"pubkey":"163717aed71f45fe18e706bb1230a34aea815043acb22f54c5cdfe30d0c96bc4","sig":"4167314c607129f6d3109d385458ef112c61f29bdb9efbe582cac76a289441560b9ef7b1d58579a86642a1a2250a6dba2a4058232187735a3c9821a7323883e2","tags":[["t","silkroad"],["t","freeross"],["t","bitcoin"],["t","racing"]]}] +[14:16:17.464] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:17.525] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:16:17.585] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:17.646] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:17.706] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:17.767] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:17.827] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:17.888] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:17.948] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:18.009] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:18.070] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:18.130] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:18.191] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759428970,"id":"3dcc288de450f3fd689b75b7bd1372e76d84de1579775cb1ada98de457496701","kind":3,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"f87cce7a5a220c3f965fd7c9f5f5c67a4fc72862c91696813eaaea87857aabc6b568f72e28f8eb9679626879a518d8cd898ee407481ef166c20c38da7ca499f0","tags":[["p","585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","123afae7d187ba36d6ddcd97dbf4acc59aeffe243f782592ff8f25ed579df306"],["p","dd9b989dfe5e0840a92538f3e9f84f674e5f17ab05932efbacb4d8e6c905f302"],["p","b6960fcbc7c04536bc98f55c48d9f9fee55983e7f763c124453af728af82311d"],["p","2a55ed52ed31f85f8bdef3bdd165aa74265d82c952193d7b76fb4c76cccc4231"],["p","805b34f708837dfb3e7f05815ac5760564628b58d5a0ce839ccbb6ef3620fac3"],["p","1c8c756b11bee55a9539dc96fa3032cf08ca65ce04b4f68ec1d09193f0527c6e"],["p","b10b0d5e5fae9c6c48a8c77f7e5abd42a79e9480e25a4094051d4ba4ce14456b"],["p","0403c86a1bb4cfbc34c8a493fbd1f0d158d42dd06d03eaa3720882a066d3a378"],["p","2c930918de42dca5d140c84c58e6d4f25b05a5d016171001c29c2a236d90c511"],["p","7d2473f4eb255262f97f8bc5cb431997503f2ed3d0b133b1b5e45229fa3b00ff"],["p","583ef554f95ac3c34d18d90005f80788bb8357b232236646815f4826c66e54a6"],["p","8be6bafee48ba2551e7f7a71455ae78e0a3cac5c469386306ef0c7a9b50da031"],["p","5e1a49baa20ef3daf90d0116c624b4c587d0bb10f35c106439e7f47f81884214"],["p","4d6d388658271af489f6fc8458ddf010bd9268c1fed673352c0c6ae7fee13f23"],["p","1d80e5588de010d137a67c42b03717595f5f510e73e42cfc48f31bae91844d59"],["p","f0fb31d1810a9f95df3d178fcd67ca0b09879ad11e8689e56962cd839fb8ead4"],["p","f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0"],["p","43baaf0c28e6cfb195b17ee083e19eb3a4afdfac54d9b6baf170270ed193e34c"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","bf2376e17ba4ec269d10fcc996a4746b451152be9031fa48e74553dde5526bce"],["p","958b754a1d3de5b5eca0fe31d2d555f451325f8498a83da1997b7fcd5c39e88c"],["p","be39043cc12efbddfee564d95da751a71df6c139e2def45c431cadeb4a573ca3"],["p","0dcfcaac3d6f6796f7bc300a7d0d3b71bad1457f4e6b72f9cf490e1e55767be4"],["p","1af54955936be804f95010647ea5ada5c7627eddf0734a7f813bba0e31eed960"],["p","f96c3d76497074c4c83a7b3823380e77dc73d5a9494fd2e053e4a1453e17824b"],["p","1aa1dbbeeb04dde30e1e7a00f7eea7605549e78726d53522e3990aa68009f433"],["p","21335073401a310cc9179fe3a77e9666710cfdf630dfd840f972c183a244b1ad"],["p","0f52b01a82649e892f9175f8dcc8cd432ac6cd5e0f5d5f8bbde62b1b21263741"],["p","5ffb8e1b6b629c0e34a013f9298ebb0759b98a3d24029916321d5eb4255b6735"],["p","a6230ed2c2cb6c9240b4de29946e0b3857c0652cc8b3bee5e73c793f5c09a369"],["p","4b0bcab460adda31fad5a326fb0c04f6ec821fb24be85dbdc03c04cc0e12fc07"],["p","9b6d95b76a01191a4c778185681ed7f3bced2fffa8e41516ec78240b213285f5"],["p","cccfccb023231da836fd3f86605163fc41be51800fe13248da3125b35718521c"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["p","2efdb88e1ad052d9d72eb8f6787efa7f2c432064ff7af8efd1776af944bfc3e3"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"],["p","2bcb31df1c1d848f230c86011a01aa329afb2a0c32fc926c725dc8e293e2a4e4"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d"],["p","cb0f973f96e28c12890afe39c2c84c54e12758b2ed53d3b150820bff66331530"],["p","813c2662366a12f6337b951c048552fd3c4894e403cab701634dcd803786dc09"],["p","32d1df355d2ceeea5cd1c41d574b9105c68eeefd7c0bd29e49c152fe71c4c7d5"],["p","9356d008ab226ab6b08ab3c73900546b2836c48c7527f0e5332c09201a3e6dc8"],["p","da66d621d05bb7a7d64c1adfe0ea6421ca7db60d1089cd98b06ccfcd0ea2ed78"],["p","f8e6c64342f1e052480630e27e1016dce35fc3a614e60434fef4aa2503328ca9"],["p","391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248"],["p","e4b67f9f7c0a1cce1c24ca9196f8e1446fcce17fdef5d5eb46a3929433ea4d91"],["p","b480a3f71f13017ddbdb1a045b95fa752d631108f52e7c51f2a171832a31d8af"],["p","8fb140b4e8ddef97ce4b821d247278a1a4353362623f64021484b372f948000c"],["p","ad9738030ab84c04ffaec64abadd6cc682cb3501d193a5ff1c94b90770915558"],["p","a9f8b3f2ac19cc06d5194dd1ac9314d4741a09777444986553926d9165181647"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","bad9867380f6f2b8f50d3ff869aaf75dc998797204a7c85a4bf6f8bb9fc07078"],["p","12cfc2ec5a39a39d02f921f77e701dbc175b6287f22ddf0247af39706967f1d9"],["p","184dca27c18fec7d9e38e15552a6d5c2cd22741a7fe356fd13c4bd99c63594ee"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","6d0aab5fa4dbf03612bb16466c9e6e102b6dcbb51251735f8f3b3f36f8136f75"],["p","38a8f31c3e46f488768757e0b93a26ac28451259bb4295ea3847b38088333a6c"],["p","cbaa0c829ed322c1551cb6619b4c08b9a26ac97ffb4e959205eec78ee9313245"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","9ba8c688f091ca48de2b0f9bc998e3bc36a0092149f9201767da592849777f1c"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","bef514bd58c8ceea4beb9e6b84a8d983935f7be26f49e14df68098f1ba64156e"],["p","111647ac263ecb407f191dea6c5dc77ec22c99274da8a10a2c694d6965d03421"],["p","7744c38a5915be8ac8fee2cd615473da463b5fa81d8876a499c9f99921558bdb"],["p","dd35763b08908d07fc0da8ecffe5206d8fb349d9be5465b186f53eac1bb444a7"],["p","cf473ebe9736ba689c718de3d5ef38909bca57db3c38e3f9de7f5dadfc88ed6f"]]}] +[14:16:19.097] RECV nos.lol:443: 35ad47c025884a286dd65fa"],["p","bbb5dda0e15567979f0543407bdc2033d6f0bbb30f72512a981cfdb2f09e2747" +[14:16:19.460] RECV nos.lol:443: 344279f7a36aa3de1710c9198b1e9e8a394cd13e0dd5c994c63"],["p +[14:16:19.761] RECV nos.lol:443: e5aaf4b89afc400c184579e"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],[ +[14:16:20.244] RECV nos.lol:443: b558da5ff69bc3cbb81e"],["p","726a1e261cc6474674e8285 +[14:16:21.158] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:21.158] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:21.159] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:21.159] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:21.310] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:16:21.371] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:16:21.431] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:16:21.492] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:21.553] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:21.613] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:21.674] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:16:21.734] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:16:21.795] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"芋だ。ポテトだ。","created_at":1759428952,"id":"98e10ca46043d19a48e42b965592959e8ded70ff480062a571fec75efcefae77","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"d1dcdab580fa953f6c02be147b02908b581571a7ac53635859f0c16650e6e07805384889dff999f0078f019af6d43517f1ccc8ba5d67564d333c2efc8baad6ca","tags":[]}] +[14:16:21.855] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"飲食に関して、縄文時代の遺伝子が残ってるから貪欲になってしまう傾向があるので、これは私たちのせいではない","created_at":1759428950,"id":"9690d42b7f5aaa858d77eda3ee8982930ed085a8293fcacd8cdb98c0e7b8bbbc","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d75067485e36b9eb4c85a1af9b6044d2b7f853d3fbb18faab9140c67795837704e1345b90548b1802546c3b0f4e880c16b82c3204f50a7a1806d6ec3bd3fe8d7","tags":[]}] +[14:16:21.916] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:21.977] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7\"}","created_at":1759428978,"id":"3e5c572016e52883f30501eb9c5f91019e28b0e83b92ceb5750ce69f95402f63","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"09723c5d69fbf51a86362c408c28bf6d155d80f8716096787352efa0c7eaa7d3a3d4ed7c457a3d49410719e9b6a23fecbdf6a00e946e310413605fecdc72414f","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7"]]}] +[14:16:22.038] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:16:22.098] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:22.124] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:22.185] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:22.245] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:22.306] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:22.366] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:22.427] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:22.487] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:22.548] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:22.911] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:16:24.800] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:24.801] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:24.801] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:24.801] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:24.960] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:16:25.021] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:16:25.081] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:16:25.142] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:16:25.202] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:25.263] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:25.323] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:25.384] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:16:25.444] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:16:25.505] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"芋だ。ポテトだ。","created_at":1759428952,"id":"98e10ca46043d19a48e42b965592959e8ded70ff480062a571fec75efcefae77","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"d1dcdab580fa953f6c02be147b02908b581571a7ac53635859f0c16650e6e07805384889dff999f0078f019af6d43517f1ccc8ba5d67564d333c2efc8baad6ca","tags":[]}] +[14:16:25.565] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:25.626] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7\"}","created_at":1759428978,"id":"3e5c572016e52883f30501eb9c5f91019e28b0e83b92ceb5750ce69f95402f63","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"09723c5d69fbf51a86362c408c28bf6d155d80f8716096787352efa0c7eaa7d3a3d4ed7c457a3d49410719e9b6a23fecbdf6a00e946e310413605fecdc72414f","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7"]]}] +[14:16:25.686] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:16:25.747] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:25.807] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:25.868] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:25.929] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:25.989] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:26.050] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:26.110] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:26.171] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:26.232] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:26.594] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:16:28.258] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:28.258] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:28.258] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:28.258] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:28.590] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:16:28.651] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:16:28.711] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:16:28.772] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:16:28.832] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:28.893] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:28.953] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:29.014] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:16:29.075] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:16:29.135] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"芋だ。ポテトだ。","created_at":1759428952,"id":"98e10ca46043d19a48e42b965592959e8ded70ff480062a571fec75efcefae77","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"d1dcdab580fa953f6c02be147b02908b581571a7ac53635859f0c16650e6e07805384889dff999f0078f019af6d43517f1ccc8ba5d67564d333c2efc8baad6ca","tags":[]}] +[14:16:29.196] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:29.256] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7\"}","created_at":1759428978,"id":"3e5c572016e52883f30501eb9c5f91019e28b0e83b92ceb5750ce69f95402f63","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"09723c5d69fbf51a86362c408c28bf6d155d80f8716096787352efa0c7eaa7d3a3d4ed7c457a3d49410719e9b6a23fecbdf6a00e946e310413605fecdc72414f","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7"]]}] +[14:16:29.317] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:16:29.377] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:29.438] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:29.498] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:29.559] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:29.619] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:29.680] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:29.740] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:29.801] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:29.861] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:30.224] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:16:31.930] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:31.930] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:31.930] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:31.930] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:32.083] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:16:32.143] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:16:32.169] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:16:32.229] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:16:32.290] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:32.350] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:32.411] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:32.472] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:16:32.532] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:16:32.593] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"芋だ。ポテトだ。","created_at":1759428952,"id":"98e10ca46043d19a48e42b965592959e8ded70ff480062a571fec75efcefae77","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"d1dcdab580fa953f6c02be147b02908b581571a7ac53635859f0c16650e6e07805384889dff999f0078f019af6d43517f1ccc8ba5d67564d333c2efc8baad6ca","tags":[]}] +[14:16:32.653] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:32.714] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759428991,"id":"254c602f2fa60ec03a31bf35c18a111d80cc7b8c20b6ad1301a9174428a982f3","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"b758419661044e901d624d79576bc6153a5effaf413be53e4bd939235eb33d54031a49d16408b8983fc87d204f7e93e0ddc593c955131329290b55e559d42923","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:16:32.775] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:16:32.835] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:32.896] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:32.956] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:33.017] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:33.077] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:33.138] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:33.198] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:33.259] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:33.320] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:33.683] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:16:35.383] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:35.383] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:35.383] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:35.383] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:35.540] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:16:35.600] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:16:35.661] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:16:35.722] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:16:35.782] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:35.842] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:35.903] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:35.963] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:16:36.024] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:16:36.084] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"芋だ。ポテトだ。","created_at":1759428952,"id":"98e10ca46043d19a48e42b965592959e8ded70ff480062a571fec75efcefae77","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"d1dcdab580fa953f6c02be147b02908b581571a7ac53635859f0c16650e6e07805384889dff999f0078f019af6d43517f1ccc8ba5d67564d333c2efc8baad6ca","tags":[]}] +[14:16:36.145] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:36.205] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759428991,"id":"254c602f2fa60ec03a31bf35c18a111d80cc7b8c20b6ad1301a9174428a982f3","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"b758419661044e901d624d79576bc6153a5effaf413be53e4bd939235eb33d54031a49d16408b8983fc87d204f7e93e0ddc593c955131329290b55e559d42923","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:16:36.266] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:16:36.327] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:36.387] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:36.448] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:36.508] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:36.569] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:36.629] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:36.690] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:36.750] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:36.811] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:37.139] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:16:39.197] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:39.197] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:39.197] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:39.197] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:39.350] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:16:39.410] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:16:39.470] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:16:39.531] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:16:39.591] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:39.652] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:39.712] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:39.773] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:16:39.833] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:16:39.894] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"芋だ。ポテトだ。","created_at":1759428952,"id":"98e10ca46043d19a48e42b965592959e8ded70ff480062a571fec75efcefae77","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"d1dcdab580fa953f6c02be147b02908b581571a7ac53635859f0c16650e6e07805384889dff999f0078f019af6d43517f1ccc8ba5d67564d333c2efc8baad6ca","tags":[]}] +[14:16:39.954] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:40.015] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1/2 trans 1/2 bobs 😂","created_at":1759428999,"id":"f7ba7abe934e48fe63d99af5991b288c919180027bc94e5f8958212cf16745c9","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fa1dff2315dd25dc35bb2a35b5b0ac77199cbe726bfae85520dedc6f2be8da37de90a7ddebc8d16e9126579600f0e4195560faf96ad4a566b96c7dc5e24c9311","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","wss://nos.lol","root"],["e","d8a3200c2966cbfe40e7ad455eac0429318c236cbcbb60cde25deb5429d2d65d","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[14:16:40.077] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759428991,"id":"254c602f2fa60ec03a31bf35c18a111d80cc7b8c20b6ad1301a9174428a982f3","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"b758419661044e901d624d79576bc6153a5effaf413be53e4bd939235eb33d54031a49d16408b8983fc87d204f7e93e0ddc593c955131329290b55e559d42923","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:16:40.137] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:16:40.198] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:40.259] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:40.319] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:40.380] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:40.440] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:40.501] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:40.562] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:40.622] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:40.682] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:41.045] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:16:42.713] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:42.713] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:42.713] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:42.713] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:42.865] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1/2 trans 1/2 bobs 😂","created_at":1759428999,"id":"f7ba7abe934e48fe63d99af5991b288c919180027bc94e5f8958212cf16745c9","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fa1dff2315dd25dc35bb2a35b5b0ac77199cbe726bfae85520dedc6f2be8da37de90a7ddebc8d16e9126579600f0e4195560faf96ad4a566b96c7dc5e24c9311","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","wss://nos.lol","root"],["e","d8a3200c2966cbfe40e7ad455eac0429318c236cbcbb60cde25deb5429d2d65d","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[14:16:42.926] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:16:42.986] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:16:43.047] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:16:43.107] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:16:43.168] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:43.228] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:43.289] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:43.349] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:16:43.410] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:16:43.470] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:43.531] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759428991,"id":"254c602f2fa60ec03a31bf35c18a111d80cc7b8c20b6ad1301a9174428a982f3","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"b758419661044e901d624d79576bc6153a5effaf413be53e4bd939235eb33d54031a49d16408b8983fc87d204f7e93e0ddc593c955131329290b55e559d42923","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:16:43.591] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:16:43.652] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:43.712] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:43.773] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:43.834] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:43.894] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:43.954] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:44.015] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:44.075] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:44.136] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:44.197] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429000,"id":"bcbb88421f4c5833384c88219b5c6189b3c9b185da6c934f79b578b05b7d3710","kind":3,"pubkey":"a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256","sig":"91401876f66d2dbd3c5bb8e432932e8952fa83d5cae5eafa421ce20270ea86ed86f9ff93fc1c21ad9c772563d07d7f5dcb8b76e9241594699d4bbed7440a2a4f","tags":[["p","95a061b8fbdd5e0275d7069d1a1ab21b649af6c9c68250325f5e778bd926aa66"],["p","01d0bbf9537ef1fd0ddf815f41c1896738f6a3a0f600f51c782b7d8891130d4c"],["p","da66d621d05bb7a7d64c1adfe0ea6421ca7db60d1089cd98b06ccfcd0ea2ed78"],["p","508f28656b8db436153d5239de5034abc0351b8c90ac33e6b156d1fea64b2960"],["p","b3b37da64c8df56ecfe5fa287f0121fa6dfe72e18325d0ce2e3866b93318d8f5"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","f8e51fc216c8a8507347651219f07e22ef9f4299a8319fe3f7ee97a194140811"],["p","0d94dde23d23fad80f70488a374096197d068bcb2f0804055cb8450f0e315190"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","f0fb31d1810a9f95df3d178fcd67ca0b09879ad11e8689e56962cd839fb8ead4"],["p","bf2376e17ba4ec269d10fcc996a4746b451152be9031fa48e74553dde5526bce"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"],["p","0f52b01a82649e892f9175f8dcc8cd432ac6cd5e0f5d5f8bbde62b1b21263741"],["p","469223f4ce484bba4e125a8c8a92032e16e5d07b723ea5da2f253b2627da92c7"],["p","64bfa9abffe5b18d0731eed57b38173adc2ba89bf87c168da90517f021e722b5"],["p","2efdb88e1ad052d9d72eb8f6787efa7f2c432064ff7af8efd1776af944bfc3e3"],["p","338b826c2c3e2b173c6acc1adc77c047076030a1329c7127a622d1325e59c1b0"],["p","cc76679480a4504b963a3809cba60b458ebf068c62713621dda94b527860447d"],["p","16784bad81b7b8215ee4cea0adf04793aba9a836608792c63010ebced7d184c8"],["p","be5a7d74a3c1376016833ed8e02c1571d5b06fab277ad4d6cee2560aa23ed9be"],["p","8aafa7d540d9f24704477eba0f39ec24b7d65439bcf588b04d69cc428aff4c2a"],["p","681b9e384921582ecac2b4641a9337f17b66698a01065694c91dc4c345c6de1e"],["p","8bad9b1fcfc287230812387866c0e0d741da13bee3d592a97f706108c48173fc"],["p","296842eaaed9be5ae0668da09fe48aac0521c4af859ad547d93145e5ac34c17e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","b8dd9afd51008741db4b5ff40ef0bed9bfc446e6ea69f5d5890b7c0865a2c3f1"],["p","de75eb1d7a6627807a8dff0fb337cfcf189e7e9af8ab6229f688f664710c3014"],["p","d9f2471cc8f33111071bd0de1fef87d783cc4140e0f70ba9298a53b9e07c60f6"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","9d7af6946b320b3ba6b4d386de2b2cf3f8ac52fdcb63f3343d1a8362693a3ce5"],["p","8d9d2b77930ee54ec3e46faf774ddd041dbb4e4aa35ad47c025884a286dd65fa"],["p","b70ea0ddabd96e073c703e0385f5bb38e52119c923fecdbb5bf7c98f900166aa"],["p","d534e53eb0956e4b9afd891bb2f8319970309f14200a9459b534a83e3980adaf"],["p","be39043cc12efbddfee564d95da751a71df6c139e2def45c431cadeb4a573ca3"],["p","f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0"],["p","50c59a1cb233d08d5a1fb493f520c6b5d7f77a2ba42e4666801a3e366b0a027e"],["p","1d80e5588de010d137a67c42b03717595f5f510e73e42cfc48f31bae91844d59"],["p","722a9b1535c6a7e207b8744b88c043e97111fe1b35664aface5d6d826212c703"],["p","cccfccb023231da836fd3f86605163fc41be51800fe13248da3125b35718521c"],["p","5ffb8e1b6b629c0e34a013f9298ebb0759b98a3d24029916321d5eb4255b6735"],["p","6fc6cd9b3a8532a6ec42a8be2b8ffc0b7abe675b4a1c62314e131a6b06b0bf6e"],["p","d70d50091504b992d1838822af245d5f6b3a16b82d917acb7924cef61ed4acee"],["p","f5f98ba54045a2fa8df2a97c35fc30299b9e0d51a701795c040ca80cedaf39b4"],["p","1af54955936be804f95010647ea5ada5c7627eddf0734a7f813bba0e31eed960"],["p","5fd004926969381ac2bb3a32720036d9f9632d29fb22dc1bf5d8fb1c9e265798"],["p","a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256"],["p","33b68d46e69e0fe145ceac12fec3ce552c61f972f348e13d343ff7956f97aa6c"],["p","f96c3d76497074c4c83a7b3823380e77dc73d5a9494fd2e053e4a1453e17824b"],["p","a6230ed2c2cb6c9240b4de29946e0b3857c0652cc8b3bee5e73c793f5c09a369"],["p","cbb2f023b6aa09626d51d2f4ea99fa9138ea80ec7d5ffdce9feef8dcd6352031"],["p","414908397af26640247042da7f942fc931837c8d9d3207e271cb2fb2bbd9a4ed"],["p","2bcb31df1c1d848f230c86011a01aa329afb2a0c32fc926c725dc8e293e2a4e4"],["p","9b6d95b76a01191a4c778185681ed7f3bced2fffa8e41516ec78240b213285f5"],["p","2664209547c22a784407a7987fcf7bc0081dc06cdccb98ec7c61953b4d73c6d4"],["p","4b0bcab460adda31fad5a326fb0c04f6ec821fb24be85dbdc03c04cc0e12fc07"],["p","dfcf6ae4111c1bb29d8cd96df8793aeded34f78764b5089da32e0f3edf7a9e2f"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b"],["p","958b754a1d3de5b5eca0fe31d2d555f451325f8498a83da1997b7fcd5c39e88c"],["p","e17e9a18635f80d472e6b49da910f244f2ed7437aec6bf227f85092066d67a6b"],["p","62fe49023565e07b56d74a203721f4ea21f284f9295a019a98954fb7864eec9a"],["p","47969365e7e3cd52ebc499f5d9a687a64b59812008a4a2fbc273ef61624a085d"],["p","ab701878befc26097fcdd272bb701aebdfa3d227caac85d28c5d44de84d6d44e"],["p","665e667acb1a5e3d601cae03bf02b9f105547c070067ab0663c5666a1dcac1b3"],["p","c0e0c4272134d92da8651650c10ca612b710a670d5e043488f27e073a1f63a16"],["p","fd6faf1e35435a286656ec9f8e2bd716d7c168c0358acb8cb39ee8ecae104d78"],["p","ee85604f8ec6e4e24f8eaf2a624d042ebd431dae448fe11779adcfb6bb78575e"],["p","870744363b1a5986d6773b5706dde258c039f6d34a5ffc270915033a6a67c82c"],["p","1aa1dbbeeb04dde30e1e7a00f7eea7605549e78726d53522e3990aa68009f433"],["p","0418ca2d6cd6c7fbc4e0391bb745027023a7edbc38f2a60fc3b68f006efb85eb"],["p","6d5f85c4be85fabb803716cc002f46c88ad5d44dae8098f057482640a3f7e400"],["p","d93336159384719a6309977ed5a6afe024816d47587a30af99149cbd441e7344"],["p","aa9539e1ec76ee5f79c8e3f0c23d62f1adf40a69a05bb0728d792d17b75d8179"],["p","6efb74e66b7ed7fb9fb7b8b8f12e1fbbabe7f45823a33a14ac60cc9241285536"],["p","32d1df355d2ceeea5cd1c41d574b9105c68eeefd7c0bd29e49c152fe71c4c7d5"],["p","2243581d5f557483a449dc06ec38b38f42f32832cdd05cce974c8f82771762ad"],["p","63d59db8d29abe29db7380beb912b8f600237332b6c9978b208694e4be170f6f"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["p","6116d06dd94aedb145d2e7689a2fe2249de56fc4e89a4cace88a0d4b1d80b135"],["p","efcb5fc526c91ffd51aaef037009f22eb4d3300a141c1754af439e085680aa8e"],["p","837332c28d91f1893f8ac8d05451860e54de3b13b919180677c058d385f1e26f"],["p","0dcfcaac3d6f6796f7bc300a7d0d3b71bad1457f4e6b72f9cf490e1e55767be4"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","410adfbdceb593f7c093a75d01ff0e79bc4767987e30d776b836e898583495fc"],["p","278be33c14240980b132ba9d665ed9c9ee5a91ef2a046f151a1fc45c5c67f928"],["p","264d4029ef7c806919bd40f751c8158671039b4226a0916081d7ca158ab528f2"],["p","83c6e985c28d7dfb9b51eb209f82af91c8a8f6f322d84ca75453479916446f86"],["p","f776bcc12271be79fc71b655f3cbfeb3a8a169f33ee1335fcc0c22829901da0a"],["p","813c2662366a12f6337b951c048552fd3c4894e403cab701634dcd803786dc09"],["p","9356d008ab226ab6b08ab3c73900546b2836c48c7527f0e5332c09201a3e6dc8"],["p","cb0f973f96e28c12890afe39c2c84c54e12758b2ed53d3b150820bff66331530"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d"],["p","d7a4345c3ead1ea7a34bd6aae43c63cbd81941d9ba019fe972843e5ce78e3187"],["p","1b2f3c135c9e5a9d6f70de02f0b7b546c11855d0453f6682bc874d6bbe64dfd6"],["p","b286cdad6f9db7f1641139fc9ab69c8f2b36e25608206dfec856ef10ee4e8091"],["p","0959538a1d0ed66b471def67bcf0651b3a5654eaf032144a9df4c343eff675da"],["p","f1b911af1c7a56073e3b83ba7eaa681467040e0fbbdd265445aa80e65c274c22"],["p","99562ddb32ac3e3378919a943e861cb999e80583efc7c70a42bba3e9ebbfc579"],["p","cc97551f4c883c9d2f027d95f76eb50448865b5f174ad0c46368fad7c7a3c8f1"],["p","f9497235341110289f24d4bdd45a9197c6fecfcd85249147366410453073bf1c"],["p","34fad5244f7de844c1c9e001e2737ed23f3ea96ceda2e20d241d46fee5824f16"],["p","21335073401a310cc9179fe3a77e9666710cfdf630dfd840f972c183a244b1ad"],["p","7937540697665014c0de0809cdc75f37e900b1091a6b3d812af4178fe672caa9"]]}] +[14:16:44.560] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:16:46.268] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:46.268] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:46.268] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:46.268] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:46.420] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1/2 trans 1/2 bobs 😂","created_at":1759428999,"id":"f7ba7abe934e48fe63d99af5991b288c919180027bc94e5f8958212cf16745c9","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fa1dff2315dd25dc35bb2a35b5b0ac77199cbe726bfae85520dedc6f2be8da37de90a7ddebc8d16e9126579600f0e4195560faf96ad4a566b96c7dc5e24c9311","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","wss://nos.lol","root"],["e","d8a3200c2966cbfe40e7ad455eac0429318c236cbcbb60cde25deb5429d2d65d","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[14:16:46.480] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:16:46.541] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:16:46.601] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:16:46.662] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:16:46.722] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:46.783] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:46.843] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:46.904] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:16:46.964] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:16:47.025] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:47.086] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:16:47.112] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:16:47.172] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:47.233] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:47.293] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:47.354] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:47.414] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:47.475] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:47.535] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:47.596] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:47.657] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:47.717] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429000,"id":"bcbb88421f4c5833384c88219b5c6189b3c9b185da6c934f79b578b05b7d3710","kind":3,"pubkey":"a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256","sig":"91401876f66d2dbd3c5bb8e432932e8952fa83d5cae5eafa421ce20270ea86ed86f9ff93fc1c21ad9c772563d07d7f5dcb8b76e9241594699d4bbed7440a2a4f","tags":[["p","95a061b8fbdd5e0275d7069d1a1ab21b649af6c9c68250325f5e778bd926aa66"],["p","01d0bbf9537ef1fd0ddf815f41c1896738f6a3a0f600f51c782b7d8891130d4c"],["p","da66d621d05bb7a7d64c1adfe0ea6421ca7db60d1089cd98b06ccfcd0ea2ed78"],["p","508f28656b8db436153d5239de5034abc0351b8c90ac33e6b156d1fea64b2960"],["p","b3b37da64c8df56ecfe5fa287f0121fa6dfe72e18325d0ce2e3866b93318d8f5"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","f8e51fc216c8a8507347651219f07e22ef9f4299a8319fe3f7ee97a194140811"],["p","0d94dde23d23fad80f70488a374096197d068bcb2f0804055cb8450f0e315190"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","f0fb31d1810a9f95df3d178fcd67ca0b09879ad11e8689e56962cd839fb8ead4"],["p","bf2376e17ba4ec269d10fcc996a4746b451152be9031fa48e74553dde5526bce"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"],["p","0f52b01a82649e892f9175f8dcc8cd432ac6cd5e0f5d5f8bbde62b1b21263741"],["p","469223f4ce484bba4e125a8c8a92032e16e5d07b723ea5da2f253b2627da92c7"],["p","64bfa9abffe5b18d0731eed57b38173adc2ba89bf87c168da90517f021e722b5"],["p","2efdb88e1ad052d9d72eb8f6787efa7f2c432064ff7af8efd1776af944bfc3e3"],["p","338b826c2c3e2b173c6acc1adc77c047076030a1329c7127a622d1325e59c1b0"],["p","cc76679480a4504b963a3809cba60b458ebf068c62713621dda94b527860447d"],["p","16784bad81b7b8215ee4cea0adf04793aba9a836608792c63010ebced7d184c8"],["p","be5a7d74a3c1376016833ed8e02c1571d5b06fab277ad4d6cee2560aa23ed9be"],["p","8aafa7d540d9f24704477eba0f39ec24b7d65439bcf588b04d69cc428aff4c2a"],["p","681b9e384921582ecac2b4641a9337f17b66698a01065694c91dc4c345c6de1e"],["p","8bad9b1fcfc287230812387866c0e0d741da13bee3d592a97f706108c48173fc"],["p","296842eaaed9be5ae0668da09fe48aac0521c4af859ad547d93145e5ac34c17e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","b8dd9afd51008741db4b5ff40ef0bed9bfc446e6ea69f5d5890b7c0865a2c3f1"],["p","de75eb1d7a6627807a8dff0fb337cfcf189e7e9af8ab6229f688f664710c3014"],["p","d9f2471cc8f33111071bd0de1fef87d783cc4140e0f70ba9298a53b9e07c60f6"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","9d7af6946b320b3ba6b4d386de2b2cf3f8ac52fdcb63f3343d1a8362693a3ce5"],["p","8d9d2b77930ee54ec3e46faf774ddd041dbb4e4aa35ad47c025884a286dd65fa"],["p","b70ea0ddabd96e073c703e0385f5bb38e52119c923fecdbb5bf7c98f900166aa"],["p","d534e53eb0956e4b9afd891bb2f8319970309f14200a9459b534a83e3980adaf"],["p","be39043cc12efbddfee564d95da751a71df6c139e2def45c431cadeb4a573ca3"],["p","f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0"],["p","50c59a1cb233d08d5a1fb493f520c6b5d7f77a2ba42e4666801a3e366b0a027e"],["p","1d80e5588de010d137a67c42b03717595f5f510e73e42cfc48f31bae91844d59"],["p","722a9b1535c6a7e207b8744b88c043e97111fe1b35664aface5d6d826212c703"],["p","cccfccb023231da836fd3f86605163fc41be51800fe13248da3125b35718521c"],["p","5ffb8e1b6b629c0e34a013f9298ebb0759b98a3d24029916321d5eb4255b6735"],["p","6fc6cd9b3a8532a6ec42a8be2b8ffc0b7abe675b4a1c62314e131a6b06b0bf6e"],["p","d70d50091504b992d1838822af245d5f6b3a16b82d917acb7924cef61ed4acee"],["p","f5f98ba54045a2fa8df2a97c35fc30299b9e0d51a701795c040ca80cedaf39b4"],["p","1af54955936be804f95010647ea5ada5c7627eddf0734a7f813bba0e31eed960"],["p","5fd004926969381ac2bb3a32720036d9f9632d29fb22dc1bf5d8fb1c9e265798"],["p","a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256"],["p","33b68d46e69e0fe145ceac12fec3ce552c61f972f348e13d343ff7956f97aa6c"],["p","f96c3d76497074c4c83a7b3823380e77dc73d5a9494fd2e053e4a1453e17824b"],["p","a6230ed2c2cb6c9240b4de29946e0b3857c0652cc8b3bee5e73c793f5c09a369"],["p","cbb2f023b6aa09626d51d2f4ea99fa9138ea80ec7d5ffdce9feef8dcd6352031"],["p","414908397af26640247042da7f942fc931837c8d9d3207e271cb2fb2bbd9a4ed"],["p","2bcb31df1c1d848f230c86011a01aa329afb2a0c32fc926c725dc8e293e2a4e4"],["p","9b6d95b76a01191a4c778185681ed7f3bced2fffa8e41516ec78240b213285f5"],["p","2664209547c22a784407a7987fcf7bc0081dc06cdccb98ec7c61953b4d73c6d4"],["p","4b0bcab460adda31fad5a326fb0c04f6ec821fb24be85dbdc03c04cc0e12fc07"],["p","dfcf6ae4111c1bb29d8cd96df8793aeded34f78764b5089da32e0f3edf7a9e2f"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b"],["p","958b754a1d3de5b5eca0fe31d2d555f451325f8498a83da1997b7fcd5c39e88c"],["p","e17e9a18635f80d472e6b49da910f244f2ed7437aec6bf227f85092066d67a6b"],["p","62fe49023565e07b56d74a203721f4ea21f284f9295a019a98954fb7864eec9a"],["p","47969365e7e3cd52ebc499f5d9a687a64b59812008a4a2fbc273ef61624a085d"],["p","ab701878befc26097fcdd272bb701aebdfa3d227caac85d28c5d44de84d6d44e"],["p","665e667acb1a5e3d601cae03bf02b9f105547c070067ab0663c5666a1dcac1b3"],["p","c0e0c4272134d92da8651650c10ca612b710a670d5e043488f27e073a1f63a16"],["p","fd6faf1e35435a286656ec9f8e2bd716d7c168c0358acb8cb39ee8ecae104d78"],["p","ee85604f8ec6e4e24f8eaf2a624d042ebd431dae448fe11779adcfb6bb78575e"],["p","870744363b1a5986d6773b5706dde258c039f6d34a5ffc270915033a6a67c82c"],["p","1aa1dbbeeb04dde30e1e7a00f7eea7605549e78726d53522e3990aa68009f433"],["p","0418ca2d6cd6c7fbc4e0391bb745027023a7edbc38f2a60fc3b68f006efb85eb"],["p","6d5f85c4be85fabb803716cc002f46c88ad5d44dae8098f057482640a3f7e400"],["p","d93336159384719a6309977ed5a6afe024816d47587a30af99149cbd441e7344"],["p","aa9539e1ec76ee5f79c8e3f0c23d62f1adf40a69a05bb0728d792d17b75d8179"],["p","6efb74e66b7ed7fb9fb7b8b8f12e1fbbabe7f45823a33a14ac60cc9241285536"],["p","32d1df355d2ceeea5cd1c41d574b9105c68eeefd7c0bd29e49c152fe71c4c7d5"],["p","2243581d5f557483a449dc06ec38b38f42f32832cdd05cce974c8f82771762ad"],["p","63d59db8d29abe29db7380beb912b8f600237332b6c9978b208694e4be170f6f"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["p","6116d06dd94aedb145d2e7689a2fe2249de56fc4e89a4cace88a0d4b1d80b135"],["p","efcb5fc526c91ffd51aaef037009f22eb4d3300a141c1754af439e085680aa8e"],["p","837332c28d91f1893f8ac8d05451860e54de3b13b919180677c058d385f1e26f"],["p","0dcfcaac3d6f6796f7bc300a7d0d3b71bad1457f4e6b72f9cf490e1e55767be4"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","410adfbdceb593f7c093a75d01ff0e79bc4767987e30d776b836e898583495fc"],["p","278be33c14240980b132ba9d665ed9c9ee5a91ef2a046f151a1fc45c5c67f928"],["p","264d4029ef7c806919bd40f751c8158671039b4226a0916081d7ca158ab528f2"],["p","83c6e985c28d7dfb9b51eb209f82af91c8a8f6f322d84ca75453479916446f86"],["p","f776bcc12271be79fc71b655f3cbfeb3a8a169f33ee1335fcc0c22829901da0a"],["p","813c2662366a12f6337b951c048552fd3c4894e403cab701634dcd803786dc09"],["p","9356d008ab226ab6b08ab3c73900546b2836c48c7527f0e5332c09201a3e6dc8"],["p","cb0f973f96e28c12890afe39c2c84c54e12758b2ed53d3b150820bff66331530"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d"],["p","d7a4345c3ead1ea7a34bd6aae43c63cbd81941d9ba019fe972843e5ce78e3187"],["p","1b2f3c135c9e5a9d6f70de02f0b7b546c11855d0453f6682bc874d6bbe64dfd6"],["p","b286cdad6f9db7f1641139fc9ab69c8f2b36e25608206dfec856ef10ee4e8091"],["p","0959538a1d0ed66b471def67bcf0651b3a5654eaf032144a9df4c343eff675da"],["p","f1b911af1c7a56073e3b83ba7eaa681467040e0fbbdd265445aa80e65c274c22"],["p","99562ddb32ac3e3378919a943e861cb999e80583efc7c70a42bba3e9ebbfc579"],["p","cc97551f4c883c9d2f027d95f76eb50448865b5f174ad0c46368fad7c7a3c8f1"],["p","f9497235341110289f24d4bdd45a9197c6fecfcd85249147366410453073bf1c"],["p","34fad5244f7de844c1c9e001e2737ed23f3ea96ceda2e20d241d46fee5824f16"],["p","21335073401a310cc9179fe3a77e9666710cfdf630dfd840f972c183a244b1ad"],["p","7937540697665014c0de0809cdc75f37e900b1091a6b3d812af4178fe672caa9"]]}] +[14:16:48.080] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:16:49.782] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:49.782] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:49.782] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:49.782] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:49.933] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1/2 trans 1/2 bobs 😂","created_at":1759428999,"id":"f7ba7abe934e48fe63d99af5991b288c919180027bc94e5f8958212cf16745c9","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fa1dff2315dd25dc35bb2a35b5b0ac77199cbe726bfae85520dedc6f2be8da37de90a7ddebc8d16e9126579600f0e4195560faf96ad4a566b96c7dc5e24c9311","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","wss://nos.lol","root"],["e","d8a3200c2966cbfe40e7ad455eac0429318c236cbcbb60cde25deb5429d2d65d","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[14:16:49.994] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:16:50.084] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:16:50.144] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:16:50.205] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:16:50.265] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:50.326] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:50.386] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:50.447] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:16:50.507] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:16:50.568] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:50.629] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:16:50.689] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:16:50.750] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:50.810] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:50.871] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:50.932] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:50.992] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:51.053] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:51.114] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:51.174] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:51.235] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:51.295] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429000,"id":"bcbb88421f4c5833384c88219b5c6189b3c9b185da6c934f79b578b05b7d3710","kind":3,"pubkey":"a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256","sig":"91401876f66d2dbd3c5bb8e432932e8952fa83d5cae5eafa421ce20270ea86ed86f9ff93fc1c21ad9c772563d07d7f5dcb8b76e9241594699d4bbed7440a2a4f","tags":[["p","95a061b8fbdd5e0275d7069d1a1ab21b649af6c9c68250325f5e778bd926aa66"],["p","01d0bbf9537ef1fd0ddf815f41c1896738f6a3a0f600f51c782b7d8891130d4c"],["p","da66d621d05bb7a7d64c1adfe0ea6421ca7db60d1089cd98b06ccfcd0ea2ed78"],["p","508f28656b8db436153d5239de5034abc0351b8c90ac33e6b156d1fea64b2960"],["p","b3b37da64c8df56ecfe5fa287f0121fa6dfe72e18325d0ce2e3866b93318d8f5"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","f8e51fc216c8a8507347651219f07e22ef9f4299a8319fe3f7ee97a194140811"],["p","0d94dde23d23fad80f70488a374096197d068bcb2f0804055cb8450f0e315190"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","f0fb31d1810a9f95df3d178fcd67ca0b09879ad11e8689e56962cd839fb8ead4"],["p","bf2376e17ba4ec269d10fcc996a4746b451152be9031fa48e74553dde5526bce"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"],["p","0f52b01a82649e892f9175f8dcc8cd432ac6cd5e0f5d5f8bbde62b1b21263741"],["p","469223f4ce484bba4e125a8c8a92032e16e5d07b723ea5da2f253b2627da92c7"],["p","64bfa9abffe5b18d0731eed57b38173adc2ba89bf87c168da90517f021e722b5"],["p","2efdb88e1ad052d9d72eb8f6787efa7f2c432064ff7af8efd1776af944bfc3e3"],["p","338b826c2c3e2b173c6acc1adc77c047076030a1329c7127a622d1325e59c1b0"],["p","cc76679480a4504b963a3809cba60b458ebf068c62713621dda94b527860447d"],["p","16784bad81b7b8215ee4cea0adf04793aba9a836608792c63010ebced7d184c8"],["p","be5a7d74a3c1376016833ed8e02c1571d5b06fab277ad4d6cee2560aa23ed9be"],["p","8aafa7d540d9f24704477eba0f39ec24b7d65439bcf588b04d69cc428aff4c2a"],["p","681b9e384921582ecac2b4641a9337f17b66698a01065694c91dc4c345c6de1e"],["p","8bad9b1fcfc287230812387866c0e0d741da13bee3d592a97f706108c48173fc"],["p","296842eaaed9be5ae0668da09fe48aac0521c4af859ad547d93145e5ac34c17e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","b8dd9afd51008741db4b5ff40ef0bed9bfc446e6ea69f5d5890b7c0865a2c3f1"],["p","de75eb1d7a6627807a8dff0fb337cfcf189e7e9af8ab6229f688f664710c3014"],["p","d9f2471cc8f33111071bd0de1fef87d783cc4140e0f70ba9298a53b9e07c60f6"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","9d7af6946b320b3ba6b4d386de2b2cf3f8ac52fdcb63f3343d1a8362693a3ce5"],["p","8d9d2b77930ee54ec3e46faf774ddd041dbb4e4aa35ad47c025884a286dd65fa"],["p","b70ea0ddabd96e073c703e0385f5bb38e52119c923fecdbb5bf7c98f900166aa"],["p","d534e53eb0956e4b9afd891bb2f8319970309f14200a9459b534a83e3980adaf"],["p","be39043cc12efbddfee564d95da751a71df6c139e2def45c431cadeb4a573ca3"],["p","f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0"],["p","50c59a1cb233d08d5a1fb493f520c6b5d7f77a2ba42e4666801a3e366b0a027e"],["p","1d80e5588de010d137a67c42b03717595f5f510e73e42cfc48f31bae91844d59"],["p","722a9b1535c6a7e207b8744b88c043e97111fe1b35664aface5d6d826212c703"],["p","cccfccb023231da836fd3f86605163fc41be51800fe13248da3125b35718521c"],["p","5ffb8e1b6b629c0e34a013f9298ebb0759b98a3d24029916321d5eb4255b6735"],["p","6fc6cd9b3a8532a6ec42a8be2b8ffc0b7abe675b4a1c62314e131a6b06b0bf6e"],["p","d70d50091504b992d1838822af245d5f6b3a16b82d917acb7924cef61ed4acee"],["p","f5f98ba54045a2fa8df2a97c35fc30299b9e0d51a701795c040ca80cedaf39b4"],["p","1af54955936be804f95010647ea5ada5c7627eddf0734a7f813bba0e31eed960"],["p","5fd004926969381ac2bb3a32720036d9f9632d29fb22dc1bf5d8fb1c9e265798"],["p","a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256"],["p","33b68d46e69e0fe145ceac12fec3ce552c61f972f348e13d343ff7956f97aa6c"],["p","f96c3d76497074c4c83a7b3823380e77dc73d5a9494fd2e053e4a1453e17824b"],["p","a6230ed2c2cb6c9240b4de29946e0b3857c0652cc8b3bee5e73c793f5c09a369"],["p","cbb2f023b6aa09626d51d2f4ea99fa9138ea80ec7d5ffdce9feef8dcd6352031"],["p","414908397af26640247042da7f942fc931837c8d9d3207e271cb2fb2bbd9a4ed"],["p","2bcb31df1c1d848f230c86011a01aa329afb2a0c32fc926c725dc8e293e2a4e4"],["p","9b6d95b76a01191a4c778185681ed7f3bced2fffa8e41516ec78240b213285f5"],["p","2664209547c22a784407a7987fcf7bc0081dc06cdccb98ec7c61953b4d73c6d4"],["p","4b0bcab460adda31fad5a326fb0c04f6ec821fb24be85dbdc03c04cc0e12fc07"],["p","dfcf6ae4111c1bb29d8cd96df8793aeded34f78764b5089da32e0f3edf7a9e2f"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b"],["p","958b754a1d3de5b5eca0fe31d2d555f451325f8498a83da1997b7fcd5c39e88c"],["p","e17e9a18635f80d472e6b49da910f244f2ed7437aec6bf227f85092066d67a6b"],["p","62fe49023565e07b56d74a203721f4ea21f284f9295a019a98954fb7864eec9a"],["p","47969365e7e3cd52ebc499f5d9a687a64b59812008a4a2fbc273ef61624a085d"],["p","ab701878befc26097fcdd272bb701aebdfa3d227caac85d28c5d44de84d6d44e"],["p","665e667acb1a5e3d601cae03bf02b9f105547c070067ab0663c5666a1dcac1b3"],["p","c0e0c4272134d92da8651650c10ca612b710a670d5e043488f27e073a1f63a16"],["p","fd6faf1e35435a286656ec9f8e2bd716d7c168c0358acb8cb39ee8ecae104d78"],["p","ee85604f8ec6e4e24f8eaf2a624d042ebd431dae448fe11779adcfb6bb78575e"],["p","870744363b1a5986d6773b5706dde258c039f6d34a5ffc270915033a6a67c82c"],["p","1aa1dbbeeb04dde30e1e7a00f7eea7605549e78726d53522e3990aa68009f433"],["p","0418ca2d6cd6c7fbc4e0391bb745027023a7edbc38f2a60fc3b68f006efb85eb"],["p","6d5f85c4be85fabb803716cc002f46c88ad5d44dae8098f057482640a3f7e400"],["p","d93336159384719a6309977ed5a6afe024816d47587a30af99149cbd441e7344"],["p","aa9539e1ec76ee5f79c8e3f0c23d62f1adf40a69a05bb0728d792d17b75d8179"],["p","6efb74e66b7ed7fb9fb7b8b8f12e1fbbabe7f45823a33a14ac60cc9241285536"],["p","32d1df355d2ceeea5cd1c41d574b9105c68eeefd7c0bd29e49c152fe71c4c7d5"],["p","2243581d5f557483a449dc06ec38b38f42f32832cdd05cce974c8f82771762ad"],["p","63d59db8d29abe29db7380beb912b8f600237332b6c9978b208694e4be170f6f"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["p","6116d06dd94aedb145d2e7689a2fe2249de56fc4e89a4cace88a0d4b1d80b135"],["p","efcb5fc526c91ffd51aaef037009f22eb4d3300a141c1754af439e085680aa8e"],["p","837332c28d91f1893f8ac8d05451860e54de3b13b919180677c058d385f1e26f"],["p","0dcfcaac3d6f6796f7bc300a7d0d3b71bad1457f4e6b72f9cf490e1e55767be4"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","410adfbdceb593f7c093a75d01ff0e79bc4767987e30d776b836e898583495fc"],["p","278be33c14240980b132ba9d665ed9c9ee5a91ef2a046f151a1fc45c5c67f928"],["p","264d4029ef7c806919bd40f751c8158671039b4226a0916081d7ca158ab528f2"],["p","83c6e985c28d7dfb9b51eb209f82af91c8a8f6f322d84ca75453479916446f86"],["p","f776bcc12271be79fc71b655f3cbfeb3a8a169f33ee1335fcc0c22829901da0a"],["p","813c2662366a12f6337b951c048552fd3c4894e403cab701634dcd803786dc09"],["p","9356d008ab226ab6b08ab3c73900546b2836c48c7527f0e5332c09201a3e6dc8"],["p","cb0f973f96e28c12890afe39c2c84c54e12758b2ed53d3b150820bff66331530"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d"],["p","d7a4345c3ead1ea7a34bd6aae43c63cbd81941d9ba019fe972843e5ce78e3187"],["p","1b2f3c135c9e5a9d6f70de02f0b7b546c11855d0453f6682bc874d6bbe64dfd6"],["p","b286cdad6f9db7f1641139fc9ab69c8f2b36e25608206dfec856ef10ee4e8091"],["p","0959538a1d0ed66b471def67bcf0651b3a5654eaf032144a9df4c343eff675da"],["p","f1b911af1c7a56073e3b83ba7eaa681467040e0fbbdd265445aa80e65c274c22"],["p","99562ddb32ac3e3378919a943e861cb999e80583efc7c70a42bba3e9ebbfc579"],["p","cc97551f4c883c9d2f027d95f76eb50448865b5f174ad0c46368fad7c7a3c8f1"],["p","f9497235341110289f24d4bdd45a9197c6fecfcd85249147366410453073bf1c"],["p","34fad5244f7de844c1c9e001e2737ed23f3ea96ceda2e20d241d46fee5824f16"],["p","21335073401a310cc9179fe3a77e9666710cfdf630dfd840f972c183a244b1ad"],["p","7937540697665014c0de0809cdc75f37e900b1091a6b3d812af4178fe672caa9"]]}] +[14:16:51.658] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:16:53.322] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:53.322] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:53.322] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:53.322] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:53.473] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しめない会になっちゃう","created_at":1759429011,"id":"9f4b6831e628cbc631d250bfe72372381bca8bf7e5162de6763b335638f1000e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"558228222ed71fb052c6f24e6eae88eaecddca42731bc3146beffc223bfaf061d89da5bf576b81e3a78f727ecdbd95f00564a32c738280d2372b7fb029e6544d","tags":[]}] +[14:16:53.534] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1/2 trans 1/2 bobs 😂","created_at":1759428999,"id":"f7ba7abe934e48fe63d99af5991b288c919180027bc94e5f8958212cf16745c9","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fa1dff2315dd25dc35bb2a35b5b0ac77199cbe726bfae85520dedc6f2be8da37de90a7ddebc8d16e9126579600f0e4195560faf96ad4a566b96c7dc5e24c9311","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","wss://nos.lol","root"],["e","d8a3200c2966cbfe40e7ad455eac0429318c236cbcbb60cde25deb5429d2d65d","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[14:16:53.594] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:16:53.655] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:16:53.715] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:16:53.776] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:16:53.836] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:53.897] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:53.957] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:54.018] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:16:54.079] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:54.139] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:16:54.200] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:16:54.260] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:54.321] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:54.381] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:54.442] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:54.502] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:54.563] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:54.623] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:54.684] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:54.744] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:54.805] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429000,"id":"bcbb88421f4c5833384c88219b5c6189b3c9b185da6c934f79b578b05b7d3710","kind":3,"pubkey":"a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256","sig":"91401876f66d2dbd3c5bb8e432932e8952fa83d5cae5eafa421ce20270ea86ed86f9ff93fc1c21ad9c772563d07d7f5dcb8b76e9241594699d4bbed7440a2a4f","tags":[["p","95a061b8fbdd5e0275d7069d1a1ab21b649af6c9c68250325f5e778bd926aa66"],["p","01d0bbf9537ef1fd0ddf815f41c1896738f6a3a0f600f51c782b7d8891130d4c"],["p","da66d621d05bb7a7d64c1adfe0ea6421ca7db60d1089cd98b06ccfcd0ea2ed78"],["p","508f28656b8db436153d5239de5034abc0351b8c90ac33e6b156d1fea64b2960"],["p","b3b37da64c8df56ecfe5fa287f0121fa6dfe72e18325d0ce2e3866b93318d8f5"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","f8e51fc216c8a8507347651219f07e22ef9f4299a8319fe3f7ee97a194140811"],["p","0d94dde23d23fad80f70488a374096197d068bcb2f0804055cb8450f0e315190"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","f0fb31d1810a9f95df3d178fcd67ca0b09879ad11e8689e56962cd839fb8ead4"],["p","bf2376e17ba4ec269d10fcc996a4746b451152be9031fa48e74553dde5526bce"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"],["p","0f52b01a82649e892f9175f8dcc8cd432ac6cd5e0f5d5f8bbde62b1b21263741"],["p","469223f4ce484bba4e125a8c8a92032e16e5d07b723ea5da2f253b2627da92c7"],["p","64bfa9abffe5b18d0731eed57b38173adc2ba89bf87c168da90517f021e722b5"],["p","2efdb88e1ad052d9d72eb8f6787efa7f2c432064ff7af8efd1776af944bfc3e3"],["p","338b826c2c3e2b173c6acc1adc77c047076030a1329c7127a622d1325e59c1b0"],["p","cc76679480a4504b963a3809cba60b458ebf068c62713621dda94b527860447d"],["p","16784bad81b7b8215ee4cea0adf04793aba9a836608792c63010ebced7d184c8"],["p","be5a7d74a3c1376016833ed8e02c1571d5b06fab277ad4d6cee2560aa23ed9be"],["p","8aafa7d540d9f24704477eba0f39ec24b7d65439bcf588b04d69cc428aff4c2a"],["p","681b9e384921582ecac2b4641a9337f17b66698a01065694c91dc4c345c6de1e"],["p","8bad9b1fcfc287230812387866c0e0d741da13bee3d592a97f706108c48173fc"],["p","296842eaaed9be5ae0668da09fe48aac0521c4af859ad547d93145e5ac34c17e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","b8dd9afd51008741db4b5ff40ef0bed9bfc446e6ea69f5d5890b7c0865a2c3f1"],["p","de75eb1d7a6627807a8dff0fb337cfcf189e7e9af8ab6229f688f664710c3014"],["p","d9f2471cc8f33111071bd0de1fef87d783cc4140e0f70ba9298a53b9e07c60f6"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","9d7af6946b320b3ba6b4d386de2b2cf3f8ac52fdcb63f3343d1a8362693a3ce5"],["p","8d9d2b77930ee54ec3e46faf774ddd041dbb4e4aa35ad47c025884a286dd65fa"],["p","b70ea0ddabd96e073c703e0385f5bb38e52119c923fecdbb5bf7c98f900166aa"],["p","d534e53eb0956e4b9afd891bb2f8319970309f14200a9459b534a83e3980adaf"],["p","be39043cc12efbddfee564d95da751a71df6c139e2def45c431cadeb4a573ca3"],["p","f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0"],["p","50c59a1cb233d08d5a1fb493f520c6b5d7f77a2ba42e4666801a3e366b0a027e"],["p","1d80e5588de010d137a67c42b03717595f5f510e73e42cfc48f31bae91844d59"],["p","722a9b1535c6a7e207b8744b88c043e97111fe1b35664aface5d6d826212c703"],["p","cccfccb023231da836fd3f86605163fc41be51800fe13248da3125b35718521c"],["p","5ffb8e1b6b629c0e34a013f9298ebb0759b98a3d24029916321d5eb4255b6735"],["p","6fc6cd9b3a8532a6ec42a8be2b8ffc0b7abe675b4a1c62314e131a6b06b0bf6e"],["p","d70d50091504b992d1838822af245d5f6b3a16b82d917acb7924cef61ed4acee"],["p","f5f98ba54045a2fa8df2a97c35fc30299b9e0d51a701795c040ca80cedaf39b4"],["p","1af54955936be804f95010647ea5ada5c7627eddf0734a7f813bba0e31eed960"],["p","5fd004926969381ac2bb3a32720036d9f9632d29fb22dc1bf5d8fb1c9e265798"],["p","a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256"],["p","33b68d46e69e0fe145ceac12fec3ce552c61f972f348e13d343ff7956f97aa6c"],["p","f96c3d76497074c4c83a7b3823380e77dc73d5a9494fd2e053e4a1453e17824b"],["p","a6230ed2c2cb6c9240b4de29946e0b3857c0652cc8b3bee5e73c793f5c09a369"],["p","cbb2f023b6aa09626d51d2f4ea99fa9138ea80ec7d5ffdce9feef8dcd6352031"],["p","414908397af26640247042da7f942fc931837c8d9d3207e271cb2fb2bbd9a4ed"],["p","2bcb31df1c1d848f230c86011a01aa329afb2a0c32fc926c725dc8e293e2a4e4"],["p","9b6d95b76a01191a4c778185681ed7f3bced2fffa8e41516ec78240b213285f5"],["p","2664209547c22a784407a7987fcf7bc0081dc06cdccb98ec7c61953b4d73c6d4"],["p","4b0bcab460adda31fad5a326fb0c04f6ec821fb24be85dbdc03c04cc0e12fc07"],["p","dfcf6ae4111c1bb29d8cd96df8793aeded34f78764b5089da32e0f3edf7a9e2f"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b"],["p","958b754a1d3de5b5eca0fe31d2d555f451325f8498a83da1997b7fcd5c39e88c"],["p","e17e9a18635f80d472e6b49da910f244f2ed7437aec6bf227f85092066d67a6b"],["p","62fe49023565e07b56d74a203721f4ea21f284f9295a019a98954fb7864eec9a"],["p","47969365e7e3cd52ebc499f5d9a687a64b59812008a4a2fbc273ef61624a085d"],["p","ab701878befc26097fcdd272bb701aebdfa3d227caac85d28c5d44de84d6d44e"],["p","665e667acb1a5e3d601cae03bf02b9f105547c070067ab0663c5666a1dcac1b3"],["p","c0e0c4272134d92da8651650c10ca612b710a670d5e043488f27e073a1f63a16"],["p","fd6faf1e35435a286656ec9f8e2bd716d7c168c0358acb8cb39ee8ecae104d78"],["p","ee85604f8ec6e4e24f8eaf2a624d042ebd431dae448fe11779adcfb6bb78575e"],["p","870744363b1a5986d6773b5706dde258c039f6d34a5ffc270915033a6a67c82c"],["p","1aa1dbbeeb04dde30e1e7a00f7eea7605549e78726d53522e3990aa68009f433"],["p","0418ca2d6cd6c7fbc4e0391bb745027023a7edbc38f2a60fc3b68f006efb85eb"],["p","6d5f85c4be85fabb803716cc002f46c88ad5d44dae8098f057482640a3f7e400"],["p","d93336159384719a6309977ed5a6afe024816d47587a30af99149cbd441e7344"],["p","aa9539e1ec76ee5f79c8e3f0c23d62f1adf40a69a05bb0728d792d17b75d8179"],["p","6efb74e66b7ed7fb9fb7b8b8f12e1fbbabe7f45823a33a14ac60cc9241285536"],["p","32d1df355d2ceeea5cd1c41d574b9105c68eeefd7c0bd29e49c152fe71c4c7d5"],["p","2243581d5f557483a449dc06ec38b38f42f32832cdd05cce974c8f82771762ad"],["p","63d59db8d29abe29db7380beb912b8f600237332b6c9978b208694e4be170f6f"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["p","6116d06dd94aedb145d2e7689a2fe2249de56fc4e89a4cace88a0d4b1d80b135"],["p","efcb5fc526c91ffd51aaef037009f22eb4d3300a141c1754af439e085680aa8e"],["p","837332c28d91f1893f8ac8d05451860e54de3b13b919180677c058d385f1e26f"],["p","0dcfcaac3d6f6796f7bc300a7d0d3b71bad1457f4e6b72f9cf490e1e55767be4"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","410adfbdceb593f7c093a75d01ff0e79bc4767987e30d776b836e898583495fc"],["p","278be33c14240980b132ba9d665ed9c9ee5a91ef2a046f151a1fc45c5c67f928"],["p","264d4029ef7c806919bd40f751c8158671039b4226a0916081d7ca158ab528f2"],["p","83c6e985c28d7dfb9b51eb209f82af91c8a8f6f322d84ca75453479916446f86"],["p","f776bcc12271be79fc71b655f3cbfeb3a8a169f33ee1335fcc0c22829901da0a"],["p","813c2662366a12f6337b951c048552fd3c4894e403cab701634dcd803786dc09"],["p","9356d008ab226ab6b08ab3c73900546b2836c48c7527f0e5332c09201a3e6dc8"],["p","cb0f973f96e28c12890afe39c2c84c54e12758b2ed53d3b150820bff66331530"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d"],["p","d7a4345c3ead1ea7a34bd6aae43c63cbd81941d9ba019fe972843e5ce78e3187"],["p","1b2f3c135c9e5a9d6f70de02f0b7b546c11855d0453f6682bc874d6bbe64dfd6"],["p","b286cdad6f9db7f1641139fc9ab69c8f2b36e25608206dfec856ef10ee4e8091"],["p","0959538a1d0ed66b471def67bcf0651b3a5654eaf032144a9df4c343eff675da"],["p","f1b911af1c7a56073e3b83ba7eaa681467040e0fbbdd265445aa80e65c274c22"],["p","99562ddb32ac3e3378919a943e861cb999e80583efc7c70a42bba3e9ebbfc579"],["p","cc97551f4c883c9d2f027d95f76eb50448865b5f174ad0c46368fad7c7a3c8f1"],["p","f9497235341110289f24d4bdd45a9197c6fecfcd85249147366410453073bf1c"],["p","34fad5244f7de844c1c9e001e2737ed23f3ea96ceda2e20d241d46fee5824f16"],["p","21335073401a310cc9179fe3a77e9666710cfdf630dfd840f972c183a244b1ad"],["p","7937540697665014c0de0809cdc75f37e900b1091a6b3d812af4178fe672caa9"]]}] +[14:16:55.168] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:16:56.873] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:56.873] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:56.873] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:56.873] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:57.025] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Are you sending this message from the boat? \n\n","created_at":1759429013,"id":"e10f5cb3308eafed3138f27e2fe8022a8b80659682050de2d406753251766db5","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"26aea37d06bea586c99f79b750cf0bc66d44592c2502a7f6796aec3af854044a8101743717fcdc531d1ddc9dc78ea0e22c72a45749aae15e7a38d64e9958b090","tags":[["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:16:57.086] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しめない会になっちゃう","created_at":1759429011,"id":"9f4b6831e628cbc631d250bfe72372381bca8bf7e5162de6763b335638f1000e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"558228222ed71fb052c6f24e6eae88eaecddca42731bc3146beffc223bfaf061d89da5bf576b81e3a78f727ecdbd95f00564a32c738280d2372b7fb029e6544d","tags":[]}] +[14:16:57.111] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1/2 trans 1/2 bobs 😂","created_at":1759428999,"id":"f7ba7abe934e48fe63d99af5991b288c919180027bc94e5f8958212cf16745c9","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fa1dff2315dd25dc35bb2a35b5b0ac77199cbe726bfae85520dedc6f2be8da37de90a7ddebc8d16e9126579600f0e4195560faf96ad4a566b96c7dc5e24c9311","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","wss://nos.lol","root"],["e","d8a3200c2966cbfe40e7ad455eac0429318c236cbcbb60cde25deb5429d2d65d","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[14:16:57.171] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:16:57.232] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:16:57.292] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:16:57.353] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:16:57.413] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:57.474] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:57.534] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:57.595] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:57.655] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:16:57.716] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:16:57.776] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:57.837] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:57.897] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:57.958] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:58.018] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:58.079] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:58.139] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:58.200] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:58.260] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:58.321] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429000,"id":"bcbb88421f4c5833384c88219b5c6189b3c9b185da6c934f79b578b05b7d3710","kind":3,"pubkey":"a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256","sig":"91401876f66d2dbd3c5bb8e432932e8952fa83d5cae5eafa421ce20270ea86ed86f9ff93fc1c21ad9c772563d07d7f5dcb8b76e9241594699d4bbed7440a2a4f","tags":[["p","95a061b8fbdd5e0275d7069d1a1ab21b649af6c9c68250325f5e778bd926aa66"],["p","01d0bbf9537ef1fd0ddf815f41c1896738f6a3a0f600f51c782b7d8891130d4c"],["p","da66d621d05bb7a7d64c1adfe0ea6421ca7db60d1089cd98b06ccfcd0ea2ed78"],["p","508f28656b8db436153d5239de5034abc0351b8c90ac33e6b156d1fea64b2960"],["p","b3b37da64c8df56ecfe5fa287f0121fa6dfe72e18325d0ce2e3866b93318d8f5"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","f8e51fc216c8a8507347651219f07e22ef9f4299a8319fe3f7ee97a194140811"],["p","0d94dde23d23fad80f70488a374096197d068bcb2f0804055cb8450f0e315190"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","f0fb31d1810a9f95df3d178fcd67ca0b09879ad11e8689e56962cd839fb8ead4"],["p","bf2376e17ba4ec269d10fcc996a4746b451152be9031fa48e74553dde5526bce"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"],["p","0f52b01a82649e892f9175f8dcc8cd432ac6cd5e0f5d5f8bbde62b1b21263741"],["p","469223f4ce484bba4e125a8c8a92032e16e5d07b723ea5da2f253b2627da92c7"],["p","64bfa9abffe5b18d0731eed57b38173adc2ba89bf87c168da90517f021e722b5"],["p","2efdb88e1ad052d9d72eb8f6787efa7f2c432064ff7af8efd1776af944bfc3e3"],["p","338b826c2c3e2b173c6acc1adc77c047076030a1329c7127a622d1325e59c1b0"],["p","cc76679480a4504b963a3809cba60b458ebf068c62713621dda94b527860447d"],["p","16784bad81b7b8215ee4cea0adf04793aba9a836608792c63010ebced7d184c8"],["p","be5a7d74a3c1376016833ed8e02c1571d5b06fab277ad4d6cee2560aa23ed9be"],["p","8aafa7d540d9f24704477eba0f39ec24b7d65439bcf588b04d69cc428aff4c2a"],["p","681b9e384921582ecac2b4641a9337f17b66698a01065694c91dc4c345c6de1e"],["p","8bad9b1fcfc287230812387866c0e0d741da13bee3d592a97f706108c48173fc"],["p","296842eaaed9be5ae0668da09fe48aac0521c4af859ad547d93145e5ac34c17e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","b8dd9afd51008741db4b5ff40ef0bed9bfc446e6ea69f5d5890b7c0865a2c3f1"],["p","de75eb1d7a6627807a8dff0fb337cfcf189e7e9af8ab6229f688f664710c3014"],["p","d9f2471cc8f33111071bd0de1fef87d783cc4140e0f70ba9298a53b9e07c60f6"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","9d7af6946b320b3ba6b4d386de2b2cf3f8ac52fdcb63f3343d1a8362693a3ce5"],["p","8d9d2b77930ee54ec3e46faf774ddd041dbb4e4aa35ad47c025884a286dd65fa"],["p","b70ea0ddabd96e073c703e0385f5bb38e52119c923fecdbb5bf7c98f900166aa"],["p","d534e53eb0956e4b9afd891bb2f8319970309f14200a9459b534a83e3980adaf"],["p","be39043cc12efbddfee564d95da751a71df6c139e2def45c431cadeb4a573ca3"],["p","f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0"],["p","50c59a1cb233d08d5a1fb493f520c6b5d7f77a2ba42e4666801a3e366b0a027e"],["p","1d80e5588de010d137a67c42b03717595f5f510e73e42cfc48f31bae91844d59"],["p","722a9b1535c6a7e207b8744b88c043e97111fe1b35664aface5d6d826212c703"],["p","cccfccb023231da836fd3f86605163fc41be51800fe13248da3125b35718521c"],["p","5ffb8e1b6b629c0e34a013f9298ebb0759b98a3d24029916321d5eb4255b6735"],["p","6fc6cd9b3a8532a6ec42a8be2b8ffc0b7abe675b4a1c62314e131a6b06b0bf6e"],["p","d70d50091504b992d1838822af245d5f6b3a16b82d917acb7924cef61ed4acee"],["p","f5f98ba54045a2fa8df2a97c35fc30299b9e0d51a701795c040ca80cedaf39b4"],["p","1af54955936be804f95010647ea5ada5c7627eddf0734a7f813bba0e31eed960"],["p","5fd004926969381ac2bb3a32720036d9f9632d29fb22dc1bf5d8fb1c9e265798"],["p","a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256"],["p","33b68d46e69e0fe145ceac12fec3ce552c61f972f348e13d343ff7956f97aa6c"],["p","f96c3d76497074c4c83a7b3823380e77dc73d5a9494fd2e053e4a1453e17824b"],["p","a6230ed2c2cb6c9240b4de29946e0b3857c0652cc8b3bee5e73c793f5c09a369"],["p","cbb2f023b6aa09626d51d2f4ea99fa9138ea80ec7d5ffdce9feef8dcd6352031"],["p","414908397af26640247042da7f942fc931837c8d9d3207e271cb2fb2bbd9a4ed"],["p","2bcb31df1c1d848f230c86011a01aa329afb2a0c32fc926c725dc8e293e2a4e4"],["p","9b6d95b76a01191a4c778185681ed7f3bced2fffa8e41516ec78240b213285f5"],["p","2664209547c22a784407a7987fcf7bc0081dc06cdccb98ec7c61953b4d73c6d4"],["p","4b0bcab460adda31fad5a326fb0c04f6ec821fb24be85dbdc03c04cc0e12fc07"],["p","dfcf6ae4111c1bb29d8cd96df8793aeded34f78764b5089da32e0f3edf7a9e2f"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b"],["p","958b754a1d3de5b5eca0fe31d2d555f451325f8498a83da1997b7fcd5c39e88c"],["p","e17e9a18635f80d472e6b49da910f244f2ed7437aec6bf227f85092066d67a6b"],["p","62fe49023565e07b56d74a203721f4ea21f284f9295a019a98954fb7864eec9a"],["p","47969365e7e3cd52ebc499f5d9a687a64b59812008a4a2fbc273ef61624a085d"],["p","ab701878befc26097fcdd272bb701aebdfa3d227caac85d28c5d44de84d6d44e"],["p","665e667acb1a5e3d601cae03bf02b9f105547c070067ab0663c5666a1dcac1b3"],["p","c0e0c4272134d92da8651650c10ca612b710a670d5e043488f27e073a1f63a16"],["p","fd6faf1e35435a286656ec9f8e2bd716d7c168c0358acb8cb39ee8ecae104d78"],["p","ee85604f8ec6e4e24f8eaf2a624d042ebd431dae448fe11779adcfb6bb78575e"],["p","870744363b1a5986d6773b5706dde258c039f6d34a5ffc270915033a6a67c82c"],["p","1aa1dbbeeb04dde30e1e7a00f7eea7605549e78726d53522e3990aa68009f433"],["p","0418ca2d6cd6c7fbc4e0391bb745027023a7edbc38f2a60fc3b68f006efb85eb"],["p","6d5f85c4be85fabb803716cc002f46c88ad5d44dae8098f057482640a3f7e400"],["p","d93336159384719a6309977ed5a6afe024816d47587a30af99149cbd441e7344"],["p","aa9539e1ec76ee5f79c8e3f0c23d62f1adf40a69a05bb0728d792d17b75d8179"],["p","6efb74e66b7ed7fb9fb7b8b8f12e1fbbabe7f45823a33a14ac60cc9241285536"],["p","32d1df355d2ceeea5cd1c41d574b9105c68eeefd7c0bd29e49c152fe71c4c7d5"],["p","2243581d5f557483a449dc06ec38b38f42f32832cdd05cce974c8f82771762ad"],["p","63d59db8d29abe29db7380beb912b8f600237332b6c9978b208694e4be170f6f"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["p","6116d06dd94aedb145d2e7689a2fe2249de56fc4e89a4cace88a0d4b1d80b135"],["p","efcb5fc526c91ffd51aaef037009f22eb4d3300a141c1754af439e085680aa8e"],["p","837332c28d91f1893f8ac8d05451860e54de3b13b919180677c058d385f1e26f"],["p","0dcfcaac3d6f6796f7bc300a7d0d3b71bad1457f4e6b72f9cf490e1e55767be4"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","410adfbdceb593f7c093a75d01ff0e79bc4767987e30d776b836e898583495fc"],["p","278be33c14240980b132ba9d665ed9c9ee5a91ef2a046f151a1fc45c5c67f928"],["p","264d4029ef7c806919bd40f751c8158671039b4226a0916081d7ca158ab528f2"],["p","83c6e985c28d7dfb9b51eb209f82af91c8a8f6f322d84ca75453479916446f86"],["p","f776bcc12271be79fc71b655f3cbfeb3a8a169f33ee1335fcc0c22829901da0a"],["p","813c2662366a12f6337b951c048552fd3c4894e403cab701634dcd803786dc09"],["p","9356d008ab226ab6b08ab3c73900546b2836c48c7527f0e5332c09201a3e6dc8"],["p","cb0f973f96e28c12890afe39c2c84c54e12758b2ed53d3b150820bff66331530"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d"],["p","d7a4345c3ead1ea7a34bd6aae43c63cbd81941d9ba019fe972843e5ce78e3187"],["p","1b2f3c135c9e5a9d6f70de02f0b7b546c11855d0453f6682bc874d6bbe64dfd6"],["p","b286cdad6f9db7f1641139fc9ab69c8f2b36e25608206dfec856ef10ee4e8091"],["p","0959538a1d0ed66b471def67bcf0651b3a5654eaf032144a9df4c343eff675da"],["p","f1b911af1c7a56073e3b83ba7eaa681467040e0fbbdd265445aa80e65c274c22"],["p","99562ddb32ac3e3378919a943e861cb999e80583efc7c70a42bba3e9ebbfc579"],["p","cc97551f4c883c9d2f027d95f76eb50448865b5f174ad0c46368fad7c7a3c8f1"],["p","f9497235341110289f24d4bdd45a9197c6fecfcd85249147366410453073bf1c"],["p","34fad5244f7de844c1c9e001e2737ed23f3ea96ceda2e20d241d46fee5824f16"],["p","21335073401a310cc9179fe3a77e9666710cfdf630dfd840f972c183a244b1ad"],["p","7937540697665014c0de0809cdc75f37e900b1091a6b3d812af4178fe672caa9"]]}] +[14:16:58.684] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:17:00.579] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:00.579] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:00.579] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:00.579] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:00.731] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Die mentale Blockade ist wirklich gigantisch bei den Tradfi Experten.\nStrategy hat eine Verschuldung von ca. 10 Prozent und sitzt auf 77 Milliarden Dollar Gegenwert an Kapital.\nOhja sie stehen wirklich kurz vor dem Zusammenbruch, genau wie bei den Tesla Hatern. Fällt die Aktie mal ein halbes Jahr kommen die Bären aus ihren Löchern gekrochen.\n\nBuy spot bitcoin. \n\nhttps://blossom.primal.net/4916b79304cf9f29c7b05c52351b6cb455926d146f8ddbc3177cf76e72f3adcb.jpg","created_at":1759429017,"id":"9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"d0b5cabe6f1ec89be40cac0683ad74405cf7fbf4a085c4c4e625804e75256fa46d1d8f134ef7a4232a0021a4d6f1c839a68255bb321b74166261b11152dc4483","tags":[]}] +[14:17:00.791] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Are you sending this message from the boat? \n\n","created_at":1759429013,"id":"e10f5cb3308eafed3138f27e2fe8022a8b80659682050de2d406753251766db5","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"26aea37d06bea586c99f79b750cf0bc66d44592c2502a7f6796aec3af854044a8101743717fcdc531d1ddc9dc78ea0e22c72a45749aae15e7a38d64e9958b090","tags":[["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:17:00.852] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しめない会になっちゃう","created_at":1759429011,"id":"9f4b6831e628cbc631d250bfe72372381bca8bf7e5162de6763b335638f1000e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"558228222ed71fb052c6f24e6eae88eaecddca42731bc3146beffc223bfaf061d89da5bf576b81e3a78f727ecdbd95f00564a32c738280d2372b7fb029e6544d","tags":[]}] +[14:17:00.912] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1/2 trans 1/2 bobs 😂","created_at":1759428999,"id":"f7ba7abe934e48fe63d99af5991b288c919180027bc94e5f8958212cf16745c9","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fa1dff2315dd25dc35bb2a35b5b0ac77199cbe726bfae85520dedc6f2be8da37de90a7ddebc8d16e9126579600f0e4195560faf96ad4a566b96c7dc5e24c9311","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","wss://nos.lol","root"],["e","d8a3200c2966cbfe40e7ad455eac0429318c236cbcbb60cde25deb5429d2d65d","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[14:17:00.973] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:17:01.033] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:17:01.094] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:17:01.155] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:17:01.215] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:17:01.276] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:17:01.336] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:01.397] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:01.458] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:01.518] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:01.579] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:01.639] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:01.700] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:01.760] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:01.821] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:17:01.881] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:01.942] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:02.002] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:02.063] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429000,"id":"bcbb88421f4c5833384c88219b5c6189b3c9b185da6c934f79b578b05b7d3710","kind":3,"pubkey":"a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256","sig":"91401876f66d2dbd3c5bb8e432932e8952fa83d5cae5eafa421ce20270ea86ed86f9ff93fc1c21ad9c772563d07d7f5dcb8b76e9241594699d4bbed7440a2a4f","tags":[["p","95a061b8fbdd5e0275d7069d1a1ab21b649af6c9c68250325f5e778bd926aa66"],["p","01d0bbf9537ef1fd0ddf815f41c1896738f6a3a0f600f51c782b7d8891130d4c"],["p","da66d621d05bb7a7d64c1adfe0ea6421ca7db60d1089cd98b06ccfcd0ea2ed78"],["p","508f28656b8db436153d5239de5034abc0351b8c90ac33e6b156d1fea64b2960"],["p","b3b37da64c8df56ecfe5fa287f0121fa6dfe72e18325d0ce2e3866b93318d8f5"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","f8e51fc216c8a8507347651219f07e22ef9f4299a8319fe3f7ee97a194140811"],["p","0d94dde23d23fad80f70488a374096197d068bcb2f0804055cb8450f0e315190"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","f0fb31d1810a9f95df3d178fcd67ca0b09879ad11e8689e56962cd839fb8ead4"],["p","bf2376e17ba4ec269d10fcc996a4746b451152be9031fa48e74553dde5526bce"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"],["p","0f52b01a82649e892f9175f8dcc8cd432ac6cd5e0f5d5f8bbde62b1b21263741"],["p","469223f4ce484bba4e125a8c8a92032e16e5d07b723ea5da2f253b2627da92c7"],["p","64bfa9abffe5b18d0731eed57b38173adc2ba89bf87c168da90517f021e722b5"],["p","2efdb88e1ad052d9d72eb8f6787efa7f2c432064ff7af8efd1776af944bfc3e3"],["p","338b826c2c3e2b173c6acc1adc77c047076030a1329c7127a622d1325e59c1b0"],["p","cc76679480a4504b963a3809cba60b458ebf068c62713621dda94b527860447d"],["p","16784bad81b7b8215ee4cea0adf04793aba9a836608792c63010ebced7d184c8"],["p","be5a7d74a3c1376016833ed8e02c1571d5b06fab277ad4d6cee2560aa23ed9be"],["p","8aafa7d540d9f24704477eba0f39ec24b7d65439bcf588b04d69cc428aff4c2a"],["p","681b9e384921582ecac2b4641a9337f17b66698a01065694c91dc4c345c6de1e"],["p","8bad9b1fcfc287230812387866c0e0d741da13bee3d592a97f706108c48173fc"],["p","296842eaaed9be5ae0668da09fe48aac0521c4af859ad547d93145e5ac34c17e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","b8dd9afd51008741db4b5ff40ef0bed9bfc446e6ea69f5d5890b7c0865a2c3f1"],["p","de75eb1d7a6627807a8dff0fb337cfcf189e7e9af8ab6229f688f664710c3014"],["p","d9f2471cc8f33111071bd0de1fef87d783cc4140e0f70ba9298a53b9e07c60f6"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","9d7af6946b320b3ba6b4d386de2b2cf3f8ac52fdcb63f3343d1a8362693a3ce5"],["p","8d9d2b77930ee54ec3e46faf774ddd041dbb4e4aa35ad47c025884a286dd65fa"],["p","b70ea0ddabd96e073c703e0385f5bb38e52119c923fecdbb5bf7c98f900166aa"],["p","d534e53eb0956e4b9afd891bb2f8319970309f14200a9459b534a83e3980adaf"],["p","be39043cc12efbddfee564d95da751a71df6c139e2def45c431cadeb4a573ca3"],["p","f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0"],["p","50c59a1cb233d08d5a1fb493f520c6b5d7f77a2ba42e4666801a3e366b0a027e"],["p","1d80e5588de010d137a67c42b03717595f5f510e73e42cfc48f31bae91844d59"],["p","722a9b1535c6a7e207b8744b88c043e97111fe1b35664aface5d6d826212c703"],["p","cccfccb023231da836fd3f86605163fc41be51800fe13248da3125b35718521c"],["p","5ffb8e1b6b629c0e34a013f9298ebb0759b98a3d24029916321d5eb4255b6735"],["p","6fc6cd9b3a8532a6ec42a8be2b8ffc0b7abe675b4a1c62314e131a6b06b0bf6e"],["p","d70d50091504b992d1838822af245d5f6b3a16b82d917acb7924cef61ed4acee"],["p","f5f98ba54045a2fa8df2a97c35fc30299b9e0d51a701795c040ca80cedaf39b4"],["p","1af54955936be804f95010647ea5ada5c7627eddf0734a7f813bba0e31eed960"],["p","5fd004926969381ac2bb3a32720036d9f9632d29fb22dc1bf5d8fb1c9e265798"],["p","a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256"],["p","33b68d46e69e0fe145ceac12fec3ce552c61f972f348e13d343ff7956f97aa6c"],["p","f96c3d76497074c4c83a7b3823380e77dc73d5a9494fd2e053e4a1453e17824b"],["p","a6230ed2c2cb6c9240b4de29946e0b3857c0652cc8b3bee5e73c793f5c09a369"],["p","cbb2f023b6aa09626d51d2f4ea99fa9138ea80ec7d5ffdce9feef8dcd6352031"],["p","414908397af26640247042da7f942fc931837c8d9d3207e271cb2fb2bbd9a4ed"],["p","2bcb31df1c1d848f230c86011a01aa329afb2a0c32fc926c725dc8e293e2a4e4"],["p","9b6d95b76a01191a4c778185681ed7f3bced2fffa8e41516ec78240b213285f5"],["p","2664209547c22a784407a7987fcf7bc0081dc06cdccb98ec7c61953b4d73c6d4"],["p","4b0bcab460adda31fad5a326fb0c04f6ec821fb24be85dbdc03c04cc0e12fc07"],["p","dfcf6ae4111c1bb29d8cd96df8793aeded34f78764b5089da32e0f3edf7a9e2f"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b"],["p","958b754a1d3de5b5eca0fe31d2d555f451325f8498a83da1997b7fcd5c39e88c"],["p","e17e9a18635f80d472e6b49da910f244f2ed7437aec6bf227f85092066d67a6b"],["p","62fe49023565e07b56d74a203721f4ea21f284f9295a019a98954fb7864eec9a"],["p","47969365e7e3cd52ebc499f5d9a687a64b59812008a4a2fbc273ef61624a085d"],["p","ab701878befc26097fcdd272bb701aebdfa3d227caac85d28c5d44de84d6d44e"],["p","665e667acb1a5e3d601cae03bf02b9f105547c070067ab0663c5666a1dcac1b3"],["p","c0e0c4272134d92da8651650c10ca612b710a670d5e043488f27e073a1f63a16"],["p","fd6faf1e35435a286656ec9f8e2bd716d7c168c0358acb8cb39ee8ecae104d78"],["p","ee85604f8ec6e4e24f8eaf2a624d042ebd431dae448fe11779adcfb6bb78575e"],["p","870744363b1a5986d6773b5706dde258c039f6d34a5ffc270915033a6a67c82c"],["p","1aa1dbbeeb04dde30e1e7a00f7eea7605549e78726d53522e3990aa68009f433"],["p","0418ca2d6cd6c7fbc4e0391bb745027023a7edbc38f2a60fc3b68f006efb85eb"],["p","6d5f85c4be85fabb803716cc002f46c88ad5d44dae8098f057482640a3f7e400"],["p","d93336159384719a6309977ed5a6afe024816d47587a30af99149cbd441e7344"],["p","aa9539e1ec76ee5f79c8e3f0c23d62f1adf40a69a05bb0728d792d17b75d8179"],["p","6efb74e66b7ed7fb9fb7b8b8f12e1fbbabe7f45823a33a14ac60cc9241285536"],["p","32d1df355d2ceeea5cd1c41d574b9105c68eeefd7c0bd29e49c152fe71c4c7d5"],["p","2243581d5f557483a449dc06ec38b38f42f32832cdd05cce974c8f82771762ad"],["p","63d59db8d29abe29db7380beb912b8f600237332b6c9978b208694e4be170f6f"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["p","6116d06dd94aedb145d2e7689a2fe2249de56fc4e89a4cace88a0d4b1d80b135"],["p","efcb5fc526c91ffd51aaef037009f22eb4d3300a141c1754af439e085680aa8e"],["p","837332c28d91f1893f8ac8d05451860e54de3b13b919180677c058d385f1e26f"],["p","0dcfcaac3d6f6796f7bc300a7d0d3b71bad1457f4e6b72f9cf490e1e55767be4"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","410adfbdceb593f7c093a75d01ff0e79bc4767987e30d776b836e898583495fc"],["p","278be33c14240980b132ba9d665ed9c9ee5a91ef2a046f151a1fc45c5c67f928"],["p","264d4029ef7c806919bd40f751c8158671039b4226a0916081d7ca158ab528f2"],["p","83c6e985c28d7dfb9b51eb209f82af91c8a8f6f322d84ca75453479916446f86"],["p","f776bcc12271be79fc71b655f3cbfeb3a8a169f33ee1335fcc0c22829901da0a"],["p","813c2662366a12f6337b951c048552fd3c4894e403cab701634dcd803786dc09"],["p","9356d008ab226ab6b08ab3c73900546b2836c48c7527f0e5332c09201a3e6dc8"],["p","cb0f973f96e28c12890afe39c2c84c54e12758b2ed53d3b150820bff66331530"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d"],["p","d7a4345c3ead1ea7a34bd6aae43c63cbd81941d9ba019fe972843e5ce78e3187"],["p","1b2f3c135c9e5a9d6f70de02f0b7b546c11855d0453f6682bc874d6bbe64dfd6"],["p","b286cdad6f9db7f1641139fc9ab69c8f2b36e25608206dfec856ef10ee4e8091"],["p","0959538a1d0ed66b471def67bcf0651b3a5654eaf032144a9df4c343eff675da"],["p","f1b911af1c7a56073e3b83ba7eaa681467040e0fbbdd265445aa80e65c274c22"],["p","99562ddb32ac3e3378919a943e861cb999e80583efc7c70a42bba3e9ebbfc579"],["p","cc97551f4c883c9d2f027d95f76eb50448865b5f174ad0c46368fad7c7a3c8f1"],["p","f9497235341110289f24d4bdd45a9197c6fecfcd85249147366410453073bf1c"],["p","34fad5244f7de844c1c9e001e2737ed23f3ea96ceda2e20d241d46fee5824f16"],["p","21335073401a310cc9179fe3a77e9666710cfdf630dfd840f972c183a244b1ad"],["p","7937540697665014c0de0809cdc75f37e900b1091a6b3d812af4178fe672caa9"]]}] +[14:17:02.390] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:17:04.093] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:04.093] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:04.093] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:04.093] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:04.246] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Die mentale Blockade ist wirklich gigantisch bei den Tradfi Experten.\nStrategy hat eine Verschuldung von ca. 10 Prozent und sitzt auf 77 Milliarden Dollar Gegenwert an Kapital.\nOhja sie stehen wirklich kurz vor dem Zusammenbruch, genau wie bei den Tesla Hatern. Fällt die Aktie mal ein halbes Jahr kommen die Bären aus ihren Löchern gekrochen.\n\nBuy spot bitcoin. \n\nhttps://blossom.primal.net/4916b79304cf9f29c7b05c52351b6cb455926d146f8ddbc3177cf76e72f3adcb.jpg","created_at":1759429017,"id":"9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"d0b5cabe6f1ec89be40cac0683ad74405cf7fbf4a085c4c4e625804e75256fa46d1d8f134ef7a4232a0021a4d6f1c839a68255bb321b74166261b11152dc4483","tags":[]}] +[14:17:04.306] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Are you sending this message from the boat? \n\n","created_at":1759429013,"id":"e10f5cb3308eafed3138f27e2fe8022a8b80659682050de2d406753251766db5","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"26aea37d06bea586c99f79b750cf0bc66d44592c2502a7f6796aec3af854044a8101743717fcdc531d1ddc9dc78ea0e22c72a45749aae15e7a38d64e9958b090","tags":[["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:17:04.367] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しめない会になっちゃう","created_at":1759429011,"id":"9f4b6831e628cbc631d250bfe72372381bca8bf7e5162de6763b335638f1000e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"558228222ed71fb052c6f24e6eae88eaecddca42731bc3146beffc223bfaf061d89da5bf576b81e3a78f727ecdbd95f00564a32c738280d2372b7fb029e6544d","tags":[]}] +[14:17:04.427] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1/2 trans 1/2 bobs 😂","created_at":1759428999,"id":"f7ba7abe934e48fe63d99af5991b288c919180027bc94e5f8958212cf16745c9","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fa1dff2315dd25dc35bb2a35b5b0ac77199cbe726bfae85520dedc6f2be8da37de90a7ddebc8d16e9126579600f0e4195560faf96ad4a566b96c7dc5e24c9311","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","wss://nos.lol","root"],["e","d8a3200c2966cbfe40e7ad455eac0429318c236cbcbb60cde25deb5429d2d65d","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[14:17:04.488] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:17:04.548] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:17:04.609] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:17:04.670] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:17:04.730] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:17:04.791] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:17:04.851] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:04.912] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:04.972] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:05.033] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:05.094] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:05.154] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:05.215] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:05.275] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:05.336] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:17:05.396] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:05.457] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:05.517] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:05.578] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429000,"id":"bcbb88421f4c5833384c88219b5c6189b3c9b185da6c934f79b578b05b7d3710","kind":3,"pubkey":"a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256","sig":"91401876f66d2dbd3c5bb8e432932e8952fa83d5cae5eafa421ce20270ea86ed86f9ff93fc1c21ad9c772563d07d7f5dcb8b76e9241594699d4bbed7440a2a4f","tags":[["p","95a061b8fbdd5e0275d7069d1a1ab21b649af6c9c68250325f5e778bd926aa66"],["p","01d0bbf9537ef1fd0ddf815f41c1896738f6a3a0f600f51c782b7d8891130d4c"],["p","da66d621d05bb7a7d64c1adfe0ea6421ca7db60d1089cd98b06ccfcd0ea2ed78"],["p","508f28656b8db436153d5239de5034abc0351b8c90ac33e6b156d1fea64b2960"],["p","b3b37da64c8df56ecfe5fa287f0121fa6dfe72e18325d0ce2e3866b93318d8f5"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","f8e51fc216c8a8507347651219f07e22ef9f4299a8319fe3f7ee97a194140811"],["p","0d94dde23d23fad80f70488a374096197d068bcb2f0804055cb8450f0e315190"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","f0fb31d1810a9f95df3d178fcd67ca0b09879ad11e8689e56962cd839fb8ead4"],["p","bf2376e17ba4ec269d10fcc996a4746b451152be9031fa48e74553dde5526bce"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"],["p","0f52b01a82649e892f9175f8dcc8cd432ac6cd5e0f5d5f8bbde62b1b21263741"],["p","469223f4ce484bba4e125a8c8a92032e16e5d07b723ea5da2f253b2627da92c7"],["p","64bfa9abffe5b18d0731eed57b38173adc2ba89bf87c168da90517f021e722b5"],["p","2efdb88e1ad052d9d72eb8f6787efa7f2c432064ff7af8efd1776af944bfc3e3"],["p","338b826c2c3e2b173c6acc1adc77c047076030a1329c7127a622d1325e59c1b0"],["p","cc76679480a4504b963a3809cba60b458ebf068c62713621dda94b527860447d"],["p","16784bad81b7b8215ee4cea0adf04793aba9a836608792c63010ebced7d184c8"],["p","be5a7d74a3c1376016833ed8e02c1571d5b06fab277ad4d6cee2560aa23ed9be"],["p","8aafa7d540d9f24704477eba0f39ec24b7d65439bcf588b04d69cc428aff4c2a"],["p","681b9e384921582ecac2b4641a9337f17b66698a01065694c91dc4c345c6de1e"],["p","8bad9b1fcfc287230812387866c0e0d741da13bee3d592a97f706108c48173fc"],["p","296842eaaed9be5ae0668da09fe48aac0521c4af859ad547d93145e5ac34c17e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","b8dd9afd51008741db4b5ff40ef0bed9bfc446e6ea69f5d5890b7c0865a2c3f1"],["p","de75eb1d7a6627807a8dff0fb337cfcf189e7e9af8ab6229f688f664710c3014"],["p","d9f2471cc8f33111071bd0de1fef87d783cc4140e0f70ba9298a53b9e07c60f6"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","9d7af6946b320b3ba6b4d386de2b2cf3f8ac52fdcb63f3343d1a8362693a3ce5"],["p","8d9d2b77930ee54ec3e46faf774ddd041dbb4e4aa35ad47c025884a286dd65fa"],["p","b70ea0ddabd96e073c703e0385f5bb38e52119c923fecdbb5bf7c98f900166aa"],["p","d534e53eb0956e4b9afd891bb2f8319970309f14200a9459b534a83e3980adaf"],["p","be39043cc12efbddfee564d95da751a71df6c139e2def45c431cadeb4a573ca3"],["p","f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0"],["p","50c59a1cb233d08d5a1fb493f520c6b5d7f77a2ba42e4666801a3e366b0a027e"],["p","1d80e5588de010d137a67c42b03717595f5f510e73e42cfc48f31bae91844d59"],["p","722a9b1535c6a7e207b8744b88c043e97111fe1b35664aface5d6d826212c703"],["p","cccfccb023231da836fd3f86605163fc41be51800fe13248da3125b35718521c"],["p","5ffb8e1b6b629c0e34a013f9298ebb0759b98a3d24029916321d5eb4255b6735"],["p","6fc6cd9b3a8532a6ec42a8be2b8ffc0b7abe675b4a1c62314e131a6b06b0bf6e"],["p","d70d50091504b992d1838822af245d5f6b3a16b82d917acb7924cef61ed4acee"],["p","f5f98ba54045a2fa8df2a97c35fc30299b9e0d51a701795c040ca80cedaf39b4"],["p","1af54955936be804f95010647ea5ada5c7627eddf0734a7f813bba0e31eed960"],["p","5fd004926969381ac2bb3a32720036d9f9632d29fb22dc1bf5d8fb1c9e265798"],["p","a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256"],["p","33b68d46e69e0fe145ceac12fec3ce552c61f972f348e13d343ff7956f97aa6c"],["p","f96c3d76497074c4c83a7b3823380e77dc73d5a9494fd2e053e4a1453e17824b"],["p","a6230ed2c2cb6c9240b4de29946e0b3857c0652cc8b3bee5e73c793f5c09a369"],["p","cbb2f023b6aa09626d51d2f4ea99fa9138ea80ec7d5ffdce9feef8dcd6352031"],["p","414908397af26640247042da7f942fc931837c8d9d3207e271cb2fb2bbd9a4ed"],["p","2bcb31df1c1d848f230c86011a01aa329afb2a0c32fc926c725dc8e293e2a4e4"],["p","9b6d95b76a01191a4c778185681ed7f3bced2fffa8e41516ec78240b213285f5"],["p","2664209547c22a784407a7987fcf7bc0081dc06cdccb98ec7c61953b4d73c6d4"],["p","4b0bcab460adda31fad5a326fb0c04f6ec821fb24be85dbdc03c04cc0e12fc07"],["p","dfcf6ae4111c1bb29d8cd96df8793aeded34f78764b5089da32e0f3edf7a9e2f"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b"],["p","958b754a1d3de5b5eca0fe31d2d555f451325f8498a83da1997b7fcd5c39e88c"],["p","e17e9a18635f80d472e6b49da910f244f2ed7437aec6bf227f85092066d67a6b"],["p","62fe49023565e07b56d74a203721f4ea21f284f9295a019a98954fb7864eec9a"],["p","47969365e7e3cd52ebc499f5d9a687a64b59812008a4a2fbc273ef61624a085d"],["p","ab701878befc26097fcdd272bb701aebdfa3d227caac85d28c5d44de84d6d44e"],["p","665e667acb1a5e3d601cae03bf02b9f105547c070067ab0663c5666a1dcac1b3"],["p","c0e0c4272134d92da8651650c10ca612b710a670d5e043488f27e073a1f63a16"],["p","fd6faf1e35435a286656ec9f8e2bd716d7c168c0358acb8cb39ee8ecae104d78"],["p","ee85604f8ec6e4e24f8eaf2a624d042ebd431dae448fe11779adcfb6bb78575e"],["p","870744363b1a5986d6773b5706dde258c039f6d34a5ffc270915033a6a67c82c"],["p","1aa1dbbeeb04dde30e1e7a00f7eea7605549e78726d53522e3990aa68009f433"],["p","0418ca2d6cd6c7fbc4e0391bb745027023a7edbc38f2a60fc3b68f006efb85eb"],["p","6d5f85c4be85fabb803716cc002f46c88ad5d44dae8098f057482640a3f7e400"],["p","d93336159384719a6309977ed5a6afe024816d47587a30af99149cbd441e7344"],["p","aa9539e1ec76ee5f79c8e3f0c23d62f1adf40a69a05bb0728d792d17b75d8179"],["p","6efb74e66b7ed7fb9fb7b8b8f12e1fbbabe7f45823a33a14ac60cc9241285536"],["p","32d1df355d2ceeea5cd1c41d574b9105c68eeefd7c0bd29e49c152fe71c4c7d5"],["p","2243581d5f557483a449dc06ec38b38f42f32832cdd05cce974c8f82771762ad"],["p","63d59db8d29abe29db7380beb912b8f600237332b6c9978b208694e4be170f6f"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["p","6116d06dd94aedb145d2e7689a2fe2249de56fc4e89a4cace88a0d4b1d80b135"],["p","efcb5fc526c91ffd51aaef037009f22eb4d3300a141c1754af439e085680aa8e"],["p","837332c28d91f1893f8ac8d05451860e54de3b13b919180677c058d385f1e26f"],["p","0dcfcaac3d6f6796f7bc300a7d0d3b71bad1457f4e6b72f9cf490e1e55767be4"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","410adfbdceb593f7c093a75d01ff0e79bc4767987e30d776b836e898583495fc"],["p","278be33c14240980b132ba9d665ed9c9ee5a91ef2a046f151a1fc45c5c67f928"],["p","264d4029ef7c806919bd40f751c8158671039b4226a0916081d7ca158ab528f2"],["p","83c6e985c28d7dfb9b51eb209f82af91c8a8f6f322d84ca75453479916446f86"],["p","f776bcc12271be79fc71b655f3cbfeb3a8a169f33ee1335fcc0c22829901da0a"],["p","813c2662366a12f6337b951c048552fd3c4894e403cab701634dcd803786dc09"],["p","9356d008ab226ab6b08ab3c73900546b2836c48c7527f0e5332c09201a3e6dc8"],["p","cb0f973f96e28c12890afe39c2c84c54e12758b2ed53d3b150820bff66331530"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d"],["p","d7a4345c3ead1ea7a34bd6aae43c63cbd81941d9ba019fe972843e5ce78e3187"],["p","1b2f3c135c9e5a9d6f70de02f0b7b546c11855d0453f6682bc874d6bbe64dfd6"],["p","b286cdad6f9db7f1641139fc9ab69c8f2b36e25608206dfec856ef10ee4e8091"],["p","0959538a1d0ed66b471def67bcf0651b3a5654eaf032144a9df4c343eff675da"],["p","f1b911af1c7a56073e3b83ba7eaa681467040e0fbbdd265445aa80e65c274c22"],["p","99562ddb32ac3e3378919a943e861cb999e80583efc7c70a42bba3e9ebbfc579"],["p","cc97551f4c883c9d2f027d95f76eb50448865b5f174ad0c46368fad7c7a3c8f1"],["p","f9497235341110289f24d4bdd45a9197c6fecfcd85249147366410453073bf1c"],["p","34fad5244f7de844c1c9e001e2737ed23f3ea96ceda2e20d241d46fee5824f16"],["p","21335073401a310cc9179fe3a77e9666710cfdf630dfd840f972c183a244b1ad"],["p","7937540697665014c0de0809cdc75f37e900b1091a6b3d812af4178fe672caa9"]]}] +[14:17:05.941] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:17:07.647] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:07.647] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:07.647] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:07.647] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:07.798] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Die mentale Blockade ist wirklich gigantisch bei den Tradfi Experten.\nStrategy hat eine Verschuldung von ca. 10 Prozent und sitzt auf 77 Milliarden Dollar Gegenwert an Kapital.\nOhja sie stehen wirklich kurz vor dem Zusammenbruch, genau wie bei den Tesla Hatern. Fällt die Aktie mal ein halbes Jahr kommen die Bären aus ihren Löchern gekrochen.\n\nBuy spot bitcoin. \n\nhttps://blossom.primal.net/4916b79304cf9f29c7b05c52351b6cb455926d146f8ddbc3177cf76e72f3adcb.jpg","created_at":1759429017,"id":"9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"d0b5cabe6f1ec89be40cac0683ad74405cf7fbf4a085c4c4e625804e75256fa46d1d8f134ef7a4232a0021a4d6f1c839a68255bb321b74166261b11152dc4483","tags":[]}] +[14:17:07.949] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Are you sending this message from the boat? \n\n","created_at":1759429013,"id":"e10f5cb3308eafed3138f27e2fe8022a8b80659682050de2d406753251766db5","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"26aea37d06bea586c99f79b750cf0bc66d44592c2502a7f6796aec3af854044a8101743717fcdc531d1ddc9dc78ea0e22c72a45749aae15e7a38d64e9958b090","tags":[["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:17:08.010] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しめない会になっちゃう","created_at":1759429011,"id":"9f4b6831e628cbc631d250bfe72372381bca8bf7e5162de6763b335638f1000e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"558228222ed71fb052c6f24e6eae88eaecddca42731bc3146beffc223bfaf061d89da5bf576b81e3a78f727ecdbd95f00564a32c738280d2372b7fb029e6544d","tags":[]}] +[14:17:08.070] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1/2 trans 1/2 bobs 😂","created_at":1759428999,"id":"f7ba7abe934e48fe63d99af5991b288c919180027bc94e5f8958212cf16745c9","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fa1dff2315dd25dc35bb2a35b5b0ac77199cbe726bfae85520dedc6f2be8da37de90a7ddebc8d16e9126579600f0e4195560faf96ad4a566b96c7dc5e24c9311","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","wss://nos.lol","root"],["e","d8a3200c2966cbfe40e7ad455eac0429318c236cbcbb60cde25deb5429d2d65d","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[14:17:08.131] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:17:08.191] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:17:08.252] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:17:08.312] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:17:08.373] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:17:08.433] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:17:08.494] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:08.554] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Monika\",\"about\":\"Autorin. Podcasterin. Leidenschaft für Fotografie, fürs Selbermachen, Reisen & Kochen. Geb. bei 326 ppm CO₂. \\nhttp://absolutanalog.de , http://monismotivklingel.de , http://fiberthermometer.de\\n\\nAvatar made by @anhdres\",\"picture\":\"https://assets.chaos.social/accounts/avatars/000/081/110/original/8bc94cd82624640c.jpeg\",\"banner\":\"https://assets.chaos.social/accounts/headers/000/081/110/original/6b71469f98a3b928.jpeg\",\"nip05\":\"nahlinse@chaos-social.mostr.pub\",\"fields\":[[\"Pronomen\",\"sie/ihr | she/her\"],[\"Privilegien\",\"weiß, cis, abled\"],[\"Beliefs\",\"Trans rights are human rights. 🏳️‍⚧️\\nLove is love 🌈 \\nScience is real 🧪\"]]}","created_at":1759429023,"id":"33257359179a46be05baf28a9cf910d7ea71e247f4685a0179aebce2084247c0","kind":0,"pubkey":"a59d4f9b318bd0750350bea6018ca0d2ca0f4514d083bdfb08cd68d84ae1b6b6","sig":"a728b9fba163c0bfa356975bf83cacf6fa6be158a30e9577bc52af1951f95a46e52d60da5a0a57b2cb66119342b0e8064cd20322f15e6fd8631304d8bd539a2d","tags":[["proxy","https://chaos.social/users/nahlinse","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:08.615] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:08.676] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:08.736] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:08.797] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:08.858] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:08.918] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:08.979] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:09.039] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:17:09.100] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:09.161] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:09.221] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429000,"id":"bcbb88421f4c5833384c88219b5c6189b3c9b185da6c934f79b578b05b7d3710","kind":3,"pubkey":"a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256","sig":"91401876f66d2dbd3c5bb8e432932e8952fa83d5cae5eafa421ce20270ea86ed86f9ff93fc1c21ad9c772563d07d7f5dcb8b76e9241594699d4bbed7440a2a4f","tags":[["p","95a061b8fbdd5e0275d7069d1a1ab21b649af6c9c68250325f5e778bd926aa66"],["p","01d0bbf9537ef1fd0ddf815f41c1896738f6a3a0f600f51c782b7d8891130d4c"],["p","da66d621d05bb7a7d64c1adfe0ea6421ca7db60d1089cd98b06ccfcd0ea2ed78"],["p","508f28656b8db436153d5239de5034abc0351b8c90ac33e6b156d1fea64b2960"],["p","b3b37da64c8df56ecfe5fa287f0121fa6dfe72e18325d0ce2e3866b93318d8f5"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","f8e51fc216c8a8507347651219f07e22ef9f4299a8319fe3f7ee97a194140811"],["p","0d94dde23d23fad80f70488a374096197d068bcb2f0804055cb8450f0e315190"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","f0fb31d1810a9f95df3d178fcd67ca0b09879ad11e8689e56962cd839fb8ead4"],["p","bf2376e17ba4ec269d10fcc996a4746b451152be9031fa48e74553dde5526bce"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"],["p","0f52b01a82649e892f9175f8dcc8cd432ac6cd5e0f5d5f8bbde62b1b21263741"],["p","469223f4ce484bba4e125a8c8a92032e16e5d07b723ea5da2f253b2627da92c7"],["p","64bfa9abffe5b18d0731eed57b38173adc2ba89bf87c168da90517f021e722b5"],["p","2efdb88e1ad052d9d72eb8f6787efa7f2c432064ff7af8efd1776af944bfc3e3"],["p","338b826c2c3e2b173c6acc1adc77c047076030a1329c7127a622d1325e59c1b0"],["p","cc76679480a4504b963a3809cba60b458ebf068c62713621dda94b527860447d"],["p","16784bad81b7b8215ee4cea0adf04793aba9a836608792c63010ebced7d184c8"],["p","be5a7d74a3c1376016833ed8e02c1571d5b06fab277ad4d6cee2560aa23ed9be"],["p","8aafa7d540d9f24704477eba0f39ec24b7d65439bcf588b04d69cc428aff4c2a"],["p","681b9e384921582ecac2b4641a9337f17b66698a01065694c91dc4c345c6de1e"],["p","8bad9b1fcfc287230812387866c0e0d741da13bee3d592a97f706108c48173fc"],["p","296842eaaed9be5ae0668da09fe48aac0521c4af859ad547d93145e5ac34c17e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","b8dd9afd51008741db4b5ff40ef0bed9bfc446e6ea69f5d5890b7c0865a2c3f1"],["p","de75eb1d7a6627807a8dff0fb337cfcf189e7e9af8ab6229f688f664710c3014"],["p","d9f2471cc8f33111071bd0de1fef87d783cc4140e0f70ba9298a53b9e07c60f6"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","9d7af6946b320b3ba6b4d386de2b2cf3f8ac52fdcb63f3343d1a8362693a3ce5"],["p","8d9d2b77930ee54ec3e46faf774ddd041dbb4e4aa35ad47c025884a286dd65fa"],["p","b70ea0ddabd96e073c703e0385f5bb38e52119c923fecdbb5bf7c98f900166aa"],["p","d534e53eb0956e4b9afd891bb2f8319970309f14200a9459b534a83e3980adaf"],["p","be39043cc12efbddfee564d95da751a71df6c139e2def45c431cadeb4a573ca3"],["p","f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0"],["p","50c59a1cb233d08d5a1fb493f520c6b5d7f77a2ba42e4666801a3e366b0a027e"],["p","1d80e5588de010d137a67c42b03717595f5f510e73e42cfc48f31bae91844d59"],["p","722a9b1535c6a7e207b8744b88c043e97111fe1b35664aface5d6d826212c703"],["p","cccfccb023231da836fd3f86605163fc41be51800fe13248da3125b35718521c"],["p","5ffb8e1b6b629c0e34a013f9298ebb0759b98a3d24029916321d5eb4255b6735"],["p","6fc6cd9b3a8532a6ec42a8be2b8ffc0b7abe675b4a1c62314e131a6b06b0bf6e"],["p","d70d50091504b992d1838822af245d5f6b3a16b82d917acb7924cef61ed4acee"],["p","f5f98ba54045a2fa8df2a97c35fc30299b9e0d51a701795c040ca80cedaf39b4"],["p","1af54955936be804f95010647ea5ada5c7627eddf0734a7f813bba0e31eed960"],["p","5fd004926969381ac2bb3a32720036d9f9632d29fb22dc1bf5d8fb1c9e265798"],["p","a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256"],["p","33b68d46e69e0fe145ceac12fec3ce552c61f972f348e13d343ff7956f97aa6c"],["p","f96c3d76497074c4c83a7b3823380e77dc73d5a9494fd2e053e4a1453e17824b"],["p","a6230ed2c2cb6c9240b4de29946e0b3857c0652cc8b3bee5e73c793f5c09a369"],["p","cbb2f023b6aa09626d51d2f4ea99fa9138ea80ec7d5ffdce9feef8dcd6352031"],["p","414908397af26640247042da7f942fc931837c8d9d3207e271cb2fb2bbd9a4ed"],["p","2bcb31df1c1d848f230c86011a01aa329afb2a0c32fc926c725dc8e293e2a4e4"],["p","9b6d95b76a01191a4c778185681ed7f3bced2fffa8e41516ec78240b213285f5"],["p","2664209547c22a784407a7987fcf7bc0081dc06cdccb98ec7c61953b4d73c6d4"],["p","4b0bcab460adda31fad5a326fb0c04f6ec821fb24be85dbdc03c04cc0e12fc07"],["p","dfcf6ae4111c1bb29d8cd96df8793aeded34f78764b5089da32e0f3edf7a9e2f"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b"],["p","958b754a1d3de5b5eca0fe31d2d555f451325f8498a83da1997b7fcd5c39e88c"],["p","e17e9a18635f80d472e6b49da910f244f2ed7437aec6bf227f85092066d67a6b"],["p","62fe49023565e07b56d74a203721f4ea21f284f9295a019a98954fb7864eec9a"],["p","47969365e7e3cd52ebc499f5d9a687a64b59812008a4a2fbc273ef61624a085d"],["p","ab701878befc26097fcdd272bb701aebdfa3d227caac85d28c5d44de84d6d44e"],["p","665e667acb1a5e3d601cae03bf02b9f105547c070067ab0663c5666a1dcac1b3"],["p","c0e0c4272134d92da8651650c10ca612b710a670d5e043488f27e073a1f63a16"],["p","fd6faf1e35435a286656ec9f8e2bd716d7c168c0358acb8cb39ee8ecae104d78"],["p","ee85604f8ec6e4e24f8eaf2a624d042ebd431dae448fe11779adcfb6bb78575e"],["p","870744363b1a5986d6773b5706dde258c039f6d34a5ffc270915033a6a67c82c"],["p","1aa1dbbeeb04dde30e1e7a00f7eea7605549e78726d53522e3990aa68009f433"],["p","0418ca2d6cd6c7fbc4e0391bb745027023a7edbc38f2a60fc3b68f006efb85eb"],["p","6d5f85c4be85fabb803716cc002f46c88ad5d44dae8098f057482640a3f7e400"],["p","d93336159384719a6309977ed5a6afe024816d47587a30af99149cbd441e7344"],["p","aa9539e1ec76ee5f79c8e3f0c23d62f1adf40a69a05bb0728d792d17b75d8179"],["p","6efb74e66b7ed7fb9fb7b8b8f12e1fbbabe7f45823a33a14ac60cc9241285536"],["p","32d1df355d2ceeea5cd1c41d574b9105c68eeefd7c0bd29e49c152fe71c4c7d5"],["p","2243581d5f557483a449dc06ec38b38f42f32832cdd05cce974c8f82771762ad"],["p","63d59db8d29abe29db7380beb912b8f600237332b6c9978b208694e4be170f6f"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["p","6116d06dd94aedb145d2e7689a2fe2249de56fc4e89a4cace88a0d4b1d80b135"],["p","efcb5fc526c91ffd51aaef037009f22eb4d3300a141c1754af439e085680aa8e"],["p","837332c28d91f1893f8ac8d05451860e54de3b13b919180677c058d385f1e26f"],["p","0dcfcaac3d6f6796f7bc300a7d0d3b71bad1457f4e6b72f9cf490e1e55767be4"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","410adfbdceb593f7c093a75d01ff0e79bc4767987e30d776b836e898583495fc"],["p","278be33c14240980b132ba9d665ed9c9ee5a91ef2a046f151a1fc45c5c67f928"],["p","264d4029ef7c806919bd40f751c8158671039b4226a0916081d7ca158ab528f2"],["p","83c6e985c28d7dfb9b51eb209f82af91c8a8f6f322d84ca75453479916446f86"],["p","f776bcc12271be79fc71b655f3cbfeb3a8a169f33ee1335fcc0c22829901da0a"],["p","813c2662366a12f6337b951c048552fd3c4894e403cab701634dcd803786dc09"],["p","9356d008ab226ab6b08ab3c73900546b2836c48c7527f0e5332c09201a3e6dc8"],["p","cb0f973f96e28c12890afe39c2c84c54e12758b2ed53d3b150820bff66331530"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d"],["p","d7a4345c3ead1ea7a34bd6aae43c63cbd81941d9ba019fe972843e5ce78e3187"],["p","1b2f3c135c9e5a9d6f70de02f0b7b546c11855d0453f6682bc874d6bbe64dfd6"],["p","b286cdad6f9db7f1641139fc9ab69c8f2b36e25608206dfec856ef10ee4e8091"],["p","0959538a1d0ed66b471def67bcf0651b3a5654eaf032144a9df4c343eff675da"],["p","f1b911af1c7a56073e3b83ba7eaa681467040e0fbbdd265445aa80e65c274c22"],["p","99562ddb32ac3e3378919a943e861cb999e80583efc7c70a42bba3e9ebbfc579"],["p","cc97551f4c883c9d2f027d95f76eb50448865b5f174ad0c46368fad7c7a3c8f1"],["p","f9497235341110289f24d4bdd45a9197c6fecfcd85249147366410453073bf1c"],["p","34fad5244f7de844c1c9e001e2737ed23f3ea96ceda2e20d241d46fee5824f16"],["p","21335073401a310cc9179fe3a77e9666710cfdf630dfd840f972c183a244b1ad"],["p","7937540697665014c0de0809cdc75f37e900b1091a6b3d812af4178fe672caa9"]]}] +[14:17:09.584] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:17:11.476] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:11.476] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:11.476] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:11.476] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:11.629] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Then suddenly ","created_at":1759429027,"id":"1200b11ef7bbf66439e12b59fb932e0be6b157285f2b4d836fb2ae8cb34d19c7","kind":1,"pubkey":"f5c7f59077d030f94bc03ab7be1a0ef0c1fce1a3f9f5fa2b8b0a5db96295890c","sig":"e9e96171ac2123a6526a3505525fdeeac5e7be044fecc1c5348b563566ec528abd8a7a63bf9621331b75c6e1d005dfa733cf35fdd2c4ce198c35c79c4102d2d2","tags":[["e","d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:17:11.689] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Die mentale Blockade ist wirklich gigantisch bei den Tradfi Experten.\nStrategy hat eine Verschuldung von ca. 10 Prozent und sitzt auf 77 Milliarden Dollar Gegenwert an Kapital.\nOhja sie stehen wirklich kurz vor dem Zusammenbruch, genau wie bei den Tesla Hatern. Fällt die Aktie mal ein halbes Jahr kommen die Bären aus ihren Löchern gekrochen.\n\nBuy spot bitcoin. \n\nhttps://blossom.primal.net/4916b79304cf9f29c7b05c52351b6cb455926d146f8ddbc3177cf76e72f3adcb.jpg","created_at":1759429017,"id":"9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"d0b5cabe6f1ec89be40cac0683ad74405cf7fbf4a085c4c4e625804e75256fa46d1d8f134ef7a4232a0021a4d6f1c839a68255bb321b74166261b11152dc4483","tags":[]}] +[14:17:11.750] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Are you sending this message from the boat? \n\n","created_at":1759429013,"id":"e10f5cb3308eafed3138f27e2fe8022a8b80659682050de2d406753251766db5","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"26aea37d06bea586c99f79b750cf0bc66d44592c2502a7f6796aec3af854044a8101743717fcdc531d1ddc9dc78ea0e22c72a45749aae15e7a38d64e9958b090","tags":[["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:17:11.810] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しめない会になっちゃう","created_at":1759429011,"id":"9f4b6831e628cbc631d250bfe72372381bca8bf7e5162de6763b335638f1000e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"558228222ed71fb052c6f24e6eae88eaecddca42731bc3146beffc223bfaf061d89da5bf576b81e3a78f727ecdbd95f00564a32c738280d2372b7fb029e6544d","tags":[]}] +[14:17:11.871] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1/2 trans 1/2 bobs 😂","created_at":1759428999,"id":"f7ba7abe934e48fe63d99af5991b288c919180027bc94e5f8958212cf16745c9","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fa1dff2315dd25dc35bb2a35b5b0ac77199cbe726bfae85520dedc6f2be8da37de90a7ddebc8d16e9126579600f0e4195560faf96ad4a566b96c7dc5e24c9311","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","wss://nos.lol","root"],["e","d8a3200c2966cbfe40e7ad455eac0429318c236cbcbb60cde25deb5429d2d65d","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[14:17:11.954] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:17:12.015] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:17:12.076] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:17:12.101] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:17:12.162] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:17:12.222] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:12.283] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Monika\",\"about\":\"Autorin. Podcasterin. Leidenschaft für Fotografie, fürs Selbermachen, Reisen & Kochen. Geb. bei 326 ppm CO₂. \\nhttp://absolutanalog.de , http://monismotivklingel.de , http://fiberthermometer.de\\n\\nAvatar made by @anhdres\",\"picture\":\"https://assets.chaos.social/accounts/avatars/000/081/110/original/8bc94cd82624640c.jpeg\",\"banner\":\"https://assets.chaos.social/accounts/headers/000/081/110/original/6b71469f98a3b928.jpeg\",\"nip05\":\"nahlinse@chaos-social.mostr.pub\",\"fields\":[[\"Pronomen\",\"sie/ihr | she/her\"],[\"Privilegien\",\"weiß, cis, abled\"],[\"Beliefs\",\"Trans rights are human rights. 🏳️‍⚧️\\nLove is love 🌈 \\nScience is real 🧪\"]]}","created_at":1759429023,"id":"33257359179a46be05baf28a9cf910d7ea71e247f4685a0179aebce2084247c0","kind":0,"pubkey":"a59d4f9b318bd0750350bea6018ca0d2ca0f4514d083bdfb08cd68d84ae1b6b6","sig":"a728b9fba163c0bfa356975bf83cacf6fa6be158a30e9577bc52af1951f95a46e52d60da5a0a57b2cb66119342b0e8064cd20322f15e6fd8631304d8bd539a2d","tags":[["proxy","https://chaos.social/users/nahlinse","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:12.343] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:12.404] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:12.464] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:12.525] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:12.585] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:12.646] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:12.707] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:12.767] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:17:12.828] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:12.888] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:12.949] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429000,"id":"bcbb88421f4c5833384c88219b5c6189b3c9b185da6c934f79b578b05b7d3710","kind":3,"pubkey":"a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256","sig":"91401876f66d2dbd3c5bb8e432932e8952fa83d5cae5eafa421ce20270ea86ed86f9ff93fc1c21ad9c772563d07d7f5dcb8b76e9241594699d4bbed7440a2a4f","tags":[["p","95a061b8fbdd5e0275d7069d1a1ab21b649af6c9c68250325f5e778bd926aa66"],["p","01d0bbf9537ef1fd0ddf815f41c1896738f6a3a0f600f51c782b7d8891130d4c"],["p","da66d621d05bb7a7d64c1adfe0ea6421ca7db60d1089cd98b06ccfcd0ea2ed78"],["p","508f28656b8db436153d5239de5034abc0351b8c90ac33e6b156d1fea64b2960"],["p","b3b37da64c8df56ecfe5fa287f0121fa6dfe72e18325d0ce2e3866b93318d8f5"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","f8e51fc216c8a8507347651219f07e22ef9f4299a8319fe3f7ee97a194140811"],["p","0d94dde23d23fad80f70488a374096197d068bcb2f0804055cb8450f0e315190"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","f0fb31d1810a9f95df3d178fcd67ca0b09879ad11e8689e56962cd839fb8ead4"],["p","bf2376e17ba4ec269d10fcc996a4746b451152be9031fa48e74553dde5526bce"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"],["p","0f52b01a82649e892f9175f8dcc8cd432ac6cd5e0f5d5f8bbde62b1b21263741"],["p","469223f4ce484bba4e125a8c8a92032e16e5d07b723ea5da2f253b2627da92c7"],["p","64bfa9abffe5b18d0731eed57b38173adc2ba89bf87c168da90517f021e722b5"],["p","2efdb88e1ad052d9d72eb8f6787efa7f2c432064ff7af8efd1776af944bfc3e3"],["p","338b826c2c3e2b173c6acc1adc77c047076030a1329c7127a622d1325e59c1b0"],["p","cc76679480a4504b963a3809cba60b458ebf068c62713621dda94b527860447d"],["p","16784bad81b7b8215ee4cea0adf04793aba9a836608792c63010ebced7d184c8"],["p","be5a7d74a3c1376016833ed8e02c1571d5b06fab277ad4d6cee2560aa23ed9be"],["p","8aafa7d540d9f24704477eba0f39ec24b7d65439bcf588b04d69cc428aff4c2a"],["p","681b9e384921582ecac2b4641a9337f17b66698a01065694c91dc4c345c6de1e"],["p","8bad9b1fcfc287230812387866c0e0d741da13bee3d592a97f706108c48173fc"],["p","296842eaaed9be5ae0668da09fe48aac0521c4af859ad547d93145e5ac34c17e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","b8dd9afd51008741db4b5ff40ef0bed9bfc446e6ea69f5d5890b7c0865a2c3f1"],["p","de75eb1d7a6627807a8dff0fb337cfcf189e7e9af8ab6229f688f664710c3014"],["p","d9f2471cc8f33111071bd0de1fef87d783cc4140e0f70ba9298a53b9e07c60f6"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","9d7af6946b320b3ba6b4d386de2b2cf3f8ac52fdcb63f3343d1a8362693a3ce5"],["p","8d9d2b77930ee54ec3e46faf774ddd041dbb4e4aa35ad47c025884a286dd65fa"],["p","b70ea0ddabd96e073c703e0385f5bb38e52119c923fecdbb5bf7c98f900166aa"],["p","d534e53eb0956e4b9afd891bb2f8319970309f14200a9459b534a83e3980adaf"],["p","be39043cc12efbddfee564d95da751a71df6c139e2def45c431cadeb4a573ca3"],["p","f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0"],["p","50c59a1cb233d08d5a1fb493f520c6b5d7f77a2ba42e4666801a3e366b0a027e"],["p","1d80e5588de010d137a67c42b03717595f5f510e73e42cfc48f31bae91844d59"],["p","722a9b1535c6a7e207b8744b88c043e97111fe1b35664aface5d6d826212c703"],["p","cccfccb023231da836fd3f86605163fc41be51800fe13248da3125b35718521c"],["p","5ffb8e1b6b629c0e34a013f9298ebb0759b98a3d24029916321d5eb4255b6735"],["p","6fc6cd9b3a8532a6ec42a8be2b8ffc0b7abe675b4a1c62314e131a6b06b0bf6e"],["p","d70d50091504b992d1838822af245d5f6b3a16b82d917acb7924cef61ed4acee"],["p","f5f98ba54045a2fa8df2a97c35fc30299b9e0d51a701795c040ca80cedaf39b4"],["p","1af54955936be804f95010647ea5ada5c7627eddf0734a7f813bba0e31eed960"],["p","5fd004926969381ac2bb3a32720036d9f9632d29fb22dc1bf5d8fb1c9e265798"],["p","a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256"],["p","33b68d46e69e0fe145ceac12fec3ce552c61f972f348e13d343ff7956f97aa6c"],["p","f96c3d76497074c4c83a7b3823380e77dc73d5a9494fd2e053e4a1453e17824b"],["p","a6230ed2c2cb6c9240b4de29946e0b3857c0652cc8b3bee5e73c793f5c09a369"],["p","cbb2f023b6aa09626d51d2f4ea99fa9138ea80ec7d5ffdce9feef8dcd6352031"],["p","414908397af26640247042da7f942fc931837c8d9d3207e271cb2fb2bbd9a4ed"],["p","2bcb31df1c1d848f230c86011a01aa329afb2a0c32fc926c725dc8e293e2a4e4"],["p","9b6d95b76a01191a4c778185681ed7f3bced2fffa8e41516ec78240b213285f5"],["p","2664209547c22a784407a7987fcf7bc0081dc06cdccb98ec7c61953b4d73c6d4"],["p","4b0bcab460adda31fad5a326fb0c04f6ec821fb24be85dbdc03c04cc0e12fc07"],["p","dfcf6ae4111c1bb29d8cd96df8793aeded34f78764b5089da32e0f3edf7a9e2f"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b"],["p","958b754a1d3de5b5eca0fe31d2d555f451325f8498a83da1997b7fcd5c39e88c"],["p","e17e9a18635f80d472e6b49da910f244f2ed7437aec6bf227f85092066d67a6b"],["p","62fe49023565e07b56d74a203721f4ea21f284f9295a019a98954fb7864eec9a"],["p","47969365e7e3cd52ebc499f5d9a687a64b59812008a4a2fbc273ef61624a085d"],["p","ab701878befc26097fcdd272bb701aebdfa3d227caac85d28c5d44de84d6d44e"],["p","665e667acb1a5e3d601cae03bf02b9f105547c070067ab0663c5666a1dcac1b3"],["p","c0e0c4272134d92da8651650c10ca612b710a670d5e043488f27e073a1f63a16"],["p","fd6faf1e35435a286656ec9f8e2bd716d7c168c0358acb8cb39ee8ecae104d78"],["p","ee85604f8ec6e4e24f8eaf2a624d042ebd431dae448fe11779adcfb6bb78575e"],["p","870744363b1a5986d6773b5706dde258c039f6d34a5ffc270915033a6a67c82c"],["p","1aa1dbbeeb04dde30e1e7a00f7eea7605549e78726d53522e3990aa68009f433"],["p","0418ca2d6cd6c7fbc4e0391bb745027023a7edbc38f2a60fc3b68f006efb85eb"],["p","6d5f85c4be85fabb803716cc002f46c88ad5d44dae8098f057482640a3f7e400"],["p","d93336159384719a6309977ed5a6afe024816d47587a30af99149cbd441e7344"],["p","aa9539e1ec76ee5f79c8e3f0c23d62f1adf40a69a05bb0728d792d17b75d8179"],["p","6efb74e66b7ed7fb9fb7b8b8f12e1fbbabe7f45823a33a14ac60cc9241285536"],["p","32d1df355d2ceeea5cd1c41d574b9105c68eeefd7c0bd29e49c152fe71c4c7d5"],["p","2243581d5f557483a449dc06ec38b38f42f32832cdd05cce974c8f82771762ad"],["p","63d59db8d29abe29db7380beb912b8f600237332b6c9978b208694e4be170f6f"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["p","6116d06dd94aedb145d2e7689a2fe2249de56fc4e89a4cace88a0d4b1d80b135"],["p","efcb5fc526c91ffd51aaef037009f22eb4d3300a141c1754af439e085680aa8e"],["p","837332c28d91f1893f8ac8d05451860e54de3b13b919180677c058d385f1e26f"],["p","0dcfcaac3d6f6796f7bc300a7d0d3b71bad1457f4e6b72f9cf490e1e55767be4"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","410adfbdceb593f7c093a75d01ff0e79bc4767987e30d776b836e898583495fc"],["p","278be33c14240980b132ba9d665ed9c9ee5a91ef2a046f151a1fc45c5c67f928"],["p","264d4029ef7c806919bd40f751c8158671039b4226a0916081d7ca158ab528f2"],["p","83c6e985c28d7dfb9b51eb209f82af91c8a8f6f322d84ca75453479916446f86"],["p","f776bcc12271be79fc71b655f3cbfeb3a8a169f33ee1335fcc0c22829901da0a"],["p","813c2662366a12f6337b951c048552fd3c4894e403cab701634dcd803786dc09"],["p","9356d008ab226ab6b08ab3c73900546b2836c48c7527f0e5332c09201a3e6dc8"],["p","cb0f973f96e28c12890afe39c2c84c54e12758b2ed53d3b150820bff66331530"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d"],["p","d7a4345c3ead1ea7a34bd6aae43c63cbd81941d9ba019fe972843e5ce78e3187"],["p","1b2f3c135c9e5a9d6f70de02f0b7b546c11855d0453f6682bc874d6bbe64dfd6"],["p","b286cdad6f9db7f1641139fc9ab69c8f2b36e25608206dfec856ef10ee4e8091"],["p","0959538a1d0ed66b471def67bcf0651b3a5654eaf032144a9df4c343eff675da"],["p","f1b911af1c7a56073e3b83ba7eaa681467040e0fbbdd265445aa80e65c274c22"],["p","99562ddb32ac3e3378919a943e861cb999e80583efc7c70a42bba3e9ebbfc579"],["p","cc97551f4c883c9d2f027d95f76eb50448865b5f174ad0c46368fad7c7a3c8f1"],["p","f9497235341110289f24d4bdd45a9197c6fecfcd85249147366410453073bf1c"],["p","34fad5244f7de844c1c9e001e2737ed23f3ea96ceda2e20d241d46fee5824f16"],["p","21335073401a310cc9179fe3a77e9666710cfdf630dfd840f972c183a244b1ad"],["p","7937540697665014c0de0809cdc75f37e900b1091a6b3d812af4178fe672caa9"]]}] +[14:17:13.312] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:17:15.012] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:15.012] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:15.012] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:15.012] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:15.164] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Streaming: Capsule - 022\n1. Flavien Berger - Mars balnéaire\n2. Flavien Berger - Océan rouge\n3. Radiohead - The National Anthem\n4. ESG - Insane (Tambourine Mix)\n5. TodoTodo - Autogas\n6. MAN 2 MAN - Male Stripper\n7. Laurence Pike - Distant Early Warning\n\nhttps://harmonique.one/shows/capsule/episodes/022 #music #tunestr","created_at":1759429030,"id":"f9cada9cd079d635baf1a73ff96be76a860fbf443e0c2d8f219058db929d0d90","kind":1,"pubkey":"f3f5992cdb39e6108768d543fbd384a11efc3713085617ee28932ebb1614e07c","sig":"2ee481a20b9f8d9c945496b73ef7fc6d001614b8da998879bb40332bf7b3df88bc8b7c228d80293d51ddfa9956fd58d8c5ee05703d5daaa64aaab896a4bc6711","tags":[]}] +[14:17:15.225] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Then suddenly ","created_at":1759429027,"id":"1200b11ef7bbf66439e12b59fb932e0be6b157285f2b4d836fb2ae8cb34d19c7","kind":1,"pubkey":"f5c7f59077d030f94bc03ab7be1a0ef0c1fce1a3f9f5fa2b8b0a5db96295890c","sig":"e9e96171ac2123a6526a3505525fdeeac5e7be044fecc1c5348b563566ec528abd8a7a63bf9621331b75c6e1d005dfa733cf35fdd2c4ce198c35c79c4102d2d2","tags":[["e","d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:17:15.315] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Die mentale Blockade ist wirklich gigantisch bei den Tradfi Experten.\nStrategy hat eine Verschuldung von ca. 10 Prozent und sitzt auf 77 Milliarden Dollar Gegenwert an Kapital.\nOhja sie stehen wirklich kurz vor dem Zusammenbruch, genau wie bei den Tesla Hatern. Fällt die Aktie mal ein halbes Jahr kommen die Bären aus ihren Löchern gekrochen.\n\nBuy spot bitcoin. \n\nhttps://blossom.primal.net/4916b79304cf9f29c7b05c52351b6cb455926d146f8ddbc3177cf76e72f3adcb.jpg","created_at":1759429017,"id":"9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"d0b5cabe6f1ec89be40cac0683ad74405cf7fbf4a085c4c4e625804e75256fa46d1d8f134ef7a4232a0021a4d6f1c839a68255bb321b74166261b11152dc4483","tags":[]}] +[14:17:15.376] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Are you sending this message from the boat? \n\n","created_at":1759429013,"id":"e10f5cb3308eafed3138f27e2fe8022a8b80659682050de2d406753251766db5","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"26aea37d06bea586c99f79b750cf0bc66d44592c2502a7f6796aec3af854044a8101743717fcdc531d1ddc9dc78ea0e22c72a45749aae15e7a38d64e9958b090","tags":[["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:17:15.436] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しめない会になっちゃう","created_at":1759429011,"id":"9f4b6831e628cbc631d250bfe72372381bca8bf7e5162de6763b335638f1000e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"558228222ed71fb052c6f24e6eae88eaecddca42731bc3146beffc223bfaf061d89da5bf576b81e3a78f727ecdbd95f00564a32c738280d2372b7fb029e6544d","tags":[]}] +[14:17:15.497] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1/2 trans 1/2 bobs 😂","created_at":1759428999,"id":"f7ba7abe934e48fe63d99af5991b288c919180027bc94e5f8958212cf16745c9","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fa1dff2315dd25dc35bb2a35b5b0ac77199cbe726bfae85520dedc6f2be8da37de90a7ddebc8d16e9126579600f0e4195560faf96ad4a566b96c7dc5e24c9311","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","wss://nos.lol","root"],["e","d8a3200c2966cbfe40e7ad455eac0429318c236cbcbb60cde25deb5429d2d65d","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[14:17:15.557] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:17:15.618] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:17:15.679] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:17:15.739] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:17:15.800] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:15.860] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Monika\",\"about\":\"Autorin. Podcasterin. Leidenschaft für Fotografie, fürs Selbermachen, Reisen & Kochen. Geb. bei 326 ppm CO₂. \\nhttp://absolutanalog.de , http://monismotivklingel.de , http://fiberthermometer.de\\n\\nAvatar made by @anhdres\",\"picture\":\"https://assets.chaos.social/accounts/avatars/000/081/110/original/8bc94cd82624640c.jpeg\",\"banner\":\"https://assets.chaos.social/accounts/headers/000/081/110/original/6b71469f98a3b928.jpeg\",\"nip05\":\"nahlinse@chaos-social.mostr.pub\",\"fields\":[[\"Pronomen\",\"sie/ihr | she/her\"],[\"Privilegien\",\"weiß, cis, abled\"],[\"Beliefs\",\"Trans rights are human rights. 🏳️‍⚧️\\nLove is love 🌈 \\nScience is real 🧪\"]]}","created_at":1759429023,"id":"33257359179a46be05baf28a9cf910d7ea71e247f4685a0179aebce2084247c0","kind":0,"pubkey":"a59d4f9b318bd0750350bea6018ca0d2ca0f4514d083bdfb08cd68d84ae1b6b6","sig":"a728b9fba163c0bfa356975bf83cacf6fa6be158a30e9577bc52af1951f95a46e52d60da5a0a57b2cb66119342b0e8064cd20322f15e6fd8631304d8bd539a2d","tags":[["proxy","https://chaos.social/users/nahlinse","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:15.921] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:15.981] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:16.042] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:16.103] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:16.163] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:16.224] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:16.284] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:16.345] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:17:16.405] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:16.466] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:16.889] RECV nos.lol:443: 192106","tags":[["p","884fff79db003eb8c7991c9ecfe00844e33b9417fcea0d10ccc215c739dbc69f"],["p","811 +[14:17:16.950] RECV nos.lol:443: f0075217a20b0cfe732f24189776b7e8c171d260f60d121e9f0 +[14:17:19.431] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:19.431] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:19.431] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:19.431] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:19.582] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqszqp0sdynnl20c6sajhk2k9spymkwqeclt7f8cxpwesmvss95sejs4jslqt \n\n","created_at":1759429036,"id":"09ed231d2541098a0721bc0b0c94244ea4ef1f7e5b9f088e7c87c652152f659c","kind":1,"pubkey":"668ac389d67f4f4be637f7e567c9054392c080db7c0b257264701ab4048166ff","sig":"aa0b3ce75805f6aaddfc30ef852ff0b5b274f2610a3639420cd08b76ae5e863492dcae99d2f1b51e97ee066e00069aaf38eacea2b39f638b4ff2ccc7ee9b4e1d","tags":[["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.damus.io","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","wss://nostr.einundzwanzig.space/","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","wss://relay.primal.net"],["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://relay.primal.net","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"]]}] +[14:17:19.643] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Streaming: Capsule - 022\n1. Flavien Berger - Mars balnéaire\n2. Flavien Berger - Océan rouge\n3. Radiohead - The National Anthem\n4. ESG - Insane (Tambourine Mix)\n5. TodoTodo - Autogas\n6. MAN 2 MAN - Male Stripper\n7. Laurence Pike - Distant Early Warning\n\nhttps://harmonique.one/shows/capsule/episodes/022 #music #tunestr","created_at":1759429030,"id":"f9cada9cd079d635baf1a73ff96be76a860fbf443e0c2d8f219058db929d0d90","kind":1,"pubkey":"f3f5992cdb39e6108768d543fbd384a11efc3713085617ee28932ebb1614e07c","sig":"2ee481a20b9f8d9c945496b73ef7fc6d001614b8da998879bb40332bf7b3df88bc8b7c228d80293d51ddfa9956fd58d8c5ee05703d5daaa64aaab896a4bc6711","tags":[]}] +[14:17:19.704] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Then suddenly ","created_at":1759429027,"id":"1200b11ef7bbf66439e12b59fb932e0be6b157285f2b4d836fb2ae8cb34d19c7","kind":1,"pubkey":"f5c7f59077d030f94bc03ab7be1a0ef0c1fce1a3f9f5fa2b8b0a5db96295890c","sig":"e9e96171ac2123a6526a3505525fdeeac5e7be044fecc1c5348b563566ec528abd8a7a63bf9621331b75c6e1d005dfa733cf35fdd2c4ce198c35c79c4102d2d2","tags":[["e","d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:17:19.764] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Die mentale Blockade ist wirklich gigantisch bei den Tradfi Experten.\nStrategy hat eine Verschuldung von ca. 10 Prozent und sitzt auf 77 Milliarden Dollar Gegenwert an Kapital.\nOhja sie stehen wirklich kurz vor dem Zusammenbruch, genau wie bei den Tesla Hatern. Fällt die Aktie mal ein halbes Jahr kommen die Bären aus ihren Löchern gekrochen.\n\nBuy spot bitcoin. \n\nhttps://blossom.primal.net/4916b79304cf9f29c7b05c52351b6cb455926d146f8ddbc3177cf76e72f3adcb.jpg","created_at":1759429017,"id":"9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"d0b5cabe6f1ec89be40cac0683ad74405cf7fbf4a085c4c4e625804e75256fa46d1d8f134ef7a4232a0021a4d6f1c839a68255bb321b74166261b11152dc4483","tags":[]}] +[14:17:19.824] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Are you sending this message from the boat? \n\n","created_at":1759429013,"id":"e10f5cb3308eafed3138f27e2fe8022a8b80659682050de2d406753251766db5","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"26aea37d06bea586c99f79b750cf0bc66d44592c2502a7f6796aec3af854044a8101743717fcdc531d1ddc9dc78ea0e22c72a45749aae15e7a38d64e9958b090","tags":[["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:17:19.885] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しめない会になっちゃう","created_at":1759429011,"id":"9f4b6831e628cbc631d250bfe72372381bca8bf7e5162de6763b335638f1000e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"558228222ed71fb052c6f24e6eae88eaecddca42731bc3146beffc223bfaf061d89da5bf576b81e3a78f727ecdbd95f00564a32c738280d2372b7fb029e6544d","tags":[]}] +[14:17:19.945] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1/2 trans 1/2 bobs 😂","created_at":1759428999,"id":"f7ba7abe934e48fe63d99af5991b288c919180027bc94e5f8958212cf16745c9","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fa1dff2315dd25dc35bb2a35b5b0ac77199cbe726bfae85520dedc6f2be8da37de90a7ddebc8d16e9126579600f0e4195560faf96ad4a566b96c7dc5e24c9311","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","wss://nos.lol","root"],["e","d8a3200c2966cbfe40e7ad455eac0429318c236cbcbb60cde25deb5429d2d65d","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[14:17:20.006] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:17:20.066] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:17:20.127] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:17:20.187] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:20.248] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Monika\",\"about\":\"Autorin. Podcasterin. Leidenschaft für Fotografie, fürs Selbermachen, Reisen & Kochen. Geb. bei 326 ppm CO₂. \\nhttp://absolutanalog.de , http://monismotivklingel.de , http://fiberthermometer.de\\n\\nAvatar made by @anhdres\",\"picture\":\"https://assets.chaos.social/accounts/avatars/000/081/110/original/8bc94cd82624640c.jpeg\",\"banner\":\"https://assets.chaos.social/accounts/headers/000/081/110/original/6b71469f98a3b928.jpeg\",\"nip05\":\"nahlinse@chaos-social.mostr.pub\",\"fields\":[[\"Pronomen\",\"sie/ihr | she/her\"],[\"Privilegien\",\"weiß, cis, abled\"],[\"Beliefs\",\"Trans rights are human rights. 🏳️‍⚧️\\nLove is love 🌈 \\nScience is real 🧪\"]]}","created_at":1759429023,"id":"33257359179a46be05baf28a9cf910d7ea71e247f4685a0179aebce2084247c0","kind":0,"pubkey":"a59d4f9b318bd0750350bea6018ca0d2ca0f4514d083bdfb08cd68d84ae1b6b6","sig":"a728b9fba163c0bfa356975bf83cacf6fa6be158a30e9577bc52af1951f95a46e52d60da5a0a57b2cb66119342b0e8064cd20322f15e6fd8631304d8bd539a2d","tags":[["proxy","https://chaos.social/users/nahlinse","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:20.309] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:20.369] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:20.430] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:20.490] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:20.551] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:20.611] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:20.672] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:20.732] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:17:20.793] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:20.853] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:21.277] RECV nos.lol:443: 192106","tags":[["p","884fff79db003eb8c7991c9ecfe00844e33b9417fcea0d10ccc215c739dbc69f"],["p","811 +[14:17:21.337] RECV nos.lol:443: f0075217a20b0cfe732f24189776b7e8c171d260f60d121e9f0 +[14:17:23.666] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:23.667] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:23.667] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:23.667] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:23.819] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッヂボールは休み時間にできることじゃん","created_at":1759429042,"id":"5967c78e7c6ac09e357aba86de4472c6059c7bb64da9127494737cb9ec0d9c63","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"34025b716da5858d3cccfe8418146a28584c4aa55e2d2bd1ba383d39e60ee7ecb08bcffdec3f433448048967090521b2b87578bc22086bfb1ba3b5ccfaf6edf0","tags":[]}] +[14:17:23.879] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqszqp0sdynnl20c6sajhk2k9spymkwqeclt7f8cxpwesmvss95sejs4jslqt \n\n","created_at":1759429036,"id":"09ed231d2541098a0721bc0b0c94244ea4ef1f7e5b9f088e7c87c652152f659c","kind":1,"pubkey":"668ac389d67f4f4be637f7e567c9054392c080db7c0b257264701ab4048166ff","sig":"aa0b3ce75805f6aaddfc30ef852ff0b5b274f2610a3639420cd08b76ae5e863492dcae99d2f1b51e97ee066e00069aaf38eacea2b39f638b4ff2ccc7ee9b4e1d","tags":[["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.damus.io","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","wss://nostr.einundzwanzig.space/","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","wss://relay.primal.net"],["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://relay.primal.net","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"]]}] +[14:17:23.940] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Streaming: Capsule - 022\n1. Flavien Berger - Mars balnéaire\n2. Flavien Berger - Océan rouge\n3. Radiohead - The National Anthem\n4. ESG - Insane (Tambourine Mix)\n5. TodoTodo - Autogas\n6. MAN 2 MAN - Male Stripper\n7. Laurence Pike - Distant Early Warning\n\nhttps://harmonique.one/shows/capsule/episodes/022 #music #tunestr","created_at":1759429030,"id":"f9cada9cd079d635baf1a73ff96be76a860fbf443e0c2d8f219058db929d0d90","kind":1,"pubkey":"f3f5992cdb39e6108768d543fbd384a11efc3713085617ee28932ebb1614e07c","sig":"2ee481a20b9f8d9c945496b73ef7fc6d001614b8da998879bb40332bf7b3df88bc8b7c228d80293d51ddfa9956fd58d8c5ee05703d5daaa64aaab896a4bc6711","tags":[]}] +[14:17:24.001] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Then suddenly ","created_at":1759429027,"id":"1200b11ef7bbf66439e12b59fb932e0be6b157285f2b4d836fb2ae8cb34d19c7","kind":1,"pubkey":"f5c7f59077d030f94bc03ab7be1a0ef0c1fce1a3f9f5fa2b8b0a5db96295890c","sig":"e9e96171ac2123a6526a3505525fdeeac5e7be044fecc1c5348b563566ec528abd8a7a63bf9621331b75c6e1d005dfa733cf35fdd2c4ce198c35c79c4102d2d2","tags":[["e","d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:17:24.061] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Die mentale Blockade ist wirklich gigantisch bei den Tradfi Experten.\nStrategy hat eine Verschuldung von ca. 10 Prozent und sitzt auf 77 Milliarden Dollar Gegenwert an Kapital.\nOhja sie stehen wirklich kurz vor dem Zusammenbruch, genau wie bei den Tesla Hatern. Fällt die Aktie mal ein halbes Jahr kommen die Bären aus ihren Löchern gekrochen.\n\nBuy spot bitcoin. \n\nhttps://blossom.primal.net/4916b79304cf9f29c7b05c52351b6cb455926d146f8ddbc3177cf76e72f3adcb.jpg","created_at":1759429017,"id":"9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"d0b5cabe6f1ec89be40cac0683ad74405cf7fbf4a085c4c4e625804e75256fa46d1d8f134ef7a4232a0021a4d6f1c839a68255bb321b74166261b11152dc4483","tags":[]}] +[14:17:24.122] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Are you sending this message from the boat? \n\n","created_at":1759429013,"id":"e10f5cb3308eafed3138f27e2fe8022a8b80659682050de2d406753251766db5","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"26aea37d06bea586c99f79b750cf0bc66d44592c2502a7f6796aec3af854044a8101743717fcdc531d1ddc9dc78ea0e22c72a45749aae15e7a38d64e9958b090","tags":[["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:17:24.183] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しめない会になっちゃう","created_at":1759429011,"id":"9f4b6831e628cbc631d250bfe72372381bca8bf7e5162de6763b335638f1000e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"558228222ed71fb052c6f24e6eae88eaecddca42731bc3146beffc223bfaf061d89da5bf576b81e3a78f727ecdbd95f00564a32c738280d2372b7fb029e6544d","tags":[]}] +[14:17:24.243] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1/2 trans 1/2 bobs 😂","created_at":1759428999,"id":"f7ba7abe934e48fe63d99af5991b288c919180027bc94e5f8958212cf16745c9","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fa1dff2315dd25dc35bb2a35b5b0ac77199cbe726bfae85520dedc6f2be8da37de90a7ddebc8d16e9126579600f0e4195560faf96ad4a566b96c7dc5e24c9311","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","wss://nos.lol","root"],["e","d8a3200c2966cbfe40e7ad455eac0429318c236cbcbb60cde25deb5429d2d65d","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[14:17:24.304] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:17:24.364] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:17:24.425] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:24.485] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Monika\",\"about\":\"Autorin. Podcasterin. Leidenschaft für Fotografie, fürs Selbermachen, Reisen & Kochen. Geb. bei 326 ppm CO₂. \\nhttp://absolutanalog.de , http://monismotivklingel.de , http://fiberthermometer.de\\n\\nAvatar made by @anhdres\",\"picture\":\"https://assets.chaos.social/accounts/avatars/000/081/110/original/8bc94cd82624640c.jpeg\",\"banner\":\"https://assets.chaos.social/accounts/headers/000/081/110/original/6b71469f98a3b928.jpeg\",\"nip05\":\"nahlinse@chaos-social.mostr.pub\",\"fields\":[[\"Pronomen\",\"sie/ihr | she/her\"],[\"Privilegien\",\"weiß, cis, abled\"],[\"Beliefs\",\"Trans rights are human rights. 🏳️‍⚧️\\nLove is love 🌈 \\nScience is real 🧪\"]]}","created_at":1759429023,"id":"33257359179a46be05baf28a9cf910d7ea71e247f4685a0179aebce2084247c0","kind":0,"pubkey":"a59d4f9b318bd0750350bea6018ca0d2ca0f4514d083bdfb08cd68d84ae1b6b6","sig":"a728b9fba163c0bfa356975bf83cacf6fa6be158a30e9577bc52af1951f95a46e52d60da5a0a57b2cb66119342b0e8064cd20322f15e6fd8631304d8bd539a2d","tags":[["proxy","https://chaos.social/users/nahlinse","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:24.546] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:24.606] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:24.667] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:24.727] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:24.788] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:24.848] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:24.909] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:24.969] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:17:25.030] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:25.090] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:25.513] RECV nos.lol:443: 192106","tags":[["p","884fff79db003eb8c7991c9ecfe00844e33b9417fcea0d10ccc215c739dbc69f"],["p","811 +[14:17:25.573] RECV nos.lol:443: f0075217a20b0cfe732f24189776b7e8c171d260f60d121e9f0 +[14:17:27.906] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:27.906] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:27.906] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:27.906] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:28.059] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"友達いないからドッジボールやった記憶がないし、ドッヂボールっていうのも初めて知った","created_at":1759429045,"id":"ff8083e533d78d8e00baaba2f0b8787b695117c02b2d879b495af8e1abea16da","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"93dce48442f77c20349fa32947dd443f0c0453970b55a45edc4dc2215583b19491e76bd4ada89ee698cec7ab5cb88cc31b91d378dccce27ec244bbe8c7e39151","tags":[]}] +[14:17:28.120] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッヂボールは休み時間にできることじゃん","created_at":1759429042,"id":"5967c78e7c6ac09e357aba86de4472c6059c7bb64da9127494737cb9ec0d9c63","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"34025b716da5858d3cccfe8418146a28584c4aa55e2d2bd1ba383d39e60ee7ecb08bcffdec3f433448048967090521b2b87578bc22086bfb1ba3b5ccfaf6edf0","tags":[]}] +[14:17:28.180] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqszqp0sdynnl20c6sajhk2k9spymkwqeclt7f8cxpwesmvss95sejs4jslqt \n\n","created_at":1759429036,"id":"09ed231d2541098a0721bc0b0c94244ea4ef1f7e5b9f088e7c87c652152f659c","kind":1,"pubkey":"668ac389d67f4f4be637f7e567c9054392c080db7c0b257264701ab4048166ff","sig":"aa0b3ce75805f6aaddfc30ef852ff0b5b274f2610a3639420cd08b76ae5e863492dcae99d2f1b51e97ee066e00069aaf38eacea2b39f638b4ff2ccc7ee9b4e1d","tags":[["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.damus.io","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","wss://nostr.einundzwanzig.space/","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","wss://relay.primal.net"],["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://relay.primal.net","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"]]}] +[14:17:28.241] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Streaming: Capsule - 022\n1. Flavien Berger - Mars balnéaire\n2. Flavien Berger - Océan rouge\n3. Radiohead - The National Anthem\n4. ESG - Insane (Tambourine Mix)\n5. TodoTodo - Autogas\n6. MAN 2 MAN - Male Stripper\n7. Laurence Pike - Distant Early Warning\n\nhttps://harmonique.one/shows/capsule/episodes/022 #music #tunestr","created_at":1759429030,"id":"f9cada9cd079d635baf1a73ff96be76a860fbf443e0c2d8f219058db929d0d90","kind":1,"pubkey":"f3f5992cdb39e6108768d543fbd384a11efc3713085617ee28932ebb1614e07c","sig":"2ee481a20b9f8d9c945496b73ef7fc6d001614b8da998879bb40332bf7b3df88bc8b7c228d80293d51ddfa9956fd58d8c5ee05703d5daaa64aaab896a4bc6711","tags":[]}] +[14:17:28.301] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Then suddenly ","created_at":1759429027,"id":"1200b11ef7bbf66439e12b59fb932e0be6b157285f2b4d836fb2ae8cb34d19c7","kind":1,"pubkey":"f5c7f59077d030f94bc03ab7be1a0ef0c1fce1a3f9f5fa2b8b0a5db96295890c","sig":"e9e96171ac2123a6526a3505525fdeeac5e7be044fecc1c5348b563566ec528abd8a7a63bf9621331b75c6e1d005dfa733cf35fdd2c4ce198c35c79c4102d2d2","tags":[["e","d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:17:28.362] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Die mentale Blockade ist wirklich gigantisch bei den Tradfi Experten.\nStrategy hat eine Verschuldung von ca. 10 Prozent und sitzt auf 77 Milliarden Dollar Gegenwert an Kapital.\nOhja sie stehen wirklich kurz vor dem Zusammenbruch, genau wie bei den Tesla Hatern. Fällt die Aktie mal ein halbes Jahr kommen die Bären aus ihren Löchern gekrochen.\n\nBuy spot bitcoin. \n\nhttps://blossom.primal.net/4916b79304cf9f29c7b05c52351b6cb455926d146f8ddbc3177cf76e72f3adcb.jpg","created_at":1759429017,"id":"9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"d0b5cabe6f1ec89be40cac0683ad74405cf7fbf4a085c4c4e625804e75256fa46d1d8f134ef7a4232a0021a4d6f1c839a68255bb321b74166261b11152dc4483","tags":[]}] +[14:17:28.422] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Are you sending this message from the boat? \n\n","created_at":1759429013,"id":"e10f5cb3308eafed3138f27e2fe8022a8b80659682050de2d406753251766db5","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"26aea37d06bea586c99f79b750cf0bc66d44592c2502a7f6796aec3af854044a8101743717fcdc531d1ddc9dc78ea0e22c72a45749aae15e7a38d64e9958b090","tags":[["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:17:28.483] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しめない会になっちゃう","created_at":1759429011,"id":"9f4b6831e628cbc631d250bfe72372381bca8bf7e5162de6763b335638f1000e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"558228222ed71fb052c6f24e6eae88eaecddca42731bc3146beffc223bfaf061d89da5bf576b81e3a78f727ecdbd95f00564a32c738280d2372b7fb029e6544d","tags":[]}] +[14:17:28.543] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1/2 trans 1/2 bobs 😂","created_at":1759428999,"id":"f7ba7abe934e48fe63d99af5991b288c919180027bc94e5f8958212cf16745c9","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fa1dff2315dd25dc35bb2a35b5b0ac77199cbe726bfae85520dedc6f2be8da37de90a7ddebc8d16e9126579600f0e4195560faf96ad4a566b96c7dc5e24c9311","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","wss://nos.lol","root"],["e","d8a3200c2966cbfe40e7ad455eac0429318c236cbcbb60cde25deb5429d2d65d","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[14:17:28.604] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:17:28.664] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:28.725] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Roland Häder🇩🇪\",\"about\":\"I love free software, freedom, decentralization and no capitalism. I write with a QWERTZ keyboard but have setup US layout. #BlacklistIsNoRacism #heterosexual #EndFGM #ProDashcam #IloveK1 #SayNoToVVS #SayNoToGenderWoowoo. #fedi22 #IStandWithJKRowling #IStandWithJordanPeterson #IStandWithRileyGaines #SayNoToWoke #IStandWithMaya #StopErasingWomen #ManNotCis #StraightDontFuckWithTrans\",\"picture\":\"https://f.haeder.net/photo/profile/roland.png?ts=1748778962\",\"nip05\":\"roland@f-haeder-net.mostr.pub\",\"fields\":[[\"Factorio\",\"mods.factorio.com/user/roland7…\"],[\"gitlab\",\"gitlab.com/Quix0r\"],[\"Locals (Quix0r)\",\"jameson.locals.com\"],[\"Pronoun\",\"vaginal commander\"],[\"Hometown\",\"Georgsmarienhütte\"],[\"Sex\",\"Male\"],[\"Political views\",\"Center? Hmm: gegenstimme.tv/w/gcCyFYxYUDG5q…\"],[\"Religious views\",\"Atheist\"],[\"Likes\",\"Food: #vegetarian (90%), #vegan (10%)\"],[\"Dislikes\",\"Smoking/drugs, I stopped eating meat since July 2019. Alcohol (even mild) seem to be more disliked than liked. I don't like the taste.\"],[\"Title / description\",\"Administrator of this instance\"],[\"Musical interests\",\"Techno, 90' Dancefloor 90', Psychedelic-/Goa-Trance\"],[\"Books, literature\",\"Documentation books ... \"],[\"Television\",\"X-Files, Knight Rider, Dune (movie), lots of movies where Jason Statham is involved. Maybe something more I forgot?\"],[\"Hobbies/Interests\",\"Programming PHP/Java SE/EE, playing computer games\"],[\"Love / romance\",\"I'm in love with my wife for a longer time now.\"],[\"Work / employment\",\"Unempoyed, not interested in home-office.\"],[\"School / education\",\"Middle school finished, first work training was electrician, then application developer.\"],[\"Contact information and Social Networks\",\"GS: social.mxchange.org/roland\"],[\"Sexuality\",\"Heterosexual (straight)\"],[\"Relationship type\",\"Monogamous\"],[\"OMEMO ID\",\"a7419c8edd4fe01c0b1bc79b3f3a5fbbb589b56098e55dacb02351d73d6e6232\"],[\"GNU Social\",\"social.mxchange.org/roland\"],[\"TwitchTV\",\"twitch.tv/quix0r\"],[\"Steam\",\"steamcommunity.com/id/quix0r/\"],[\"GOG\",\"gog.com/u/Quix0r\"],[\"git.friendi.ca\",\"git.friendi.ca/roland\"],[\"itch.io profile\",\"itch.io/profile/quix0r\"],[\"Codeberg\",\"codeberg.org/roland77\"],[\"BKA.li repositories\",\"code.bka.li/roland77\"],[\"OBS Forum\",\"obsproject.com/forum/members/r…\"],[\"Rumble\",\"rumble.com/user/Quix0r\"],[\"voidpoint.io\",\"voidpoint.io/Quix0r\"]]}","created_at":1759429041,"id":"33e61b67499a154239bc1eca14a328fc775ff67b98339899e7904561a91aaf45","kind":0,"pubkey":"4bb8e4510271817909dcd6e725ef0c0fbdb1e057922fd32b057092af5b7fb39d","sig":"7a6dcd0994f9a9f846898e5906f83334b8e3bc2ca4056d7dc4954990e7734957546f6ff77089afeebf796fac1b97045595a38761e8c4c2ad03095fe4051803d7","tags":[["proxy","https://f.haeder.net/profile/roland","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:28.786] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Monika\",\"about\":\"Autorin. Podcasterin. Leidenschaft für Fotografie, fürs Selbermachen, Reisen & Kochen. Geb. bei 326 ppm CO₂. \\nhttp://absolutanalog.de , http://monismotivklingel.de , http://fiberthermometer.de\\n\\nAvatar made by @anhdres\",\"picture\":\"https://assets.chaos.social/accounts/avatars/000/081/110/original/8bc94cd82624640c.jpeg\",\"banner\":\"https://assets.chaos.social/accounts/headers/000/081/110/original/6b71469f98a3b928.jpeg\",\"nip05\":\"nahlinse@chaos-social.mostr.pub\",\"fields\":[[\"Pronomen\",\"sie/ihr | she/her\"],[\"Privilegien\",\"weiß, cis, abled\"],[\"Beliefs\",\"Trans rights are human rights. 🏳️‍⚧️\\nLove is love 🌈 \\nScience is real 🧪\"]]}","created_at":1759429023,"id":"33257359179a46be05baf28a9cf910d7ea71e247f4685a0179aebce2084247c0","kind":0,"pubkey":"a59d4f9b318bd0750350bea6018ca0d2ca0f4514d083bdfb08cd68d84ae1b6b6","sig":"a728b9fba163c0bfa356975bf83cacf6fa6be158a30e9577bc52af1951f95a46e52d60da5a0a57b2cb66119342b0e8064cd20322f15e6fd8631304d8bd539a2d","tags":[["proxy","https://chaos.social/users/nahlinse","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:28.846] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:28.907] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:28.968] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:29.028] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:29.088] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:29.149] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:29.210] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:29.270] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:17:29.330] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:30.176] RECV nos.lol:443: 75c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","1 +[14:17:30.478] RECV nos.lol:443: 80d6709e42a20428fd381f89ef8d63db"],["p","2355757c6ec5 +[14:17:30.659] RECV nos.lol:443: ecb3f28d54adc14e6e01d016a82986fe153b"],["p","175f568 +[14:17:30.962] RECV nos.lol:443: 06968d8a6459559c249f322fa73464a7"],["p","b7996c183e036df +[14:17:31.932] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:31.932] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:31.932] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:31.932] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:32.084] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッジボール、小4のとき急にできるようになって、小6あたりでまたダメになった","created_at":1759429051,"id":"c7d4f85b24e25eca175a1a4f3c955d997f915273e31b5d853af04ca325921aef","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c0ed9d29928efd6c699809c389bb0b1745ee8959b524f86f07d46fcd969204cd9909e5eb9f269cfeda4a95e38829df9ddf4cba68f79ba4141e9167b575165198","tags":[]}] +[14:17:32.145] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Australian firm Fitell Corp bought $1.5M worth of PUMP tokens (Solana-based Pumpfun platform) – 216.8M tokens! 🇦🇺 Fitell is shifting from fitness e-commerce to a digital asset treasury & may rebrand as Solana Australia Corp. They also secured $10M for SOL. (TheBlock)\n\n#crypto #blockchain #news ","created_at":1759429048,"id":"4d8ec3953bede23a53caa15e46ea3c2a0c37c2b17a7cd7e9e9eaeda04f8b1d3f","kind":1,"pubkey":"c215990326b98e7fff0ccbc865c159332802d9fd39ffa281ec0f8949bd2a3113","sig":"80dc159b23692f2104aee2d5d1ff0f14d0a403f6159ca760b2d16321ed68c2da4a1a97e3b5e767b72d5ba311208937b23507dc42c31ab9f96d16d7cb07f2ae5c","tags":[]}] +[14:17:32.170] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"友達いないからドッジボールやった記憶がないし、ドッヂボールっていうのも初めて知った","created_at":1759429045,"id":"ff8083e533d78d8e00baaba2f0b8787b695117c02b2d879b495af8e1abea16da","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"93dce48442f77c20349fa32947dd443f0c0453970b55a45edc4dc2215583b19491e76bd4ada89ee698cec7ab5cb88cc31b91d378dccce27ec244bbe8c7e39151","tags":[]}] +[14:17:32.231] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッヂボールは休み時間にできることじゃん","created_at":1759429042,"id":"5967c78e7c6ac09e357aba86de4472c6059c7bb64da9127494737cb9ec0d9c63","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"34025b716da5858d3cccfe8418146a28584c4aa55e2d2bd1ba383d39e60ee7ecb08bcffdec3f433448048967090521b2b87578bc22086bfb1ba3b5ccfaf6edf0","tags":[]}] +[14:17:32.291] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqszqp0sdynnl20c6sajhk2k9spymkwqeclt7f8cxpwesmvss95sejs4jslqt \n\n","created_at":1759429036,"id":"09ed231d2541098a0721bc0b0c94244ea4ef1f7e5b9f088e7c87c652152f659c","kind":1,"pubkey":"668ac389d67f4f4be637f7e567c9054392c080db7c0b257264701ab4048166ff","sig":"aa0b3ce75805f6aaddfc30ef852ff0b5b274f2610a3639420cd08b76ae5e863492dcae99d2f1b51e97ee066e00069aaf38eacea2b39f638b4ff2ccc7ee9b4e1d","tags":[["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.damus.io","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","wss://nostr.einundzwanzig.space/","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","wss://relay.primal.net"],["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://relay.primal.net","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"]]}] +[14:17:32.352] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Streaming: Capsule - 022\n1. Flavien Berger - Mars balnéaire\n2. Flavien Berger - Océan rouge\n3. Radiohead - The National Anthem\n4. ESG - Insane (Tambourine Mix)\n5. TodoTodo - Autogas\n6. MAN 2 MAN - Male Stripper\n7. Laurence Pike - Distant Early Warning\n\nhttps://harmonique.one/shows/capsule/episodes/022 #music #tunestr","created_at":1759429030,"id":"f9cada9cd079d635baf1a73ff96be76a860fbf443e0c2d8f219058db929d0d90","kind":1,"pubkey":"f3f5992cdb39e6108768d543fbd384a11efc3713085617ee28932ebb1614e07c","sig":"2ee481a20b9f8d9c945496b73ef7fc6d001614b8da998879bb40332bf7b3df88bc8b7c228d80293d51ddfa9956fd58d8c5ee05703d5daaa64aaab896a4bc6711","tags":[]}] +[14:17:32.412] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Then suddenly ","created_at":1759429027,"id":"1200b11ef7bbf66439e12b59fb932e0be6b157285f2b4d836fb2ae8cb34d19c7","kind":1,"pubkey":"f5c7f59077d030f94bc03ab7be1a0ef0c1fce1a3f9f5fa2b8b0a5db96295890c","sig":"e9e96171ac2123a6526a3505525fdeeac5e7be044fecc1c5348b563566ec528abd8a7a63bf9621331b75c6e1d005dfa733cf35fdd2c4ce198c35c79c4102d2d2","tags":[["e","d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:17:32.473] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Die mentale Blockade ist wirklich gigantisch bei den Tradfi Experten.\nStrategy hat eine Verschuldung von ca. 10 Prozent und sitzt auf 77 Milliarden Dollar Gegenwert an Kapital.\nOhja sie stehen wirklich kurz vor dem Zusammenbruch, genau wie bei den Tesla Hatern. Fällt die Aktie mal ein halbes Jahr kommen die Bären aus ihren Löchern gekrochen.\n\nBuy spot bitcoin. \n\nhttps://blossom.primal.net/4916b79304cf9f29c7b05c52351b6cb455926d146f8ddbc3177cf76e72f3adcb.jpg","created_at":1759429017,"id":"9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"d0b5cabe6f1ec89be40cac0683ad74405cf7fbf4a085c4c4e625804e75256fa46d1d8f134ef7a4232a0021a4d6f1c839a68255bb321b74166261b11152dc4483","tags":[]}] +[14:17:32.533] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Are you sending this message from the boat? \n\n","created_at":1759429013,"id":"e10f5cb3308eafed3138f27e2fe8022a8b80659682050de2d406753251766db5","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"26aea37d06bea586c99f79b750cf0bc66d44592c2502a7f6796aec3af854044a8101743717fcdc531d1ddc9dc78ea0e22c72a45749aae15e7a38d64e9958b090","tags":[["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:17:32.594] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しめない会になっちゃう","created_at":1759429011,"id":"9f4b6831e628cbc631d250bfe72372381bca8bf7e5162de6763b335638f1000e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"558228222ed71fb052c6f24e6eae88eaecddca42731bc3146beffc223bfaf061d89da5bf576b81e3a78f727ecdbd95f00564a32c738280d2372b7fb029e6544d","tags":[]}] +[14:17:32.654] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:32.715] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Roland Häder🇩🇪\",\"about\":\"I love free software, freedom, decentralization and no capitalism. I write with a QWERTZ keyboard but have setup US layout. #BlacklistIsNoRacism #heterosexual #EndFGM #ProDashcam #IloveK1 #SayNoToVVS #SayNoToGenderWoowoo. #fedi22 #IStandWithJKRowling #IStandWithJordanPeterson #IStandWithRileyGaines #SayNoToWoke #IStandWithMaya #StopErasingWomen #ManNotCis #StraightDontFuckWithTrans\",\"picture\":\"https://f.haeder.net/photo/profile/roland.png?ts=1748778962\",\"nip05\":\"roland@f-haeder-net.mostr.pub\",\"fields\":[[\"Factorio\",\"mods.factorio.com/user/roland7…\"],[\"gitlab\",\"gitlab.com/Quix0r\"],[\"Locals (Quix0r)\",\"jameson.locals.com\"],[\"Pronoun\",\"vaginal commander\"],[\"Hometown\",\"Georgsmarienhütte\"],[\"Sex\",\"Male\"],[\"Political views\",\"Center? Hmm: gegenstimme.tv/w/gcCyFYxYUDG5q…\"],[\"Religious views\",\"Atheist\"],[\"Likes\",\"Food: #vegetarian (90%), #vegan (10%)\"],[\"Dislikes\",\"Smoking/drugs, I stopped eating meat since July 2019. Alcohol (even mild) seem to be more disliked than liked. I don't like the taste.\"],[\"Title / description\",\"Administrator of this instance\"],[\"Musical interests\",\"Techno, 90' Dancefloor 90', Psychedelic-/Goa-Trance\"],[\"Books, literature\",\"Documentation books ... \"],[\"Television\",\"X-Files, Knight Rider, Dune (movie), lots of movies where Jason Statham is involved. Maybe something more I forgot?\"],[\"Hobbies/Interests\",\"Programming PHP/Java SE/EE, playing computer games\"],[\"Love / romance\",\"I'm in love with my wife for a longer time now.\"],[\"Work / employment\",\"Unempoyed, not interested in home-office.\"],[\"School / education\",\"Middle school finished, first work training was electrician, then application developer.\"],[\"Contact information and Social Networks\",\"GS: social.mxchange.org/roland\"],[\"Sexuality\",\"Heterosexual (straight)\"],[\"Relationship type\",\"Monogamous\"],[\"OMEMO ID\",\"a7419c8edd4fe01c0b1bc79b3f3a5fbbb589b56098e55dacb02351d73d6e6232\"],[\"GNU Social\",\"social.mxchange.org/roland\"],[\"TwitchTV\",\"twitch.tv/quix0r\"],[\"Steam\",\"steamcommunity.com/id/quix0r/\"],[\"GOG\",\"gog.com/u/Quix0r\"],[\"git.friendi.ca\",\"git.friendi.ca/roland\"],[\"itch.io profile\",\"itch.io/profile/quix0r\"],[\"Codeberg\",\"codeberg.org/roland77\"],[\"BKA.li repositories\",\"code.bka.li/roland77\"],[\"OBS Forum\",\"obsproject.com/forum/members/r…\"],[\"Rumble\",\"rumble.com/user/Quix0r\"],[\"voidpoint.io\",\"voidpoint.io/Quix0r\"]]}","created_at":1759429041,"id":"33e61b67499a154239bc1eca14a328fc775ff67b98339899e7904561a91aaf45","kind":0,"pubkey":"4bb8e4510271817909dcd6e725ef0c0fbdb1e057922fd32b057092af5b7fb39d","sig":"7a6dcd0994f9a9f846898e5906f83334b8e3bc2ca4056d7dc4954990e7734957546f6ff77089afeebf796fac1b97045595a38761e8c4c2ad03095fe4051803d7","tags":[["proxy","https://f.haeder.net/profile/roland","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:32.775] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Monika\",\"about\":\"Autorin. Podcasterin. Leidenschaft für Fotografie, fürs Selbermachen, Reisen & Kochen. Geb. bei 326 ppm CO₂. \\nhttp://absolutanalog.de , http://monismotivklingel.de , http://fiberthermometer.de\\n\\nAvatar made by @anhdres\",\"picture\":\"https://assets.chaos.social/accounts/avatars/000/081/110/original/8bc94cd82624640c.jpeg\",\"banner\":\"https://assets.chaos.social/accounts/headers/000/081/110/original/6b71469f98a3b928.jpeg\",\"nip05\":\"nahlinse@chaos-social.mostr.pub\",\"fields\":[[\"Pronomen\",\"sie/ihr | she/her\"],[\"Privilegien\",\"weiß, cis, abled\"],[\"Beliefs\",\"Trans rights are human rights. 🏳️‍⚧️\\nLove is love 🌈 \\nScience is real 🧪\"]]}","created_at":1759429023,"id":"33257359179a46be05baf28a9cf910d7ea71e247f4685a0179aebce2084247c0","kind":0,"pubkey":"a59d4f9b318bd0750350bea6018ca0d2ca0f4514d083bdfb08cd68d84ae1b6b6","sig":"a728b9fba163c0bfa356975bf83cacf6fa6be158a30e9577bc52af1951f95a46e52d60da5a0a57b2cb66119342b0e8064cd20322f15e6fd8631304d8bd539a2d","tags":[["proxy","https://chaos.social/users/nahlinse","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:32.836] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:32.897] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:32.957] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:33.018] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:33.079] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:33.139] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:33.200] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:33.260] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:17:33.321] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:34.167] RECV nos.lol:443: 75c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","1 +[14:17:34.469] RECV nos.lol:443: 80d6709e42a20428fd381f89ef8d63db"],["p","2355757c6ec5 +[14:17:34.651] RECV nos.lol:443: ecb3f28d54adc14e6e01d016a82986fe153b"],["p","175f568 +[14:17:34.953] RECV nos.lol:443: 06968d8a6459559c249f322fa73464a7"],["p","b7996c183e036df +[14:17:35.929] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:35.929] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:35.929] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:35.929] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:36.080] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Gunstr \nhttps://64.media.tumblr.com/763e3f6787c1541984cf2ae5f24202a8/tumblr_opc34vqUmt1u8a8ydo1_500.jpg \n#army #gun #shotgun #huntress #pistol #knife #knives #soldier #warrior #girls","created_at":1759429052,"id":"e9605e9b843e32b756a7cd40aefe97197cfbfce1a86fd638962e1f0e6a33455f","kind":1,"pubkey":"ac5c59bc3994883bdcd6d8623e6476f0e05ee653997269cc216027859afde5b2","sig":"9023d228bdd25ee9f798cf1b2df6716fd39a8c9b10f95b90838b43bb4e64e45067edeb8b4283460fb71ce6fe728aa5670c35ea437b61512254be007c8dda1c9e","tags":[]}] +[14:17:36.141] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッジボール、小4のとき急にできるようになって、小6あたりでまたダメになった","created_at":1759429051,"id":"c7d4f85b24e25eca175a1a4f3c955d997f915273e31b5d853af04ca325921aef","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c0ed9d29928efd6c699809c389bb0b1745ee8959b524f86f07d46fcd969204cd9909e5eb9f269cfeda4a95e38829df9ddf4cba68f79ba4141e9167b575165198","tags":[]}] +[14:17:36.201] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Australian firm Fitell Corp bought $1.5M worth of PUMP tokens (Solana-based Pumpfun platform) – 216.8M tokens! 🇦🇺 Fitell is shifting from fitness e-commerce to a digital asset treasury & may rebrand as Solana Australia Corp. They also secured $10M for SOL. (TheBlock)\n\n#crypto #blockchain #news ","created_at":1759429048,"id":"4d8ec3953bede23a53caa15e46ea3c2a0c37c2b17a7cd7e9e9eaeda04f8b1d3f","kind":1,"pubkey":"c215990326b98e7fff0ccbc865c159332802d9fd39ffa281ec0f8949bd2a3113","sig":"80dc159b23692f2104aee2d5d1ff0f14d0a403f6159ca760b2d16321ed68c2da4a1a97e3b5e767b72d5ba311208937b23507dc42c31ab9f96d16d7cb07f2ae5c","tags":[]}] +[14:17:36.262] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"友達いないからドッジボールやった記憶がないし、ドッヂボールっていうのも初めて知った","created_at":1759429045,"id":"ff8083e533d78d8e00baaba2f0b8787b695117c02b2d879b495af8e1abea16da","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"93dce48442f77c20349fa32947dd443f0c0453970b55a45edc4dc2215583b19491e76bd4ada89ee698cec7ab5cb88cc31b91d378dccce27ec244bbe8c7e39151","tags":[]}] +[14:17:36.322] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッヂボールは休み時間にできることじゃん","created_at":1759429042,"id":"5967c78e7c6ac09e357aba86de4472c6059c7bb64da9127494737cb9ec0d9c63","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"34025b716da5858d3cccfe8418146a28584c4aa55e2d2bd1ba383d39e60ee7ecb08bcffdec3f433448048967090521b2b87578bc22086bfb1ba3b5ccfaf6edf0","tags":[]}] +[14:17:36.383] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqszqp0sdynnl20c6sajhk2k9spymkwqeclt7f8cxpwesmvss95sejs4jslqt \n\n","created_at":1759429036,"id":"09ed231d2541098a0721bc0b0c94244ea4ef1f7e5b9f088e7c87c652152f659c","kind":1,"pubkey":"668ac389d67f4f4be637f7e567c9054392c080db7c0b257264701ab4048166ff","sig":"aa0b3ce75805f6aaddfc30ef852ff0b5b274f2610a3639420cd08b76ae5e863492dcae99d2f1b51e97ee066e00069aaf38eacea2b39f638b4ff2ccc7ee9b4e1d","tags":[["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.damus.io","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","wss://nostr.einundzwanzig.space/","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","wss://relay.primal.net"],["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://relay.primal.net","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"]]}] +[14:17:36.444] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Streaming: Capsule - 022\n1. Flavien Berger - Mars balnéaire\n2. Flavien Berger - Océan rouge\n3. Radiohead - The National Anthem\n4. ESG - Insane (Tambourine Mix)\n5. TodoTodo - Autogas\n6. MAN 2 MAN - Male Stripper\n7. Laurence Pike - Distant Early Warning\n\nhttps://harmonique.one/shows/capsule/episodes/022 #music #tunestr","created_at":1759429030,"id":"f9cada9cd079d635baf1a73ff96be76a860fbf443e0c2d8f219058db929d0d90","kind":1,"pubkey":"f3f5992cdb39e6108768d543fbd384a11efc3713085617ee28932ebb1614e07c","sig":"2ee481a20b9f8d9c945496b73ef7fc6d001614b8da998879bb40332bf7b3df88bc8b7c228d80293d51ddfa9956fd58d8c5ee05703d5daaa64aaab896a4bc6711","tags":[]}] +[14:17:36.504] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Then suddenly ","created_at":1759429027,"id":"1200b11ef7bbf66439e12b59fb932e0be6b157285f2b4d836fb2ae8cb34d19c7","kind":1,"pubkey":"f5c7f59077d030f94bc03ab7be1a0ef0c1fce1a3f9f5fa2b8b0a5db96295890c","sig":"e9e96171ac2123a6526a3505525fdeeac5e7be044fecc1c5348b563566ec528abd8a7a63bf9621331b75c6e1d005dfa733cf35fdd2c4ce198c35c79c4102d2d2","tags":[["e","d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:17:36.565] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Die mentale Blockade ist wirklich gigantisch bei den Tradfi Experten.\nStrategy hat eine Verschuldung von ca. 10 Prozent und sitzt auf 77 Milliarden Dollar Gegenwert an Kapital.\nOhja sie stehen wirklich kurz vor dem Zusammenbruch, genau wie bei den Tesla Hatern. Fällt die Aktie mal ein halbes Jahr kommen die Bären aus ihren Löchern gekrochen.\n\nBuy spot bitcoin. \n\nhttps://blossom.primal.net/4916b79304cf9f29c7b05c52351b6cb455926d146f8ddbc3177cf76e72f3adcb.jpg","created_at":1759429017,"id":"9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"d0b5cabe6f1ec89be40cac0683ad74405cf7fbf4a085c4c4e625804e75256fa46d1d8f134ef7a4232a0021a4d6f1c839a68255bb321b74166261b11152dc4483","tags":[]}] +[14:17:36.625] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Are you sending this message from the boat? \n\n","created_at":1759429013,"id":"e10f5cb3308eafed3138f27e2fe8022a8b80659682050de2d406753251766db5","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"26aea37d06bea586c99f79b750cf0bc66d44592c2502a7f6796aec3af854044a8101743717fcdc531d1ddc9dc78ea0e22c72a45749aae15e7a38d64e9958b090","tags":[["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:17:36.686] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:36.746] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Roland Häder🇩🇪\",\"about\":\"I love free software, freedom, decentralization and no capitalism. I write with a QWERTZ keyboard but have setup US layout. #BlacklistIsNoRacism #heterosexual #EndFGM #ProDashcam #IloveK1 #SayNoToVVS #SayNoToGenderWoowoo. #fedi22 #IStandWithJKRowling #IStandWithJordanPeterson #IStandWithRileyGaines #SayNoToWoke #IStandWithMaya #StopErasingWomen #ManNotCis #StraightDontFuckWithTrans\",\"picture\":\"https://f.haeder.net/photo/profile/roland.png?ts=1748778962\",\"nip05\":\"roland@f-haeder-net.mostr.pub\",\"fields\":[[\"Factorio\",\"mods.factorio.com/user/roland7…\"],[\"gitlab\",\"gitlab.com/Quix0r\"],[\"Locals (Quix0r)\",\"jameson.locals.com\"],[\"Pronoun\",\"vaginal commander\"],[\"Hometown\",\"Georgsmarienhütte\"],[\"Sex\",\"Male\"],[\"Political views\",\"Center? Hmm: gegenstimme.tv/w/gcCyFYxYUDG5q…\"],[\"Religious views\",\"Atheist\"],[\"Likes\",\"Food: #vegetarian (90%), #vegan (10%)\"],[\"Dislikes\",\"Smoking/drugs, I stopped eating meat since July 2019. Alcohol (even mild) seem to be more disliked than liked. I don't like the taste.\"],[\"Title / description\",\"Administrator of this instance\"],[\"Musical interests\",\"Techno, 90' Dancefloor 90', Psychedelic-/Goa-Trance\"],[\"Books, literature\",\"Documentation books ... \"],[\"Television\",\"X-Files, Knight Rider, Dune (movie), lots of movies where Jason Statham is involved. Maybe something more I forgot?\"],[\"Hobbies/Interests\",\"Programming PHP/Java SE/EE, playing computer games\"],[\"Love / romance\",\"I'm in love with my wife for a longer time now.\"],[\"Work / employment\",\"Unempoyed, not interested in home-office.\"],[\"School / education\",\"Middle school finished, first work training was electrician, then application developer.\"],[\"Contact information and Social Networks\",\"GS: social.mxchange.org/roland\"],[\"Sexuality\",\"Heterosexual (straight)\"],[\"Relationship type\",\"Monogamous\"],[\"OMEMO ID\",\"a7419c8edd4fe01c0b1bc79b3f3a5fbbb589b56098e55dacb02351d73d6e6232\"],[\"GNU Social\",\"social.mxchange.org/roland\"],[\"TwitchTV\",\"twitch.tv/quix0r\"],[\"Steam\",\"steamcommunity.com/id/quix0r/\"],[\"GOG\",\"gog.com/u/Quix0r\"],[\"git.friendi.ca\",\"git.friendi.ca/roland\"],[\"itch.io profile\",\"itch.io/profile/quix0r\"],[\"Codeberg\",\"codeberg.org/roland77\"],[\"BKA.li repositories\",\"code.bka.li/roland77\"],[\"OBS Forum\",\"obsproject.com/forum/members/r…\"],[\"Rumble\",\"rumble.com/user/Quix0r\"],[\"voidpoint.io\",\"voidpoint.io/Quix0r\"]]}","created_at":1759429041,"id":"33e61b67499a154239bc1eca14a328fc775ff67b98339899e7904561a91aaf45","kind":0,"pubkey":"4bb8e4510271817909dcd6e725ef0c0fbdb1e057922fd32b057092af5b7fb39d","sig":"7a6dcd0994f9a9f846898e5906f83334b8e3bc2ca4056d7dc4954990e7734957546f6ff77089afeebf796fac1b97045595a38761e8c4c2ad03095fe4051803d7","tags":[["proxy","https://f.haeder.net/profile/roland","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:36.807] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Monika\",\"about\":\"Autorin. Podcasterin. Leidenschaft für Fotografie, fürs Selbermachen, Reisen & Kochen. Geb. bei 326 ppm CO₂. \\nhttp://absolutanalog.de , http://monismotivklingel.de , http://fiberthermometer.de\\n\\nAvatar made by @anhdres\",\"picture\":\"https://assets.chaos.social/accounts/avatars/000/081/110/original/8bc94cd82624640c.jpeg\",\"banner\":\"https://assets.chaos.social/accounts/headers/000/081/110/original/6b71469f98a3b928.jpeg\",\"nip05\":\"nahlinse@chaos-social.mostr.pub\",\"fields\":[[\"Pronomen\",\"sie/ihr | she/her\"],[\"Privilegien\",\"weiß, cis, abled\"],[\"Beliefs\",\"Trans rights are human rights. 🏳️‍⚧️\\nLove is love 🌈 \\nScience is real 🧪\"]]}","created_at":1759429023,"id":"33257359179a46be05baf28a9cf910d7ea71e247f4685a0179aebce2084247c0","kind":0,"pubkey":"a59d4f9b318bd0750350bea6018ca0d2ca0f4514d083bdfb08cd68d84ae1b6b6","sig":"a728b9fba163c0bfa356975bf83cacf6fa6be158a30e9577bc52af1951f95a46e52d60da5a0a57b2cb66119342b0e8064cd20322f15e6fd8631304d8bd539a2d","tags":[["proxy","https://chaos.social/users/nahlinse","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:36.868] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:36.928] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:36.989] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:37.049] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:37.110] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:37.136] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:37.196] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:37.257] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:17:37.317] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:38.163] RECV nos.lol:443: 75c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","1 +[14:17:38.465] RECV nos.lol:443: 80d6709e42a20428fd381f89ef8d63db"],["p","2355757c6ec5 +[14:17:38.646] RECV nos.lol:443: ecb3f28d54adc14e6e01d016a82986fe153b"],["p","175f568 +[14:17:38.948] RECV nos.lol:443: 06968d8a6459559c249f322fa73464a7"],["p","b7996c183e036df +[14:17:39.920] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:39.920] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:39.920] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:39.920] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:40.071] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"どっちボールですか?(大爆笑)","created_at":1759429059,"id":"a116bdde6bfe6efa79e90f651755d1cfa243418b3170bf4e4fdb55919da548a9","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"ed3b10708a86c10485dd8c042be74c937a793d25c9e4da74dd93087e940ecc9004911f019b5cfa7d15bea56d6d31cdd5b92f252157a69cc88d3239b5bf23139f","tags":[]}] +[14:17:40.132] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Gunstr \nhttps://64.media.tumblr.com/763e3f6787c1541984cf2ae5f24202a8/tumblr_opc34vqUmt1u8a8ydo1_500.jpg \n#army #gun #shotgun #huntress #pistol #knife #knives #soldier #warrior #girls","created_at":1759429052,"id":"e9605e9b843e32b756a7cd40aefe97197cfbfce1a86fd638962e1f0e6a33455f","kind":1,"pubkey":"ac5c59bc3994883bdcd6d8623e6476f0e05ee653997269cc216027859afde5b2","sig":"9023d228bdd25ee9f798cf1b2df6716fd39a8c9b10f95b90838b43bb4e64e45067edeb8b4283460fb71ce6fe728aa5670c35ea437b61512254be007c8dda1c9e","tags":[]}] +[14:17:40.193] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッジボール、小4のとき急にできるようになって、小6あたりでまたダメになった","created_at":1759429051,"id":"c7d4f85b24e25eca175a1a4f3c955d997f915273e31b5d853af04ca325921aef","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c0ed9d29928efd6c699809c389bb0b1745ee8959b524f86f07d46fcd969204cd9909e5eb9f269cfeda4a95e38829df9ddf4cba68f79ba4141e9167b575165198","tags":[]}] +[14:17:40.253] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Australian firm Fitell Corp bought $1.5M worth of PUMP tokens (Solana-based Pumpfun platform) – 216.8M tokens! 🇦🇺 Fitell is shifting from fitness e-commerce to a digital asset treasury & may rebrand as Solana Australia Corp. They also secured $10M for SOL. (TheBlock)\n\n#crypto #blockchain #news ","created_at":1759429048,"id":"4d8ec3953bede23a53caa15e46ea3c2a0c37c2b17a7cd7e9e9eaeda04f8b1d3f","kind":1,"pubkey":"c215990326b98e7fff0ccbc865c159332802d9fd39ffa281ec0f8949bd2a3113","sig":"80dc159b23692f2104aee2d5d1ff0f14d0a403f6159ca760b2d16321ed68c2da4a1a97e3b5e767b72d5ba311208937b23507dc42c31ab9f96d16d7cb07f2ae5c","tags":[]}] +[14:17:40.314] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"友達いないからドッジボールやった記憶がないし、ドッヂボールっていうのも初めて知った","created_at":1759429045,"id":"ff8083e533d78d8e00baaba2f0b8787b695117c02b2d879b495af8e1abea16da","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"93dce48442f77c20349fa32947dd443f0c0453970b55a45edc4dc2215583b19491e76bd4ada89ee698cec7ab5cb88cc31b91d378dccce27ec244bbe8c7e39151","tags":[]}] +[14:17:40.374] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッヂボールは休み時間にできることじゃん","created_at":1759429042,"id":"5967c78e7c6ac09e357aba86de4472c6059c7bb64da9127494737cb9ec0d9c63","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"34025b716da5858d3cccfe8418146a28584c4aa55e2d2bd1ba383d39e60ee7ecb08bcffdec3f433448048967090521b2b87578bc22086bfb1ba3b5ccfaf6edf0","tags":[]}] +[14:17:40.435] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqszqp0sdynnl20c6sajhk2k9spymkwqeclt7f8cxpwesmvss95sejs4jslqt \n\n","created_at":1759429036,"id":"09ed231d2541098a0721bc0b0c94244ea4ef1f7e5b9f088e7c87c652152f659c","kind":1,"pubkey":"668ac389d67f4f4be637f7e567c9054392c080db7c0b257264701ab4048166ff","sig":"aa0b3ce75805f6aaddfc30ef852ff0b5b274f2610a3639420cd08b76ae5e863492dcae99d2f1b51e97ee066e00069aaf38eacea2b39f638b4ff2ccc7ee9b4e1d","tags":[["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.damus.io","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","wss://nostr.einundzwanzig.space/","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","wss://relay.primal.net"],["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://relay.primal.net","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"]]}] +[14:17:40.495] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Streaming: Capsule - 022\n1. Flavien Berger - Mars balnéaire\n2. Flavien Berger - Océan rouge\n3. Radiohead - The National Anthem\n4. ESG - Insane (Tambourine Mix)\n5. TodoTodo - Autogas\n6. MAN 2 MAN - Male Stripper\n7. Laurence Pike - Distant Early Warning\n\nhttps://harmonique.one/shows/capsule/episodes/022 #music #tunestr","created_at":1759429030,"id":"f9cada9cd079d635baf1a73ff96be76a860fbf443e0c2d8f219058db929d0d90","kind":1,"pubkey":"f3f5992cdb39e6108768d543fbd384a11efc3713085617ee28932ebb1614e07c","sig":"2ee481a20b9f8d9c945496b73ef7fc6d001614b8da998879bb40332bf7b3df88bc8b7c228d80293d51ddfa9956fd58d8c5ee05703d5daaa64aaab896a4bc6711","tags":[]}] +[14:17:40.556] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Then suddenly ","created_at":1759429027,"id":"1200b11ef7bbf66439e12b59fb932e0be6b157285f2b4d836fb2ae8cb34d19c7","kind":1,"pubkey":"f5c7f59077d030f94bc03ab7be1a0ef0c1fce1a3f9f5fa2b8b0a5db96295890c","sig":"e9e96171ac2123a6526a3505525fdeeac5e7be044fecc1c5348b563566ec528abd8a7a63bf9621331b75c6e1d005dfa733cf35fdd2c4ce198c35c79c4102d2d2","tags":[["e","d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:17:40.616] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Die mentale Blockade ist wirklich gigantisch bei den Tradfi Experten.\nStrategy hat eine Verschuldung von ca. 10 Prozent und sitzt auf 77 Milliarden Dollar Gegenwert an Kapital.\nOhja sie stehen wirklich kurz vor dem Zusammenbruch, genau wie bei den Tesla Hatern. Fällt die Aktie mal ein halbes Jahr kommen die Bären aus ihren Löchern gekrochen.\n\nBuy spot bitcoin. \n\nhttps://blossom.primal.net/4916b79304cf9f29c7b05c52351b6cb455926d146f8ddbc3177cf76e72f3adcb.jpg","created_at":1759429017,"id":"9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"d0b5cabe6f1ec89be40cac0683ad74405cf7fbf4a085c4c4e625804e75256fa46d1d8f134ef7a4232a0021a4d6f1c839a68255bb321b74166261b11152dc4483","tags":[]}] +[14:17:40.677] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:40.737] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Martijn Braam\",\"about\":\"Opensource software developer for OpenSwitcher. Sometimes makes some random hardware.\\n\\nSlowly getting closer to being a full time FOSS developer :D\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/000/061/783/original/e8cc9a5332e74811.jpg\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/000/061/783/original/86bb5220a349cf5a.jpg\",\"nip05\":\"martijnbraam@fosstodon-org.mostr.pub\",\"fields\":[[\"Blog\",\"https://blog.brixit.nl/\"],[\"Patreon\",\"https://www.patreon.com/martijnbraam\"],[\"Liberapay\",\"https://liberapay.com/MartijnBraam/\"],[\"Peertube\",\"https://spacepub.space/c/martijnbraam/videos\"]]}","created_at":1759429055,"id":"650e770c1972ad5c362c75a1b7f362103371fbe008b1bd066f7db80a1de24aed","kind":0,"pubkey":"579852afc54f2f4b992d5c48441d63f6545c530a7371764b6e67325d585ea6a1","sig":"f3cf7c0e189465581eb4aa32593cfb11e385d043a009bdb4ca0157d6442006416743ae6f4c872bfac324d3802d295a470852645fb38f103963c8c3d74827457a","tags":[["proxy","https://fosstodon.org/users/martijnbraam","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:40.798] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Roland Häder🇩🇪\",\"about\":\"I love free software, freedom, decentralization and no capitalism. I write with a QWERTZ keyboard but have setup US layout. #BlacklistIsNoRacism #heterosexual #EndFGM #ProDashcam #IloveK1 #SayNoToVVS #SayNoToGenderWoowoo. #fedi22 #IStandWithJKRowling #IStandWithJordanPeterson #IStandWithRileyGaines #SayNoToWoke #IStandWithMaya #StopErasingWomen #ManNotCis #StraightDontFuckWithTrans\",\"picture\":\"https://f.haeder.net/photo/profile/roland.png?ts=1748778962\",\"nip05\":\"roland@f-haeder-net.mostr.pub\",\"fields\":[[\"Factorio\",\"mods.factorio.com/user/roland7…\"],[\"gitlab\",\"gitlab.com/Quix0r\"],[\"Locals (Quix0r)\",\"jameson.locals.com\"],[\"Pronoun\",\"vaginal commander\"],[\"Hometown\",\"Georgsmarienhütte\"],[\"Sex\",\"Male\"],[\"Political views\",\"Center? Hmm: gegenstimme.tv/w/gcCyFYxYUDG5q…\"],[\"Religious views\",\"Atheist\"],[\"Likes\",\"Food: #vegetarian (90%), #vegan (10%)\"],[\"Dislikes\",\"Smoking/drugs, I stopped eating meat since July 2019. Alcohol (even mild) seem to be more disliked than liked. I don't like the taste.\"],[\"Title / description\",\"Administrator of this instance\"],[\"Musical interests\",\"Techno, 90' Dancefloor 90', Psychedelic-/Goa-Trance\"],[\"Books, literature\",\"Documentation books ... \"],[\"Television\",\"X-Files, Knight Rider, Dune (movie), lots of movies where Jason Statham is involved. Maybe something more I forgot?\"],[\"Hobbies/Interests\",\"Programming PHP/Java SE/EE, playing computer games\"],[\"Love / romance\",\"I'm in love with my wife for a longer time now.\"],[\"Work / employment\",\"Unempoyed, not interested in home-office.\"],[\"School / education\",\"Middle school finished, first work training was electrician, then application developer.\"],[\"Contact information and Social Networks\",\"GS: social.mxchange.org/roland\"],[\"Sexuality\",\"Heterosexual (straight)\"],[\"Relationship type\",\"Monogamous\"],[\"OMEMO ID\",\"a7419c8edd4fe01c0b1bc79b3f3a5fbbb589b56098e55dacb02351d73d6e6232\"],[\"GNU Social\",\"social.mxchange.org/roland\"],[\"TwitchTV\",\"twitch.tv/quix0r\"],[\"Steam\",\"steamcommunity.com/id/quix0r/\"],[\"GOG\",\"gog.com/u/Quix0r\"],[\"git.friendi.ca\",\"git.friendi.ca/roland\"],[\"itch.io profile\",\"itch.io/profile/quix0r\"],[\"Codeberg\",\"codeberg.org/roland77\"],[\"BKA.li repositories\",\"code.bka.li/roland77\"],[\"OBS Forum\",\"obsproject.com/forum/members/r…\"],[\"Rumble\",\"rumble.com/user/Quix0r\"],[\"voidpoint.io\",\"voidpoint.io/Quix0r\"]]}","created_at":1759429041,"id":"33e61b67499a154239bc1eca14a328fc775ff67b98339899e7904561a91aaf45","kind":0,"pubkey":"4bb8e4510271817909dcd6e725ef0c0fbdb1e057922fd32b057092af5b7fb39d","sig":"7a6dcd0994f9a9f846898e5906f83334b8e3bc2ca4056d7dc4954990e7734957546f6ff77089afeebf796fac1b97045595a38761e8c4c2ad03095fe4051803d7","tags":[["proxy","https://f.haeder.net/profile/roland","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:40.859] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Monika\",\"about\":\"Autorin. Podcasterin. Leidenschaft für Fotografie, fürs Selbermachen, Reisen & Kochen. Geb. bei 326 ppm CO₂. \\nhttp://absolutanalog.de , http://monismotivklingel.de , http://fiberthermometer.de\\n\\nAvatar made by @anhdres\",\"picture\":\"https://assets.chaos.social/accounts/avatars/000/081/110/original/8bc94cd82624640c.jpeg\",\"banner\":\"https://assets.chaos.social/accounts/headers/000/081/110/original/6b71469f98a3b928.jpeg\",\"nip05\":\"nahlinse@chaos-social.mostr.pub\",\"fields\":[[\"Pronomen\",\"sie/ihr | she/her\"],[\"Privilegien\",\"weiß, cis, abled\"],[\"Beliefs\",\"Trans rights are human rights. 🏳️‍⚧️\\nLove is love 🌈 \\nScience is real 🧪\"]]}","created_at":1759429023,"id":"33257359179a46be05baf28a9cf910d7ea71e247f4685a0179aebce2084247c0","kind":0,"pubkey":"a59d4f9b318bd0750350bea6018ca0d2ca0f4514d083bdfb08cd68d84ae1b6b6","sig":"a728b9fba163c0bfa356975bf83cacf6fa6be158a30e9577bc52af1951f95a46e52d60da5a0a57b2cb66119342b0e8064cd20322f15e6fd8631304d8bd539a2d","tags":[["proxy","https://chaos.social/users/nahlinse","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:40.919] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:40.980] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:41.040] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:41.101] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:41.161] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:41.222] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:41.282] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:41.343] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:42.154] RECV nos.lol:443: 75c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","1 +[14:17:42.456] RECV nos.lol:443: 80d6709e42a20428fd381f89ef8d63db"],["p","2355757c6ec5 +[14:17:42.637] RECV nos.lol:443: ecb3f28d54adc14e6e01d016a82986fe153b"],["p","175f568 +[14:17:42.939] RECV nos.lol:443: 06968d8a6459559c249f322fa73464a7"],["p","b7996c183e036df +[14:17:43.915] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:43.915] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:43.915] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:43.915] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:44.067] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"どっちボールですか?(大爆笑)","created_at":1759429059,"id":"a116bdde6bfe6efa79e90f651755d1cfa243418b3170bf4e4fdb55919da548a9","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"ed3b10708a86c10485dd8c042be74c937a793d25c9e4da74dd93087e940ecc9004911f019b5cfa7d15bea56d6d31cdd5b92f252157a69cc88d3239b5bf23139f","tags":[]}] +[14:17:44.127] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Gunstr \nhttps://64.media.tumblr.com/763e3f6787c1541984cf2ae5f24202a8/tumblr_opc34vqUmt1u8a8ydo1_500.jpg \n#army #gun #shotgun #huntress #pistol #knife #knives #soldier #warrior #girls","created_at":1759429052,"id":"e9605e9b843e32b756a7cd40aefe97197cfbfce1a86fd638962e1f0e6a33455f","kind":1,"pubkey":"ac5c59bc3994883bdcd6d8623e6476f0e05ee653997269cc216027859afde5b2","sig":"9023d228bdd25ee9f798cf1b2df6716fd39a8c9b10f95b90838b43bb4e64e45067edeb8b4283460fb71ce6fe728aa5670c35ea437b61512254be007c8dda1c9e","tags":[]}] +[14:17:44.187] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッジボール、小4のとき急にできるようになって、小6あたりでまたダメになった","created_at":1759429051,"id":"c7d4f85b24e25eca175a1a4f3c955d997f915273e31b5d853af04ca325921aef","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c0ed9d29928efd6c699809c389bb0b1745ee8959b524f86f07d46fcd969204cd9909e5eb9f269cfeda4a95e38829df9ddf4cba68f79ba4141e9167b575165198","tags":[]}] +[14:17:44.248] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Australian firm Fitell Corp bought $1.5M worth of PUMP tokens (Solana-based Pumpfun platform) – 216.8M tokens! 🇦🇺 Fitell is shifting from fitness e-commerce to a digital asset treasury & may rebrand as Solana Australia Corp. They also secured $10M for SOL. (TheBlock)\n\n#crypto #blockchain #news ","created_at":1759429048,"id":"4d8ec3953bede23a53caa15e46ea3c2a0c37c2b17a7cd7e9e9eaeda04f8b1d3f","kind":1,"pubkey":"c215990326b98e7fff0ccbc865c159332802d9fd39ffa281ec0f8949bd2a3113","sig":"80dc159b23692f2104aee2d5d1ff0f14d0a403f6159ca760b2d16321ed68c2da4a1a97e3b5e767b72d5ba311208937b23507dc42c31ab9f96d16d7cb07f2ae5c","tags":[]}] +[14:17:44.309] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"友達いないからドッジボールやった記憶がないし、ドッヂボールっていうのも初めて知った","created_at":1759429045,"id":"ff8083e533d78d8e00baaba2f0b8787b695117c02b2d879b495af8e1abea16da","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"93dce48442f77c20349fa32947dd443f0c0453970b55a45edc4dc2215583b19491e76bd4ada89ee698cec7ab5cb88cc31b91d378dccce27ec244bbe8c7e39151","tags":[]}] +[14:17:44.369] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッヂボールは休み時間にできることじゃん","created_at":1759429042,"id":"5967c78e7c6ac09e357aba86de4472c6059c7bb64da9127494737cb9ec0d9c63","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"34025b716da5858d3cccfe8418146a28584c4aa55e2d2bd1ba383d39e60ee7ecb08bcffdec3f433448048967090521b2b87578bc22086bfb1ba3b5ccfaf6edf0","tags":[]}] +[14:17:44.429] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqszqp0sdynnl20c6sajhk2k9spymkwqeclt7f8cxpwesmvss95sejs4jslqt \n\n","created_at":1759429036,"id":"09ed231d2541098a0721bc0b0c94244ea4ef1f7e5b9f088e7c87c652152f659c","kind":1,"pubkey":"668ac389d67f4f4be637f7e567c9054392c080db7c0b257264701ab4048166ff","sig":"aa0b3ce75805f6aaddfc30ef852ff0b5b274f2610a3639420cd08b76ae5e863492dcae99d2f1b51e97ee066e00069aaf38eacea2b39f638b4ff2ccc7ee9b4e1d","tags":[["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.damus.io","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","wss://nostr.einundzwanzig.space/","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","wss://relay.primal.net"],["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://relay.primal.net","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"]]}] +[14:17:44.490] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Streaming: Capsule - 022\n1. Flavien Berger - Mars balnéaire\n2. Flavien Berger - Océan rouge\n3. Radiohead - The National Anthem\n4. ESG - Insane (Tambourine Mix)\n5. TodoTodo - Autogas\n6. MAN 2 MAN - Male Stripper\n7. Laurence Pike - Distant Early Warning\n\nhttps://harmonique.one/shows/capsule/episodes/022 #music #tunestr","created_at":1759429030,"id":"f9cada9cd079d635baf1a73ff96be76a860fbf443e0c2d8f219058db929d0d90","kind":1,"pubkey":"f3f5992cdb39e6108768d543fbd384a11efc3713085617ee28932ebb1614e07c","sig":"2ee481a20b9f8d9c945496b73ef7fc6d001614b8da998879bb40332bf7b3df88bc8b7c228d80293d51ddfa9956fd58d8c5ee05703d5daaa64aaab896a4bc6711","tags":[]}] +[14:17:44.550] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Then suddenly ","created_at":1759429027,"id":"1200b11ef7bbf66439e12b59fb932e0be6b157285f2b4d836fb2ae8cb34d19c7","kind":1,"pubkey":"f5c7f59077d030f94bc03ab7be1a0ef0c1fce1a3f9f5fa2b8b0a5db96295890c","sig":"e9e96171ac2123a6526a3505525fdeeac5e7be044fecc1c5348b563566ec528abd8a7a63bf9621331b75c6e1d005dfa733cf35fdd2c4ce198c35c79c4102d2d2","tags":[["e","d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:17:44.611] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Die mentale Blockade ist wirklich gigantisch bei den Tradfi Experten.\nStrategy hat eine Verschuldung von ca. 10 Prozent und sitzt auf 77 Milliarden Dollar Gegenwert an Kapital.\nOhja sie stehen wirklich kurz vor dem Zusammenbruch, genau wie bei den Tesla Hatern. Fällt die Aktie mal ein halbes Jahr kommen die Bären aus ihren Löchern gekrochen.\n\nBuy spot bitcoin. \n\nhttps://blossom.primal.net/4916b79304cf9f29c7b05c52351b6cb455926d146f8ddbc3177cf76e72f3adcb.jpg","created_at":1759429017,"id":"9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"d0b5cabe6f1ec89be40cac0683ad74405cf7fbf4a085c4c4e625804e75256fa46d1d8f134ef7a4232a0021a4d6f1c839a68255bb321b74166261b11152dc4483","tags":[]}] +[14:17:44.671] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:44.732] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Martijn Braam\",\"about\":\"Opensource software developer for OpenSwitcher. Sometimes makes some random hardware.\\n\\nSlowly getting closer to being a full time FOSS developer :D\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/000/061/783/original/e8cc9a5332e74811.jpg\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/000/061/783/original/86bb5220a349cf5a.jpg\",\"nip05\":\"martijnbraam@fosstodon-org.mostr.pub\",\"fields\":[[\"Blog\",\"https://blog.brixit.nl/\"],[\"Patreon\",\"https://www.patreon.com/martijnbraam\"],[\"Liberapay\",\"https://liberapay.com/MartijnBraam/\"],[\"Peertube\",\"https://spacepub.space/c/martijnbraam/videos\"]]}","created_at":1759429055,"id":"650e770c1972ad5c362c75a1b7f362103371fbe008b1bd066f7db80a1de24aed","kind":0,"pubkey":"579852afc54f2f4b992d5c48441d63f6545c530a7371764b6e67325d585ea6a1","sig":"f3cf7c0e189465581eb4aa32593cfb11e385d043a009bdb4ca0157d6442006416743ae6f4c872bfac324d3802d295a470852645fb38f103963c8c3d74827457a","tags":[["proxy","https://fosstodon.org/users/martijnbraam","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:44.792] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Roland Häder🇩🇪\",\"about\":\"I love free software, freedom, decentralization and no capitalism. I write with a QWERTZ keyboard but have setup US layout. #BlacklistIsNoRacism #heterosexual #EndFGM #ProDashcam #IloveK1 #SayNoToVVS #SayNoToGenderWoowoo. #fedi22 #IStandWithJKRowling #IStandWithJordanPeterson #IStandWithRileyGaines #SayNoToWoke #IStandWithMaya #StopErasingWomen #ManNotCis #StraightDontFuckWithTrans\",\"picture\":\"https://f.haeder.net/photo/profile/roland.png?ts=1748778962\",\"nip05\":\"roland@f-haeder-net.mostr.pub\",\"fields\":[[\"Factorio\",\"mods.factorio.com/user/roland7…\"],[\"gitlab\",\"gitlab.com/Quix0r\"],[\"Locals (Quix0r)\",\"jameson.locals.com\"],[\"Pronoun\",\"vaginal commander\"],[\"Hometown\",\"Georgsmarienhütte\"],[\"Sex\",\"Male\"],[\"Political views\",\"Center? Hmm: gegenstimme.tv/w/gcCyFYxYUDG5q…\"],[\"Religious views\",\"Atheist\"],[\"Likes\",\"Food: #vegetarian (90%), #vegan (10%)\"],[\"Dislikes\",\"Smoking/drugs, I stopped eating meat since July 2019. Alcohol (even mild) seem to be more disliked than liked. I don't like the taste.\"],[\"Title / description\",\"Administrator of this instance\"],[\"Musical interests\",\"Techno, 90' Dancefloor 90', Psychedelic-/Goa-Trance\"],[\"Books, literature\",\"Documentation books ... \"],[\"Television\",\"X-Files, Knight Rider, Dune (movie), lots of movies where Jason Statham is involved. Maybe something more I forgot?\"],[\"Hobbies/Interests\",\"Programming PHP/Java SE/EE, playing computer games\"],[\"Love / romance\",\"I'm in love with my wife for a longer time now.\"],[\"Work / employment\",\"Unempoyed, not interested in home-office.\"],[\"School / education\",\"Middle school finished, first work training was electrician, then application developer.\"],[\"Contact information and Social Networks\",\"GS: social.mxchange.org/roland\"],[\"Sexuality\",\"Heterosexual (straight)\"],[\"Relationship type\",\"Monogamous\"],[\"OMEMO ID\",\"a7419c8edd4fe01c0b1bc79b3f3a5fbbb589b56098e55dacb02351d73d6e6232\"],[\"GNU Social\",\"social.mxchange.org/roland\"],[\"TwitchTV\",\"twitch.tv/quix0r\"],[\"Steam\",\"steamcommunity.com/id/quix0r/\"],[\"GOG\",\"gog.com/u/Quix0r\"],[\"git.friendi.ca\",\"git.friendi.ca/roland\"],[\"itch.io profile\",\"itch.io/profile/quix0r\"],[\"Codeberg\",\"codeberg.org/roland77\"],[\"BKA.li repositories\",\"code.bka.li/roland77\"],[\"OBS Forum\",\"obsproject.com/forum/members/r…\"],[\"Rumble\",\"rumble.com/user/Quix0r\"],[\"voidpoint.io\",\"voidpoint.io/Quix0r\"]]}","created_at":1759429041,"id":"33e61b67499a154239bc1eca14a328fc775ff67b98339899e7904561a91aaf45","kind":0,"pubkey":"4bb8e4510271817909dcd6e725ef0c0fbdb1e057922fd32b057092af5b7fb39d","sig":"7a6dcd0994f9a9f846898e5906f83334b8e3bc2ca4056d7dc4954990e7734957546f6ff77089afeebf796fac1b97045595a38761e8c4c2ad03095fe4051803d7","tags":[["proxy","https://f.haeder.net/profile/roland","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:44.853] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Monika\",\"about\":\"Autorin. Podcasterin. Leidenschaft für Fotografie, fürs Selbermachen, Reisen & Kochen. Geb. bei 326 ppm CO₂. \\nhttp://absolutanalog.de , http://monismotivklingel.de , http://fiberthermometer.de\\n\\nAvatar made by @anhdres\",\"picture\":\"https://assets.chaos.social/accounts/avatars/000/081/110/original/8bc94cd82624640c.jpeg\",\"banner\":\"https://assets.chaos.social/accounts/headers/000/081/110/original/6b71469f98a3b928.jpeg\",\"nip05\":\"nahlinse@chaos-social.mostr.pub\",\"fields\":[[\"Pronomen\",\"sie/ihr | she/her\"],[\"Privilegien\",\"weiß, cis, abled\"],[\"Beliefs\",\"Trans rights are human rights. 🏳️‍⚧️\\nLove is love 🌈 \\nScience is real 🧪\"]]}","created_at":1759429023,"id":"33257359179a46be05baf28a9cf910d7ea71e247f4685a0179aebce2084247c0","kind":0,"pubkey":"a59d4f9b318bd0750350bea6018ca0d2ca0f4514d083bdfb08cd68d84ae1b6b6","sig":"a728b9fba163c0bfa356975bf83cacf6fa6be158a30e9577bc52af1951f95a46e52d60da5a0a57b2cb66119342b0e8064cd20322f15e6fd8631304d8bd539a2d","tags":[["proxy","https://chaos.social/users/nahlinse","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:44.914] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:44.974] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:45.035] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:45.095] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:45.156] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:45.216] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:45.277] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:45.337] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:46.244] RECV nos.lol:443: 86e1bb9ccdf2cf0f4ebeaccb"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11 +[14:17:47.518] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:47.519] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:47.519] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:47.519] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:47.670] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://media.tenor.com/VEsTykf0RaQAAAAC/jim-carrey-dumb-and-dumber.gif","created_at":1759429065,"id":"d5f6473df92d56f5660aeca23a941c61e62faee14630bb5b819de80df7883730","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"04a7b60d42baff51f1ba96ea31ccc4d8c65eb7b00dd7cfbefff20fc8ef48e7bbef6dde8da6fdd47da03c183afcf2ce44ab4afad5f33dec420bcfc186eab4dc25","tags":[["alt","A short note: https://media.tenor.com/VEsTykf0RaQAAAAC/jim-carre..."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","wss://relay.damus.io/","reply","f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","wss://chadf.nostr1.com/"],["r","https://media.tenor.com/VEsTykf0RaQAAAAC/jim-carrey-dumb-and-dumber.gif"]]}] +[14:17:47.680] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Very cool, have been looking for this exact thing. Would love to see the app in nostr:nprofile1qqs83nn04fezvsu89p8xg7axjwye2u67errat3dx2um725fs7qnrqlgpz4mhxue69uhhyetvv9ujuerpd46hxtnfduhs79prlk and Nostr login added for sync.","created_at":1759429065,"id":"a90f660df1eec69d7cf933bc6f8d8f3b11cac236f99acb89d281a5a3c010bacc","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"f07f16d909cf36ea3d05a81e7569cef2daf36b42802c69437cb0662dddfd0662225a26554973d52b152f64615364a056ab13567765d6c1818f3c787f40412642","tags":[["alt","A short note: Very cool, have been looking for this exact thing...."],["e","eb36520ff53038b02f7ce86c8f00e4548c2a07376d463010829ba9695609e3c5","wss://premium.primal.net/","root","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9","wss://relay.primal.net/"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/"]]}] +[14:17:47.741] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"どっちボールですか?(大爆笑)","created_at":1759429059,"id":"a116bdde6bfe6efa79e90f651755d1cfa243418b3170bf4e4fdb55919da548a9","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"ed3b10708a86c10485dd8c042be74c937a793d25c9e4da74dd93087e940ecc9004911f019b5cfa7d15bea56d6d31cdd5b92f252157a69cc88d3239b5bf23139f","tags":[]}] +[14:17:47.801] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Gunstr \nhttps://64.media.tumblr.com/763e3f6787c1541984cf2ae5f24202a8/tumblr_opc34vqUmt1u8a8ydo1_500.jpg \n#army #gun #shotgun #huntress #pistol #knife #knives #soldier #warrior #girls","created_at":1759429052,"id":"e9605e9b843e32b756a7cd40aefe97197cfbfce1a86fd638962e1f0e6a33455f","kind":1,"pubkey":"ac5c59bc3994883bdcd6d8623e6476f0e05ee653997269cc216027859afde5b2","sig":"9023d228bdd25ee9f798cf1b2df6716fd39a8c9b10f95b90838b43bb4e64e45067edeb8b4283460fb71ce6fe728aa5670c35ea437b61512254be007c8dda1c9e","tags":[]}] +[14:17:47.862] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッジボール、小4のとき急にできるようになって、小6あたりでまたダメになった","created_at":1759429051,"id":"c7d4f85b24e25eca175a1a4f3c955d997f915273e31b5d853af04ca325921aef","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c0ed9d29928efd6c699809c389bb0b1745ee8959b524f86f07d46fcd969204cd9909e5eb9f269cfeda4a95e38829df9ddf4cba68f79ba4141e9167b575165198","tags":[]}] +[14:17:47.922] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Australian firm Fitell Corp bought $1.5M worth of PUMP tokens (Solana-based Pumpfun platform) – 216.8M tokens! 🇦🇺 Fitell is shifting from fitness e-commerce to a digital asset treasury & may rebrand as Solana Australia Corp. They also secured $10M for SOL. (TheBlock)\n\n#crypto #blockchain #news ","created_at":1759429048,"id":"4d8ec3953bede23a53caa15e46ea3c2a0c37c2b17a7cd7e9e9eaeda04f8b1d3f","kind":1,"pubkey":"c215990326b98e7fff0ccbc865c159332802d9fd39ffa281ec0f8949bd2a3113","sig":"80dc159b23692f2104aee2d5d1ff0f14d0a403f6159ca760b2d16321ed68c2da4a1a97e3b5e767b72d5ba311208937b23507dc42c31ab9f96d16d7cb07f2ae5c","tags":[]}] +[14:17:47.983] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"友達いないからドッジボールやった記憶がないし、ドッヂボールっていうのも初めて知った","created_at":1759429045,"id":"ff8083e533d78d8e00baaba2f0b8787b695117c02b2d879b495af8e1abea16da","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"93dce48442f77c20349fa32947dd443f0c0453970b55a45edc4dc2215583b19491e76bd4ada89ee698cec7ab5cb88cc31b91d378dccce27ec244bbe8c7e39151","tags":[]}] +[14:17:48.043] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッヂボールは休み時間にできることじゃん","created_at":1759429042,"id":"5967c78e7c6ac09e357aba86de4472c6059c7bb64da9127494737cb9ec0d9c63","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"34025b716da5858d3cccfe8418146a28584c4aa55e2d2bd1ba383d39e60ee7ecb08bcffdec3f433448048967090521b2b87578bc22086bfb1ba3b5ccfaf6edf0","tags":[]}] +[14:17:48.104] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqszqp0sdynnl20c6sajhk2k9spymkwqeclt7f8cxpwesmvss95sejs4jslqt \n\n","created_at":1759429036,"id":"09ed231d2541098a0721bc0b0c94244ea4ef1f7e5b9f088e7c87c652152f659c","kind":1,"pubkey":"668ac389d67f4f4be637f7e567c9054392c080db7c0b257264701ab4048166ff","sig":"aa0b3ce75805f6aaddfc30ef852ff0b5b274f2610a3639420cd08b76ae5e863492dcae99d2f1b51e97ee066e00069aaf38eacea2b39f638b4ff2ccc7ee9b4e1d","tags":[["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.damus.io","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","wss://nostr.einundzwanzig.space/","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","wss://relay.primal.net"],["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://relay.primal.net","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"]]}] +[14:17:48.164] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Streaming: Capsule - 022\n1. Flavien Berger - Mars balnéaire\n2. Flavien Berger - Océan rouge\n3. Radiohead - The National Anthem\n4. ESG - Insane (Tambourine Mix)\n5. TodoTodo - Autogas\n6. MAN 2 MAN - Male Stripper\n7. Laurence Pike - Distant Early Warning\n\nhttps://harmonique.one/shows/capsule/episodes/022 #music #tunestr","created_at":1759429030,"id":"f9cada9cd079d635baf1a73ff96be76a860fbf443e0c2d8f219058db929d0d90","kind":1,"pubkey":"f3f5992cdb39e6108768d543fbd384a11efc3713085617ee28932ebb1614e07c","sig":"2ee481a20b9f8d9c945496b73ef7fc6d001614b8da998879bb40332bf7b3df88bc8b7c228d80293d51ddfa9956fd58d8c5ee05703d5daaa64aaab896a4bc6711","tags":[]}] +[14:17:48.226] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:48.286] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Martijn Braam\",\"about\":\"Opensource software developer for OpenSwitcher. Sometimes makes some random hardware.\\n\\nSlowly getting closer to being a full time FOSS developer :D\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/000/061/783/original/e8cc9a5332e74811.jpg\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/000/061/783/original/86bb5220a349cf5a.jpg\",\"nip05\":\"martijnbraam@fosstodon-org.mostr.pub\",\"fields\":[[\"Blog\",\"https://blog.brixit.nl/\"],[\"Patreon\",\"https://www.patreon.com/martijnbraam\"],[\"Liberapay\",\"https://liberapay.com/MartijnBraam/\"],[\"Peertube\",\"https://spacepub.space/c/martijnbraam/videos\"]]}","created_at":1759429055,"id":"650e770c1972ad5c362c75a1b7f362103371fbe008b1bd066f7db80a1de24aed","kind":0,"pubkey":"579852afc54f2f4b992d5c48441d63f6545c530a7371764b6e67325d585ea6a1","sig":"f3cf7c0e189465581eb4aa32593cfb11e385d043a009bdb4ca0157d6442006416743ae6f4c872bfac324d3802d295a470852645fb38f103963c8c3d74827457a","tags":[["proxy","https://fosstodon.org/users/martijnbraam","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:48.347] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Roland Häder🇩🇪\",\"about\":\"I love free software, freedom, decentralization and no capitalism. I write with a QWERTZ keyboard but have setup US layout. #BlacklistIsNoRacism #heterosexual #EndFGM #ProDashcam #IloveK1 #SayNoToVVS #SayNoToGenderWoowoo. #fedi22 #IStandWithJKRowling #IStandWithJordanPeterson #IStandWithRileyGaines #SayNoToWoke #IStandWithMaya #StopErasingWomen #ManNotCis #StraightDontFuckWithTrans\",\"picture\":\"https://f.haeder.net/photo/profile/roland.png?ts=1748778962\",\"nip05\":\"roland@f-haeder-net.mostr.pub\",\"fields\":[[\"Factorio\",\"mods.factorio.com/user/roland7…\"],[\"gitlab\",\"gitlab.com/Quix0r\"],[\"Locals (Quix0r)\",\"jameson.locals.com\"],[\"Pronoun\",\"vaginal commander\"],[\"Hometown\",\"Georgsmarienhütte\"],[\"Sex\",\"Male\"],[\"Political views\",\"Center? Hmm: gegenstimme.tv/w/gcCyFYxYUDG5q…\"],[\"Religious views\",\"Atheist\"],[\"Likes\",\"Food: #vegetarian (90%), #vegan (10%)\"],[\"Dislikes\",\"Smoking/drugs, I stopped eating meat since July 2019. Alcohol (even mild) seem to be more disliked than liked. I don't like the taste.\"],[\"Title / description\",\"Administrator of this instance\"],[\"Musical interests\",\"Techno, 90' Dancefloor 90', Psychedelic-/Goa-Trance\"],[\"Books, literature\",\"Documentation books ... \"],[\"Television\",\"X-Files, Knight Rider, Dune (movie), lots of movies where Jason Statham is involved. Maybe something more I forgot?\"],[\"Hobbies/Interests\",\"Programming PHP/Java SE/EE, playing computer games\"],[\"Love / romance\",\"I'm in love with my wife for a longer time now.\"],[\"Work / employment\",\"Unempoyed, not interested in home-office.\"],[\"School / education\",\"Middle school finished, first work training was electrician, then application developer.\"],[\"Contact information and Social Networks\",\"GS: social.mxchange.org/roland\"],[\"Sexuality\",\"Heterosexual (straight)\"],[\"Relationship type\",\"Monogamous\"],[\"OMEMO ID\",\"a7419c8edd4fe01c0b1bc79b3f3a5fbbb589b56098e55dacb02351d73d6e6232\"],[\"GNU Social\",\"social.mxchange.org/roland\"],[\"TwitchTV\",\"twitch.tv/quix0r\"],[\"Steam\",\"steamcommunity.com/id/quix0r/\"],[\"GOG\",\"gog.com/u/Quix0r\"],[\"git.friendi.ca\",\"git.friendi.ca/roland\"],[\"itch.io profile\",\"itch.io/profile/quix0r\"],[\"Codeberg\",\"codeberg.org/roland77\"],[\"BKA.li repositories\",\"code.bka.li/roland77\"],[\"OBS Forum\",\"obsproject.com/forum/members/r…\"],[\"Rumble\",\"rumble.com/user/Quix0r\"],[\"voidpoint.io\",\"voidpoint.io/Quix0r\"]]}","created_at":1759429041,"id":"33e61b67499a154239bc1eca14a328fc775ff67b98339899e7904561a91aaf45","kind":0,"pubkey":"4bb8e4510271817909dcd6e725ef0c0fbdb1e057922fd32b057092af5b7fb39d","sig":"7a6dcd0994f9a9f846898e5906f83334b8e3bc2ca4056d7dc4954990e7734957546f6ff77089afeebf796fac1b97045595a38761e8c4c2ad03095fe4051803d7","tags":[["proxy","https://f.haeder.net/profile/roland","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:48.407] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Monika\",\"about\":\"Autorin. Podcasterin. Leidenschaft für Fotografie, fürs Selbermachen, Reisen & Kochen. Geb. bei 326 ppm CO₂. \\nhttp://absolutanalog.de , http://monismotivklingel.de , http://fiberthermometer.de\\n\\nAvatar made by @anhdres\",\"picture\":\"https://assets.chaos.social/accounts/avatars/000/081/110/original/8bc94cd82624640c.jpeg\",\"banner\":\"https://assets.chaos.social/accounts/headers/000/081/110/original/6b71469f98a3b928.jpeg\",\"nip05\":\"nahlinse@chaos-social.mostr.pub\",\"fields\":[[\"Pronomen\",\"sie/ihr | she/her\"],[\"Privilegien\",\"weiß, cis, abled\"],[\"Beliefs\",\"Trans rights are human rights. 🏳️‍⚧️\\nLove is love 🌈 \\nScience is real 🧪\"]]}","created_at":1759429023,"id":"33257359179a46be05baf28a9cf910d7ea71e247f4685a0179aebce2084247c0","kind":0,"pubkey":"a59d4f9b318bd0750350bea6018ca0d2ca0f4514d083bdfb08cd68d84ae1b6b6","sig":"a728b9fba163c0bfa356975bf83cacf6fa6be158a30e9577bc52af1951f95a46e52d60da5a0a57b2cb66119342b0e8064cd20322f15e6fd8631304d8bd539a2d","tags":[["proxy","https://chaos.social/users/nahlinse","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:48.468] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:48.528] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:48.589] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:48.649] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:48.710] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:48.770] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:48.831] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:48.891] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:49.375] RECV nos.lol:443: 55767be4"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","1be9326168f +[14:17:49.435] RECV nos.lol:443: 4f5ef18770ab163fe2c26bc049d21298186377cdc033bf69614"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1 +[14:17:51.033] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:51.033] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:51.033] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:51.033] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:51.191] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://media.tenor.com/VEsTykf0RaQAAAAC/jim-carrey-dumb-and-dumber.gif","created_at":1759429065,"id":"d5f6473df92d56f5660aeca23a941c61e62faee14630bb5b819de80df7883730","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"04a7b60d42baff51f1ba96ea31ccc4d8c65eb7b00dd7cfbefff20fc8ef48e7bbef6dde8da6fdd47da03c183afcf2ce44ab4afad5f33dec420bcfc186eab4dc25","tags":[["alt","A short note: https://media.tenor.com/VEsTykf0RaQAAAAC/jim-carre..."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","wss://relay.damus.io/","reply","f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","wss://chadf.nostr1.com/"],["r","https://media.tenor.com/VEsTykf0RaQAAAAC/jim-carrey-dumb-and-dumber.gif"]]}] +[14:17:51.251] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Very cool, have been looking for this exact thing. Would love to see the app in nostr:nprofile1qqs83nn04fezvsu89p8xg7axjwye2u67errat3dx2um725fs7qnrqlgpz4mhxue69uhhyetvv9ujuerpd46hxtnfduhs79prlk and Nostr login added for sync.","created_at":1759429065,"id":"a90f660df1eec69d7cf933bc6f8d8f3b11cac236f99acb89d281a5a3c010bacc","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"f07f16d909cf36ea3d05a81e7569cef2daf36b42802c69437cb0662dddfd0662225a26554973d52b152f64615364a056ab13567765d6c1818f3c787f40412642","tags":[["alt","A short note: Very cool, have been looking for this exact thing...."],["e","eb36520ff53038b02f7ce86c8f00e4548c2a07376d463010829ba9695609e3c5","wss://premium.primal.net/","root","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9","wss://relay.primal.net/"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/"]]}] +[14:17:51.312] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"どっちボールですか?(大爆笑)","created_at":1759429059,"id":"a116bdde6bfe6efa79e90f651755d1cfa243418b3170bf4e4fdb55919da548a9","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"ed3b10708a86c10485dd8c042be74c937a793d25c9e4da74dd93087e940ecc9004911f019b5cfa7d15bea56d6d31cdd5b92f252157a69cc88d3239b5bf23139f","tags":[]}] +[14:17:51.372] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Gunstr \nhttps://64.media.tumblr.com/763e3f6787c1541984cf2ae5f24202a8/tumblr_opc34vqUmt1u8a8ydo1_500.jpg \n#army #gun #shotgun #huntress #pistol #knife #knives #soldier #warrior #girls","created_at":1759429052,"id":"e9605e9b843e32b756a7cd40aefe97197cfbfce1a86fd638962e1f0e6a33455f","kind":1,"pubkey":"ac5c59bc3994883bdcd6d8623e6476f0e05ee653997269cc216027859afde5b2","sig":"9023d228bdd25ee9f798cf1b2df6716fd39a8c9b10f95b90838b43bb4e64e45067edeb8b4283460fb71ce6fe728aa5670c35ea437b61512254be007c8dda1c9e","tags":[]}] +[14:17:51.433] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッジボール、小4のとき急にできるようになって、小6あたりでまたダメになった","created_at":1759429051,"id":"c7d4f85b24e25eca175a1a4f3c955d997f915273e31b5d853af04ca325921aef","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c0ed9d29928efd6c699809c389bb0b1745ee8959b524f86f07d46fcd969204cd9909e5eb9f269cfeda4a95e38829df9ddf4cba68f79ba4141e9167b575165198","tags":[]}] +[14:17:51.493] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Australian firm Fitell Corp bought $1.5M worth of PUMP tokens (Solana-based Pumpfun platform) – 216.8M tokens! 🇦🇺 Fitell is shifting from fitness e-commerce to a digital asset treasury & may rebrand as Solana Australia Corp. They also secured $10M for SOL. (TheBlock)\n\n#crypto #blockchain #news ","created_at":1759429048,"id":"4d8ec3953bede23a53caa15e46ea3c2a0c37c2b17a7cd7e9e9eaeda04f8b1d3f","kind":1,"pubkey":"c215990326b98e7fff0ccbc865c159332802d9fd39ffa281ec0f8949bd2a3113","sig":"80dc159b23692f2104aee2d5d1ff0f14d0a403f6159ca760b2d16321ed68c2da4a1a97e3b5e767b72d5ba311208937b23507dc42c31ab9f96d16d7cb07f2ae5c","tags":[]}] +[14:17:51.554] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"友達いないからドッジボールやった記憶がないし、ドッヂボールっていうのも初めて知った","created_at":1759429045,"id":"ff8083e533d78d8e00baaba2f0b8787b695117c02b2d879b495af8e1abea16da","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"93dce48442f77c20349fa32947dd443f0c0453970b55a45edc4dc2215583b19491e76bd4ada89ee698cec7ab5cb88cc31b91d378dccce27ec244bbe8c7e39151","tags":[]}] +[14:17:51.614] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッヂボールは休み時間にできることじゃん","created_at":1759429042,"id":"5967c78e7c6ac09e357aba86de4472c6059c7bb64da9127494737cb9ec0d9c63","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"34025b716da5858d3cccfe8418146a28584c4aa55e2d2bd1ba383d39e60ee7ecb08bcffdec3f433448048967090521b2b87578bc22086bfb1ba3b5ccfaf6edf0","tags":[]}] +[14:17:51.675] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqszqp0sdynnl20c6sajhk2k9spymkwqeclt7f8cxpwesmvss95sejs4jslqt \n\n","created_at":1759429036,"id":"09ed231d2541098a0721bc0b0c94244ea4ef1f7e5b9f088e7c87c652152f659c","kind":1,"pubkey":"668ac389d67f4f4be637f7e567c9054392c080db7c0b257264701ab4048166ff","sig":"aa0b3ce75805f6aaddfc30ef852ff0b5b274f2610a3639420cd08b76ae5e863492dcae99d2f1b51e97ee066e00069aaf38eacea2b39f638b4ff2ccc7ee9b4e1d","tags":[["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.damus.io","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","wss://nostr.einundzwanzig.space/","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","wss://relay.primal.net"],["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://relay.primal.net","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"]]}] +[14:17:51.735] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Streaming: Capsule - 022\n1. Flavien Berger - Mars balnéaire\n2. Flavien Berger - Océan rouge\n3. Radiohead - The National Anthem\n4. ESG - Insane (Tambourine Mix)\n5. TodoTodo - Autogas\n6. MAN 2 MAN - Male Stripper\n7. Laurence Pike - Distant Early Warning\n\nhttps://harmonique.one/shows/capsule/episodes/022 #music #tunestr","created_at":1759429030,"id":"f9cada9cd079d635baf1a73ff96be76a860fbf443e0c2d8f219058db929d0d90","kind":1,"pubkey":"f3f5992cdb39e6108768d543fbd384a11efc3713085617ee28932ebb1614e07c","sig":"2ee481a20b9f8d9c945496b73ef7fc6d001614b8da998879bb40332bf7b3df88bc8b7c228d80293d51ddfa9956fd58d8c5ee05703d5daaa64aaab896a4bc6711","tags":[]}] +[14:17:51.796] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:51.857] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Martijn Braam\",\"about\":\"Opensource software developer for OpenSwitcher. Sometimes makes some random hardware.\\n\\nSlowly getting closer to being a full time FOSS developer :D\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/000/061/783/original/e8cc9a5332e74811.jpg\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/000/061/783/original/86bb5220a349cf5a.jpg\",\"nip05\":\"martijnbraam@fosstodon-org.mostr.pub\",\"fields\":[[\"Blog\",\"https://blog.brixit.nl/\"],[\"Patreon\",\"https://www.patreon.com/martijnbraam\"],[\"Liberapay\",\"https://liberapay.com/MartijnBraam/\"],[\"Peertube\",\"https://spacepub.space/c/martijnbraam/videos\"]]}","created_at":1759429055,"id":"650e770c1972ad5c362c75a1b7f362103371fbe008b1bd066f7db80a1de24aed","kind":0,"pubkey":"579852afc54f2f4b992d5c48441d63f6545c530a7371764b6e67325d585ea6a1","sig":"f3cf7c0e189465581eb4aa32593cfb11e385d043a009bdb4ca0157d6442006416743ae6f4c872bfac324d3802d295a470852645fb38f103963c8c3d74827457a","tags":[["proxy","https://fosstodon.org/users/martijnbraam","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:51.917] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Roland Häder🇩🇪\",\"about\":\"I love free software, freedom, decentralization and no capitalism. I write with a QWERTZ keyboard but have setup US layout. #BlacklistIsNoRacism #heterosexual #EndFGM #ProDashcam #IloveK1 #SayNoToVVS #SayNoToGenderWoowoo. #fedi22 #IStandWithJKRowling #IStandWithJordanPeterson #IStandWithRileyGaines #SayNoToWoke #IStandWithMaya #StopErasingWomen #ManNotCis #StraightDontFuckWithTrans\",\"picture\":\"https://f.haeder.net/photo/profile/roland.png?ts=1748778962\",\"nip05\":\"roland@f-haeder-net.mostr.pub\",\"fields\":[[\"Factorio\",\"mods.factorio.com/user/roland7…\"],[\"gitlab\",\"gitlab.com/Quix0r\"],[\"Locals (Quix0r)\",\"jameson.locals.com\"],[\"Pronoun\",\"vaginal commander\"],[\"Hometown\",\"Georgsmarienhütte\"],[\"Sex\",\"Male\"],[\"Political views\",\"Center? Hmm: gegenstimme.tv/w/gcCyFYxYUDG5q…\"],[\"Religious views\",\"Atheist\"],[\"Likes\",\"Food: #vegetarian (90%), #vegan (10%)\"],[\"Dislikes\",\"Smoking/drugs, I stopped eating meat since July 2019. Alcohol (even mild) seem to be more disliked than liked. I don't like the taste.\"],[\"Title / description\",\"Administrator of this instance\"],[\"Musical interests\",\"Techno, 90' Dancefloor 90', Psychedelic-/Goa-Trance\"],[\"Books, literature\",\"Documentation books ... \"],[\"Television\",\"X-Files, Knight Rider, Dune (movie), lots of movies where Jason Statham is involved. Maybe something more I forgot?\"],[\"Hobbies/Interests\",\"Programming PHP/Java SE/EE, playing computer games\"],[\"Love / romance\",\"I'm in love with my wife for a longer time now.\"],[\"Work / employment\",\"Unempoyed, not interested in home-office.\"],[\"School / education\",\"Middle school finished, first work training was electrician, then application developer.\"],[\"Contact information and Social Networks\",\"GS: social.mxchange.org/roland\"],[\"Sexuality\",\"Heterosexual (straight)\"],[\"Relationship type\",\"Monogamous\"],[\"OMEMO ID\",\"a7419c8edd4fe01c0b1bc79b3f3a5fbbb589b56098e55dacb02351d73d6e6232\"],[\"GNU Social\",\"social.mxchange.org/roland\"],[\"TwitchTV\",\"twitch.tv/quix0r\"],[\"Steam\",\"steamcommunity.com/id/quix0r/\"],[\"GOG\",\"gog.com/u/Quix0r\"],[\"git.friendi.ca\",\"git.friendi.ca/roland\"],[\"itch.io profile\",\"itch.io/profile/quix0r\"],[\"Codeberg\",\"codeberg.org/roland77\"],[\"BKA.li repositories\",\"code.bka.li/roland77\"],[\"OBS Forum\",\"obsproject.com/forum/members/r…\"],[\"Rumble\",\"rumble.com/user/Quix0r\"],[\"voidpoint.io\",\"voidpoint.io/Quix0r\"]]}","created_at":1759429041,"id":"33e61b67499a154239bc1eca14a328fc775ff67b98339899e7904561a91aaf45","kind":0,"pubkey":"4bb8e4510271817909dcd6e725ef0c0fbdb1e057922fd32b057092af5b7fb39d","sig":"7a6dcd0994f9a9f846898e5906f83334b8e3bc2ca4056d7dc4954990e7734957546f6ff77089afeebf796fac1b97045595a38761e8c4c2ad03095fe4051803d7","tags":[["proxy","https://f.haeder.net/profile/roland","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:51.977] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Monika\",\"about\":\"Autorin. Podcasterin. Leidenschaft für Fotografie, fürs Selbermachen, Reisen & Kochen. Geb. bei 326 ppm CO₂. \\nhttp://absolutanalog.de , http://monismotivklingel.de , http://fiberthermometer.de\\n\\nAvatar made by @anhdres\",\"picture\":\"https://assets.chaos.social/accounts/avatars/000/081/110/original/8bc94cd82624640c.jpeg\",\"banner\":\"https://assets.chaos.social/accounts/headers/000/081/110/original/6b71469f98a3b928.jpeg\",\"nip05\":\"nahlinse@chaos-social.mostr.pub\",\"fields\":[[\"Pronomen\",\"sie/ihr | she/her\"],[\"Privilegien\",\"weiß, cis, abled\"],[\"Beliefs\",\"Trans rights are human rights. 🏳️‍⚧️\\nLove is love 🌈 \\nScience is real 🧪\"]]}","created_at":1759429023,"id":"33257359179a46be05baf28a9cf910d7ea71e247f4685a0179aebce2084247c0","kind":0,"pubkey":"a59d4f9b318bd0750350bea6018ca0d2ca0f4514d083bdfb08cd68d84ae1b6b6","sig":"a728b9fba163c0bfa356975bf83cacf6fa6be158a30e9577bc52af1951f95a46e52d60da5a0a57b2cb66119342b0e8064cd20322f15e6fd8631304d8bd539a2d","tags":[["proxy","https://chaos.social/users/nahlinse","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:52.038] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:52.099] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:52.124] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:52.185] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:52.245] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:52.306] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:52.366] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:52.427] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:52.910] RECV nos.lol:443: 55767be4"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","1be9326168f +[14:17:52.970] RECV nos.lol:443: 4f5ef18770ab163fe2c26bc049d21298186377cdc033bf69614"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1 +[14:17:55.591] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:55.591] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:55.591] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:55.592] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:55.744] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://media.tenor.com/VEsTykf0RaQAAAAC/jim-carrey-dumb-and-dumber.gif","created_at":1759429065,"id":"d5f6473df92d56f5660aeca23a941c61e62faee14630bb5b819de80df7883730","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"04a7b60d42baff51f1ba96ea31ccc4d8c65eb7b00dd7cfbefff20fc8ef48e7bbef6dde8da6fdd47da03c183afcf2ce44ab4afad5f33dec420bcfc186eab4dc25","tags":[["alt","A short note: https://media.tenor.com/VEsTykf0RaQAAAAC/jim-carre..."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","wss://relay.damus.io/","reply","f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","wss://chadf.nostr1.com/"],["r","https://media.tenor.com/VEsTykf0RaQAAAAC/jim-carrey-dumb-and-dumber.gif"]]}] +[14:17:55.805] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Very cool, have been looking for this exact thing. Would love to see the app in nostr:nprofile1qqs83nn04fezvsu89p8xg7axjwye2u67errat3dx2um725fs7qnrqlgpz4mhxue69uhhyetvv9ujuerpd46hxtnfduhs79prlk and Nostr login added for sync.","created_at":1759429065,"id":"a90f660df1eec69d7cf933bc6f8d8f3b11cac236f99acb89d281a5a3c010bacc","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"f07f16d909cf36ea3d05a81e7569cef2daf36b42802c69437cb0662dddfd0662225a26554973d52b152f64615364a056ab13567765d6c1818f3c787f40412642","tags":[["alt","A short note: Very cool, have been looking for this exact thing...."],["e","eb36520ff53038b02f7ce86c8f00e4548c2a07376d463010829ba9695609e3c5","wss://premium.primal.net/","root","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9","wss://relay.primal.net/"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/"]]}] +[14:17:55.865] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"どっちボールですか?(大爆笑)","created_at":1759429059,"id":"a116bdde6bfe6efa79e90f651755d1cfa243418b3170bf4e4fdb55919da548a9","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"ed3b10708a86c10485dd8c042be74c937a793d25c9e4da74dd93087e940ecc9004911f019b5cfa7d15bea56d6d31cdd5b92f252157a69cc88d3239b5bf23139f","tags":[]}] +[14:17:55.926] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Gunstr \nhttps://64.media.tumblr.com/763e3f6787c1541984cf2ae5f24202a8/tumblr_opc34vqUmt1u8a8ydo1_500.jpg \n#army #gun #shotgun #huntress #pistol #knife #knives #soldier #warrior #girls","created_at":1759429052,"id":"e9605e9b843e32b756a7cd40aefe97197cfbfce1a86fd638962e1f0e6a33455f","kind":1,"pubkey":"ac5c59bc3994883bdcd6d8623e6476f0e05ee653997269cc216027859afde5b2","sig":"9023d228bdd25ee9f798cf1b2df6716fd39a8c9b10f95b90838b43bb4e64e45067edeb8b4283460fb71ce6fe728aa5670c35ea437b61512254be007c8dda1c9e","tags":[]}] +[14:17:55.986] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッジボール、小4のとき急にできるようになって、小6あたりでまたダメになった","created_at":1759429051,"id":"c7d4f85b24e25eca175a1a4f3c955d997f915273e31b5d853af04ca325921aef","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c0ed9d29928efd6c699809c389bb0b1745ee8959b524f86f07d46fcd969204cd9909e5eb9f269cfeda4a95e38829df9ddf4cba68f79ba4141e9167b575165198","tags":[]}] +[14:17:56.047] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Australian firm Fitell Corp bought $1.5M worth of PUMP tokens (Solana-based Pumpfun platform) – 216.8M tokens! 🇦🇺 Fitell is shifting from fitness e-commerce to a digital asset treasury & may rebrand as Solana Australia Corp. They also secured $10M for SOL. (TheBlock)\n\n#crypto #blockchain #news ","created_at":1759429048,"id":"4d8ec3953bede23a53caa15e46ea3c2a0c37c2b17a7cd7e9e9eaeda04f8b1d3f","kind":1,"pubkey":"c215990326b98e7fff0ccbc865c159332802d9fd39ffa281ec0f8949bd2a3113","sig":"80dc159b23692f2104aee2d5d1ff0f14d0a403f6159ca760b2d16321ed68c2da4a1a97e3b5e767b72d5ba311208937b23507dc42c31ab9f96d16d7cb07f2ae5c","tags":[]}] +[14:17:56.107] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"友達いないからドッジボールやった記憶がないし、ドッヂボールっていうのも初めて知った","created_at":1759429045,"id":"ff8083e533d78d8e00baaba2f0b8787b695117c02b2d879b495af8e1abea16da","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"93dce48442f77c20349fa32947dd443f0c0453970b55a45edc4dc2215583b19491e76bd4ada89ee698cec7ab5cb88cc31b91d378dccce27ec244bbe8c7e39151","tags":[]}] +[14:17:56.168] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッヂボールは休み時間にできることじゃん","created_at":1759429042,"id":"5967c78e7c6ac09e357aba86de4472c6059c7bb64da9127494737cb9ec0d9c63","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"34025b716da5858d3cccfe8418146a28584c4aa55e2d2bd1ba383d39e60ee7ecb08bcffdec3f433448048967090521b2b87578bc22086bfb1ba3b5ccfaf6edf0","tags":[]}] +[14:17:56.228] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqszqp0sdynnl20c6sajhk2k9spymkwqeclt7f8cxpwesmvss95sejs4jslqt \n\n","created_at":1759429036,"id":"09ed231d2541098a0721bc0b0c94244ea4ef1f7e5b9f088e7c87c652152f659c","kind":1,"pubkey":"668ac389d67f4f4be637f7e567c9054392c080db7c0b257264701ab4048166ff","sig":"aa0b3ce75805f6aaddfc30ef852ff0b5b274f2610a3639420cd08b76ae5e863492dcae99d2f1b51e97ee066e00069aaf38eacea2b39f638b4ff2ccc7ee9b4e1d","tags":[["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.damus.io","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","wss://nostr.einundzwanzig.space/","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","wss://relay.primal.net"],["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://relay.primal.net","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"]]}] +[14:17:56.289] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Streaming: Capsule - 022\n1. Flavien Berger - Mars balnéaire\n2. Flavien Berger - Océan rouge\n3. Radiohead - The National Anthem\n4. ESG - Insane (Tambourine Mix)\n5. TodoTodo - Autogas\n6. MAN 2 MAN - Male Stripper\n7. Laurence Pike - Distant Early Warning\n\nhttps://harmonique.one/shows/capsule/episodes/022 #music #tunestr","created_at":1759429030,"id":"f9cada9cd079d635baf1a73ff96be76a860fbf443e0c2d8f219058db929d0d90","kind":1,"pubkey":"f3f5992cdb39e6108768d543fbd384a11efc3713085617ee28932ebb1614e07c","sig":"2ee481a20b9f8d9c945496b73ef7fc6d001614b8da998879bb40332bf7b3df88bc8b7c228d80293d51ddfa9956fd58d8c5ee05703d5daaa64aaab896a4bc6711","tags":[]}] +[14:17:56.349] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:56.410] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Martijn Braam\",\"about\":\"Opensource software developer for OpenSwitcher. Sometimes makes some random hardware.\\n\\nSlowly getting closer to being a full time FOSS developer :D\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/000/061/783/original/e8cc9a5332e74811.jpg\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/000/061/783/original/86bb5220a349cf5a.jpg\",\"nip05\":\"martijnbraam@fosstodon-org.mostr.pub\",\"fields\":[[\"Blog\",\"https://blog.brixit.nl/\"],[\"Patreon\",\"https://www.patreon.com/martijnbraam\"],[\"Liberapay\",\"https://liberapay.com/MartijnBraam/\"],[\"Peertube\",\"https://spacepub.space/c/martijnbraam/videos\"]]}","created_at":1759429055,"id":"650e770c1972ad5c362c75a1b7f362103371fbe008b1bd066f7db80a1de24aed","kind":0,"pubkey":"579852afc54f2f4b992d5c48441d63f6545c530a7371764b6e67325d585ea6a1","sig":"f3cf7c0e189465581eb4aa32593cfb11e385d043a009bdb4ca0157d6442006416743ae6f4c872bfac324d3802d295a470852645fb38f103963c8c3d74827457a","tags":[["proxy","https://fosstodon.org/users/martijnbraam","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:56.471] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Roland Häder🇩🇪\",\"about\":\"I love free software, freedom, decentralization and no capitalism. I write with a QWERTZ keyboard but have setup US layout. #BlacklistIsNoRacism #heterosexual #EndFGM #ProDashcam #IloveK1 #SayNoToVVS #SayNoToGenderWoowoo. #fedi22 #IStandWithJKRowling #IStandWithJordanPeterson #IStandWithRileyGaines #SayNoToWoke #IStandWithMaya #StopErasingWomen #ManNotCis #StraightDontFuckWithTrans\",\"picture\":\"https://f.haeder.net/photo/profile/roland.png?ts=1748778962\",\"nip05\":\"roland@f-haeder-net.mostr.pub\",\"fields\":[[\"Factorio\",\"mods.factorio.com/user/roland7…\"],[\"gitlab\",\"gitlab.com/Quix0r\"],[\"Locals (Quix0r)\",\"jameson.locals.com\"],[\"Pronoun\",\"vaginal commander\"],[\"Hometown\",\"Georgsmarienhütte\"],[\"Sex\",\"Male\"],[\"Political views\",\"Center? Hmm: gegenstimme.tv/w/gcCyFYxYUDG5q…\"],[\"Religious views\",\"Atheist\"],[\"Likes\",\"Food: #vegetarian (90%), #vegan (10%)\"],[\"Dislikes\",\"Smoking/drugs, I stopped eating meat since July 2019. Alcohol (even mild) seem to be more disliked than liked. I don't like the taste.\"],[\"Title / description\",\"Administrator of this instance\"],[\"Musical interests\",\"Techno, 90' Dancefloor 90', Psychedelic-/Goa-Trance\"],[\"Books, literature\",\"Documentation books ... \"],[\"Television\",\"X-Files, Knight Rider, Dune (movie), lots of movies where Jason Statham is involved. Maybe something more I forgot?\"],[\"Hobbies/Interests\",\"Programming PHP/Java SE/EE, playing computer games\"],[\"Love / romance\",\"I'm in love with my wife for a longer time now.\"],[\"Work / employment\",\"Unempoyed, not interested in home-office.\"],[\"School / education\",\"Middle school finished, first work training was electrician, then application developer.\"],[\"Contact information and Social Networks\",\"GS: social.mxchange.org/roland\"],[\"Sexuality\",\"Heterosexual (straight)\"],[\"Relationship type\",\"Monogamous\"],[\"OMEMO ID\",\"a7419c8edd4fe01c0b1bc79b3f3a5fbbb589b56098e55dacb02351d73d6e6232\"],[\"GNU Social\",\"social.mxchange.org/roland\"],[\"TwitchTV\",\"twitch.tv/quix0r\"],[\"Steam\",\"steamcommunity.com/id/quix0r/\"],[\"GOG\",\"gog.com/u/Quix0r\"],[\"git.friendi.ca\",\"git.friendi.ca/roland\"],[\"itch.io profile\",\"itch.io/profile/quix0r\"],[\"Codeberg\",\"codeberg.org/roland77\"],[\"BKA.li repositories\",\"code.bka.li/roland77\"],[\"OBS Forum\",\"obsproject.com/forum/members/r…\"],[\"Rumble\",\"rumble.com/user/Quix0r\"],[\"voidpoint.io\",\"voidpoint.io/Quix0r\"]]}","created_at":1759429041,"id":"33e61b67499a154239bc1eca14a328fc775ff67b98339899e7904561a91aaf45","kind":0,"pubkey":"4bb8e4510271817909dcd6e725ef0c0fbdb1e057922fd32b057092af5b7fb39d","sig":"7a6dcd0994f9a9f846898e5906f83334b8e3bc2ca4056d7dc4954990e7734957546f6ff77089afeebf796fac1b97045595a38761e8c4c2ad03095fe4051803d7","tags":[["proxy","https://f.haeder.net/profile/roland","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:56.531] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Monika\",\"about\":\"Autorin. Podcasterin. Leidenschaft für Fotografie, fürs Selbermachen, Reisen & Kochen. Geb. bei 326 ppm CO₂. \\nhttp://absolutanalog.de , http://monismotivklingel.de , http://fiberthermometer.de\\n\\nAvatar made by @anhdres\",\"picture\":\"https://assets.chaos.social/accounts/avatars/000/081/110/original/8bc94cd82624640c.jpeg\",\"banner\":\"https://assets.chaos.social/accounts/headers/000/081/110/original/6b71469f98a3b928.jpeg\",\"nip05\":\"nahlinse@chaos-social.mostr.pub\",\"fields\":[[\"Pronomen\",\"sie/ihr | she/her\"],[\"Privilegien\",\"weiß, cis, abled\"],[\"Beliefs\",\"Trans rights are human rights. 🏳️‍⚧️\\nLove is love 🌈 \\nScience is real 🧪\"]]}","created_at":1759429023,"id":"33257359179a46be05baf28a9cf910d7ea71e247f4685a0179aebce2084247c0","kind":0,"pubkey":"a59d4f9b318bd0750350bea6018ca0d2ca0f4514d083bdfb08cd68d84ae1b6b6","sig":"a728b9fba163c0bfa356975bf83cacf6fa6be158a30e9577bc52af1951f95a46e52d60da5a0a57b2cb66119342b0e8064cd20322f15e6fd8631304d8bd539a2d","tags":[["proxy","https://chaos.social/users/nahlinse","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:56.592] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:56.652] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:56.713] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:56.773] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:56.834] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:56.895] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:56.955] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:57.016] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:57.464] RECV nos.lol:443: .net\":{\"write\":true,\"read\":true},\"wss://nostr-pub.wellorder.net\":{\"write\":true,\"read\":true},\"wss +[14:17:58.379] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:58.379] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:58.379] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:58.379] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:58.532] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://media.tenor.com/VEsTykf0RaQAAAAC/jim-carrey-dumb-and-dumber.gif","created_at":1759429065,"id":"d5f6473df92d56f5660aeca23a941c61e62faee14630bb5b819de80df7883730","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"04a7b60d42baff51f1ba96ea31ccc4d8c65eb7b00dd7cfbefff20fc8ef48e7bbef6dde8da6fdd47da03c183afcf2ce44ab4afad5f33dec420bcfc186eab4dc25","tags":[["alt","A short note: https://media.tenor.com/VEsTykf0RaQAAAAC/jim-carre..."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","wss://relay.damus.io/","reply","f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","wss://chadf.nostr1.com/"],["r","https://media.tenor.com/VEsTykf0RaQAAAAC/jim-carrey-dumb-and-dumber.gif"]]}] +[14:17:58.592] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Very cool, have been looking for this exact thing. Would love to see the app in nostr:nprofile1qqs83nn04fezvsu89p8xg7axjwye2u67errat3dx2um725fs7qnrqlgpz4mhxue69uhhyetvv9ujuerpd46hxtnfduhs79prlk and Nostr login added for sync.","created_at":1759429065,"id":"a90f660df1eec69d7cf933bc6f8d8f3b11cac236f99acb89d281a5a3c010bacc","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"f07f16d909cf36ea3d05a81e7569cef2daf36b42802c69437cb0662dddfd0662225a26554973d52b152f64615364a056ab13567765d6c1818f3c787f40412642","tags":[["alt","A short note: Very cool, have been looking for this exact thing...."],["e","eb36520ff53038b02f7ce86c8f00e4548c2a07376d463010829ba9695609e3c5","wss://premium.primal.net/","root","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9","wss://relay.primal.net/"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/"]]}] +[14:17:58.683] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"どっちボールですか?(大爆笑)","created_at":1759429059,"id":"a116bdde6bfe6efa79e90f651755d1cfa243418b3170bf4e4fdb55919da548a9","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"ed3b10708a86c10485dd8c042be74c937a793d25c9e4da74dd93087e940ecc9004911f019b5cfa7d15bea56d6d31cdd5b92f252157a69cc88d3239b5bf23139f","tags":[]}] +[14:17:58.744] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Gunstr \nhttps://64.media.tumblr.com/763e3f6787c1541984cf2ae5f24202a8/tumblr_opc34vqUmt1u8a8ydo1_500.jpg \n#army #gun #shotgun #huntress #pistol #knife #knives #soldier #warrior #girls","created_at":1759429052,"id":"e9605e9b843e32b756a7cd40aefe97197cfbfce1a86fd638962e1f0e6a33455f","kind":1,"pubkey":"ac5c59bc3994883bdcd6d8623e6476f0e05ee653997269cc216027859afde5b2","sig":"9023d228bdd25ee9f798cf1b2df6716fd39a8c9b10f95b90838b43bb4e64e45067edeb8b4283460fb71ce6fe728aa5670c35ea437b61512254be007c8dda1c9e","tags":[]}] +[14:17:58.804] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッジボール、小4のとき急にできるようになって、小6あたりでまたダメになった","created_at":1759429051,"id":"c7d4f85b24e25eca175a1a4f3c955d997f915273e31b5d853af04ca325921aef","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c0ed9d29928efd6c699809c389bb0b1745ee8959b524f86f07d46fcd969204cd9909e5eb9f269cfeda4a95e38829df9ddf4cba68f79ba4141e9167b575165198","tags":[]}] +[14:17:58.864] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Australian firm Fitell Corp bought $1.5M worth of PUMP tokens (Solana-based Pumpfun platform) – 216.8M tokens! 🇦🇺 Fitell is shifting from fitness e-commerce to a digital asset treasury & may rebrand as Solana Australia Corp. They also secured $10M for SOL. (TheBlock)\n\n#crypto #blockchain #news ","created_at":1759429048,"id":"4d8ec3953bede23a53caa15e46ea3c2a0c37c2b17a7cd7e9e9eaeda04f8b1d3f","kind":1,"pubkey":"c215990326b98e7fff0ccbc865c159332802d9fd39ffa281ec0f8949bd2a3113","sig":"80dc159b23692f2104aee2d5d1ff0f14d0a403f6159ca760b2d16321ed68c2da4a1a97e3b5e767b72d5ba311208937b23507dc42c31ab9f96d16d7cb07f2ae5c","tags":[]}] +[14:17:58.925] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"友達いないからドッジボールやった記憶がないし、ドッヂボールっていうのも初めて知った","created_at":1759429045,"id":"ff8083e533d78d8e00baaba2f0b8787b695117c02b2d879b495af8e1abea16da","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"93dce48442f77c20349fa32947dd443f0c0453970b55a45edc4dc2215583b19491e76bd4ada89ee698cec7ab5cb88cc31b91d378dccce27ec244bbe8c7e39151","tags":[]}] +[14:17:58.985] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッヂボールは休み時間にできることじゃん","created_at":1759429042,"id":"5967c78e7c6ac09e357aba86de4472c6059c7bb64da9127494737cb9ec0d9c63","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"34025b716da5858d3cccfe8418146a28584c4aa55e2d2bd1ba383d39e60ee7ecb08bcffdec3f433448048967090521b2b87578bc22086bfb1ba3b5ccfaf6edf0","tags":[]}] +[14:17:59.046] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqszqp0sdynnl20c6sajhk2k9spymkwqeclt7f8cxpwesmvss95sejs4jslqt \n\n","created_at":1759429036,"id":"09ed231d2541098a0721bc0b0c94244ea4ef1f7e5b9f088e7c87c652152f659c","kind":1,"pubkey":"668ac389d67f4f4be637f7e567c9054392c080db7c0b257264701ab4048166ff","sig":"aa0b3ce75805f6aaddfc30ef852ff0b5b274f2610a3639420cd08b76ae5e863492dcae99d2f1b51e97ee066e00069aaf38eacea2b39f638b4ff2ccc7ee9b4e1d","tags":[["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.damus.io","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","wss://nostr.einundzwanzig.space/","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","wss://relay.primal.net"],["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://relay.primal.net","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"]]}] +[14:17:59.106] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Streaming: Capsule - 022\n1. Flavien Berger - Mars balnéaire\n2. Flavien Berger - Océan rouge\n3. Radiohead - The National Anthem\n4. ESG - Insane (Tambourine Mix)\n5. TodoTodo - Autogas\n6. MAN 2 MAN - Male Stripper\n7. Laurence Pike - Distant Early Warning\n\nhttps://harmonique.one/shows/capsule/episodes/022 #music #tunestr","created_at":1759429030,"id":"f9cada9cd079d635baf1a73ff96be76a860fbf443e0c2d8f219058db929d0d90","kind":1,"pubkey":"f3f5992cdb39e6108768d543fbd384a11efc3713085617ee28932ebb1614e07c","sig":"2ee481a20b9f8d9c945496b73ef7fc6d001614b8da998879bb40332bf7b3df88bc8b7c228d80293d51ddfa9956fd58d8c5ee05703d5daaa64aaab896a4bc6711","tags":[]}] +[14:17:59.167] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:59.227] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://i.postimg.cc/Ssj2bkn7/1500x500-3.jpg\"}","created_at":1759429077,"id":"33114b4cabe1be88448c1cb80a54620a214b9d49035a3625eeb749203492e64e","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"5c57be1e665aa5fc4a459d67609fb0304a6233e5d5d966c0ab449a885e01c21b940e9b79a63c821bccbb7a317a6a7c824a68937d0fe586ff16a6a6dd6489ec9f","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://i.postimg.cc/Ssj2bkn7/1500x500-3.jpg"]]}] +[14:17:59.288] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"myrmepropagandist\",\"about\":\"pro-ant propaganda, building electronics, writing sci-fi teaching mathematics & CS. I live in NYC.🎖️(< :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:24:56.948] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:24:57.009] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:24:57.069] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"display_name\":\"Oshi (推し)\",\"name\":\"oshi\",\"nip05\":\"oshi@oshigood.us\",\"lud16\":\"oshi@coinos.io\",\"about\":\"⚡️Artisan Pecan Butter, Date Bars, and Chocolates. ₿itcoin and nostr only. \\n\\n#hodlbutter • #hodlbar • #bthcnodes\\n\\nCustom orders: oshigood@proton.me\\n\\nSimplex group chat: https://smp19.simplex.im/g#k1srY8O6XCiYbcLh6BY7lavWtpc2xLz2R8MXKfJsrJk\",\"picture\":\"https://image.nostr.build/a62937470157b7e9e349ea3baebffc92391754262538b257fe5eb54f79379b09.jpg\",\"website\":\"https://www.oshigood.us/\",\"banner\":\"https://image.nostr.build/70b92cc7446a452ccdf036d18ef7f5e2e0843b7b1a8fda39e99337862e96163e.jpg\",\"reactions\":false}","created_at":1759429433,"id":"5ff517f5cc88d9c2668b4e5dd85a409ce935707c93e2344a356ba19b8df96fd8","kind":0,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"f40ff0b9fa3b9c2288712633b9f4a158e3c18ef372806b12694f7c2e339fe6deedbf371a0077c81aa3ed0a2ec2053d2119dba65ed4d3cc8b856c3a73faa6c837","tags":[]}] +[14:24:57.095] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Em :official_verified:\",\"about\":\"Privacy Advocate. Security Passionate. Protector of Data. Tamer of Python. Lover of Encrypted Keys. Recycled Artist. Hardware Enthusiast. Fan of FOSS. Happy Mastodon Mentor to all newcomers!\\n\\nSpending most days writing, reading, and talking about privacy. Journalist at @privacyguides \\n\\nOpen-sourced & open-hearted.\\n(she/her) 🏳️‍🌈\\n\\n🔒 Privacy tips at: #TinyPrivacyTip \\n🐘 Mastodon tips at: #TinyMastodonTip\\n \\nOther hashtags I talk about: \\n#DigitalRights #HumanRights #Privacy #Security #Python #FOSS #FLOSS #OpenSource\\n\\nSecondary accounts at (do not contact me there):\\n🐘 infosec.space/@Em0nM4stodon\\n🐘 mastodon.social/@Em0nM4stodon\\n\\n#nobridge #nobot #noai #noindex #nosearch #noarchive \\n\\nThis is a personal account. Opinions expressed here are my own and do not necessarily reflect my employer. Especially emojis :awesome:\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/108/197/851/470/625/041/original/f56f05846a226449.jpg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/108/197/851/470/625/041/original/7c3da3c2e19d6748.jpeg\",\"nip05\":\"Em0nM4stodon@infosec-exchange.mostr.pub\",\"fields\":[[\"Privacy Guides Articles\",\"https://www.privacyguides.org/articles/author/em/\"],[\"Web\",\"https://emontheinternet.me\"],[\"Blog\",\"https://controlaltdelete.technology\"],[\"Code\",\"https://snakecase.software\"]]}","created_at":1759429387,"id":"0b4a3cdf879aef74c0cc50708c43f5e16008173243b5f9cc57a5d52a8fea0e94","kind":0,"pubkey":"324a744a05e221eb6ed9afe1a1c85bb116cb460ca08b7a0bcc85bb283de694b8","sig":"97e7a338d6b0ec5f891efc5e33aa47cb83f99741634823be5ec15b5eac34ee8e3151a770eb5f2df1ecab73e5eb976e9b7067d1daf15963e81012d57ad89f0042","tags":[["emoji","awesome","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/028/579/original/dcea540b6fc9cffd.png"],["emoji","official_verified","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/162/396/original/70b97769f901fd31.png"],["proxy","https://infosec.exchange/users/Em0nM4stodon","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:24:57.155] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"ea92318514d3ed6fae107e75ff9d8a531cd6e87a5a3e2547d0edc8949f1d08c5","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"02e25a84b45390192ee416afb9eecd7b1a28e3a47e489663626c7588a514cd80f142ed161cb2560bed1bc0056890439c486ab7f0513a8b2d4efa6f0486f27edf","tags":[]}] +[14:24:57.216] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot\",\"display_name\":\"AirportStatusBot\",\"about\":\"This is a social media bot that will post delay information for airports in the United States.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"8b2bb6edf15559db6032bc1eef6430775886d67db7d729b849c9bdb52884608f","kind":0,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"94312dc8ee3000a8ea95e20cd86b7ab641d5d9001368e16e91f73a45201097af85fb812ea2b706a448773975b2caa01da773d993617a62a532639b005793e54f","tags":[]}] +[14:24:57.277] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_lax\",\"display_name\":\"AirportStatusBot (LAX)\",\"about\":\"This is a social media bot that will post delay information for Los Angeles International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"865beb0554758c65eec1c734d4acd1c1caa78195fd581dab3642a74e5a71e501","kind":0,"pubkey":"ff4cf7c72c73c106237c84501f7c53c8a46c986c8129852c73ad620ed69f43c2","sig":"fa48426bffad191261b31dece16329d32429189a33fec216cf1e2305aed98157c8464bccc6cfa888a692dfe50f95c5d521700f6d32e8be9d8ebb29eea47e30bc","tags":[]}] +[14:24:57.337] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_ord\",\"display_name\":\"AirportStatusBot (ORD)\",\"about\":\"This is a social media bot that will post delay information for Chicago O'Hare International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"5fb9220779943a4e159f48bfc78b4f6ac3da469bcd70d7cde4ce255461cc9021","kind":0,"pubkey":"78daf7c1b4007c7ef80d89252f4afd9e290d52ae55807f4065a704359663c620","sig":"52c644f6d5a23c41b579e73b39ef1bbab7b682da6bed235eb15e3bd50756b1e24b18f9a212180188edfdab8e4a254d458c727a259499bc8017841dcaa398ee6e","tags":[]}] +[14:24:57.398] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_atl\",\"display_name\":\"AirportStatusBot (ATL)\",\"about\":\"This is a social media bot that will post delay information for Atlanta Hartsfield-Jackson International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"4854c65247a2ab69ae730f91d9650c85a3475a001f2e5f8f8d9a69630d983a95","kind":0,"pubkey":"eafef7ceb365bb4fa98f24c49163d46f17045bc42120e042b3372be3422b960b","sig":"d5d3399e9c44258765fc6fb5e7e8566e6f3795bdd78e07f7d0b2f1aba4908ac9971ef915f2a94acaab92ffe56e1b1d86f74ac3c49a906ea892fd2d935bba924f","tags":[]}] +[14:24:57.458] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:24:57.519] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429464,"id":"11834c3d132c581134773ad35de235585e9415fe8ea0a67584ece79530c4d5b6","kind":3,"pubkey":"6123bc04893e8e27f13e9a432ae5b968579e78c4ab259574f74495db09258272","sig":"31015b057f0542e00d5ba6339bc0c3a98fcbd56ab493e0b436db77411272ea43cabe25e5761c9f1d4d372a0bc6386ad25feaf598c16de80ae90134828a3db5da","tags":[["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","cc76679480a4504b963a3809cba60b458ebf068c62713621dda94b527860447d"],["p","dfcf6ae4111c1bb29d8cd96df8793aeded34f78764b5089da32e0f3edf7a9e2f"],["p","dd35763b08908d07fc0da8ecffe5206d8fb349d9be5465b186f53eac1bb444a7"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","66bd8fed3590f2299ef0128f58d67879289e6a99a660e83ead94feab7606fd17"],["p","92cbe5861cfc5213dd89f0a6f6084486f85e6f03cfeb70a13f455938116433b8"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","f96073dc6b6db9e4d256d9a3afd7222c70ba0b9fd36bf20608f6a43c5951c7c2"],["p","12cfc2ec5a39a39d02f921f77e701dbc175b6287f22ddf0247af39706967f1d9"],["p","a9f8b3f2ac19cc06d5194dd1ac9314d4741a09777444986553926d9165181647"],["p","8e71076fc49f8eef0e6d475c51f37d58116013912a9eb796f46287ebe9257b75"],["p","805b34f708837dfb3e7f05815ac5760564628b58d5a0ce839ccbb6ef3620fac3"],["p","aa9539e1ec76ee5f79c8e3f0c23d62f1adf40a69a05bb0728d792d17b75d8179"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","5e1a49baa20ef3daf90d0116c624b4c587d0bb10f35c106439e7f47f81884214"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","33bd77e5394520747faae1394a4af5fa47f404389676375b6dc7be865ed81452"],["p","b480a3f71f13017ddbdb1a045b95fa752d631108f52e7c51f2a171832a31d8af"],["p","fcb651724ab55affc1130fd4cbbc6e5fe1e20c2b09b85941ecf10b7487f3c4ed"],["p","de7ecd1e2976a6adb2ffa5f4db81a7d812c8bb6698aa00dcf1e76adb55efd645"],["p","9c199578de5aae3ae55e348d0fea56eab2f6db84bbcac64467642b7fa4314dbb"],["p","6c535d95a8659b234d5a0805034f5f0a67e3c0ceffcc459f61f680fe944424bf"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","1c31ccda2709fc6cf5db0a0b0873613e25646c4a944779dfb5e8d6cbbcd2ee1c"],["p","e4b67f9f7c0a1cce1c24ca9196f8e1446fcce17fdef5d5eb46a3929433ea4d91"],["p","123afae7d187ba36d6ddcd97dbf4acc59aeffe243f782592ff8f25ed579df306"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32"],["p","77ec966fcd64f901152cad5dc7731c7c831fe22e02e3ae99ff14637e5a48ef9c"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","7fa56f5d6962ab1e3cd424e758c3002b8665f7b0d8dcee9fe9e288d7751ac194"],["p","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69"],["p","f1b911af1c7a56073e3b83ba7eaa681467040e0fbbdd265445aa80e65c274c22"],["p","34fad5244f7de844c1c9e001e2737ed23f3ea96ceda2e20d241d46fee5824f16"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","0114bb11dd8eb89bfb40669509b2a5a473d27126e27acae58257f2fd7cd95776"],["p","c48b5cced5ada74db078df6b00fa53fc1139d73bf0ed16de325d52220211dbd5"],["p","626f5262765ba3130ebf9d3e778b3f44e3a843bb392e0bf99ada438b3fed4976"],["p","52921e1feee2b3c5093b193784e5a55a5191f4940725e3cb7a17592f1c37981b"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","c1fc7771f5fa418fd3ac49221a18f19b42ccb7a663da8f04cbbf6c08c80d20b1"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","9ba8c688f091ca48de2b0f9bc998e3bc36a0092149f9201767da592849777f1c"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","4eb88310d6b4ed95c6d66a395b3d3cf559b85faec8f7691dafd405a92e055d6d"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","6123bc04893e8e27f13e9a432ae5b968579e78c4ab259574f74495db09258272"],["p","1be9326168faf4f5ef18770ab163fe2c26bc049d21298186377cdc033bf69614"],["t","homelab"],["p","d6149823c90c4865e4bc434a4be1a1ee8f72aabd8328dd059ba4f11f7633b0b6"],["p","dc350e074d1def1d9019df293378115ab9affd8e824e7cf432c409b860dd13ae"],["p","03adefb282cd0220c0f424fdd2eaea1b3537638dcbc8d1929f1749c3037f6b16"]]}] +[14:24:57.821] RECV nos.lol:443: 5542018e31e1a0","tags":[["p","9edd72eb23222c969379d90 +[14:24:58.487] RECV nos.lol:443: a6492ca6c9d5098d9e5ad27ee57468f9608e","wss://rel +[14:24:58.547] RECV nos.lol:443: .bullishbounty.com",""],["p","273a0967bc2b146f1416f556bf0b5b2fc31c72a2b73f07f345a5fde982f0eab3","wss://relay.bullishbount +[14:24:59.273] RECV nos.lol:443: ec230b587a334381e82bf9a02a184f2d068f8d","wss://r +[14:24:59.394] RECV nos.lol:443: .bullishbounty.com",""],["p","2bf3494d5c5f83ff94dc44c2d22bdea9f3387286a127407c21e4f075906ed51e","wss://relay.bullishbount +[14:25:00.493] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:25:00.493] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:25:00.493] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:25:00.493] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:25:00.645] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:25 ------------✄","created_at":1759429500,"id":"4c29eda82c12c803ad986dc78c0cfe4ed33ef90df3f868df623fcce8ed12a69f","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"84d76946c7a973b1978bc7d4f30c3c8508e3584e0657eced7f12b19eaf9ec6b5bd1e23115a852adf3819d9d2059a0c5e599ecfdbeb521fea8634ff632bec09f6","tags":[]}] +[14:25:00.817] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"fuck, i want one aswell.","created_at":1759429497,"id":"30cbae408b721b956f7bb16137c5efe747a6332d5ada8a683333c74e4939a3f9","kind":1,"pubkey":"2bc1cc9268507667c92ea0ec6aa652fc78f1185a9fc9d976910aa6f237811ea5","sig":"c536fac7d83ae2c2c3fc95c7d9b12ada51cd42f3271ad629039dbfa4f5bbc10725e4576ce3174425b302c23eb443957b57bcf5047f012dd7dd55456f3f697fe7","tags":[["e","66a5326113be9221cd5193a00f2799959bccd8f91b9f254849362c20d1dbb678","wss://nostr.oxtr.dev","root","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["e","c1778ec702e924871074b1b6b00da61a2df715cb330e486cf130812f7333fb16","wss://nostr.oxtr.dev/","reply","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"]]}] +[14:25:00.877] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドロケイ好きだったな\n隠れといて、足速い人を率先して逃すやつやってた","created_at":1759429494,"id":"51b766e62eb7792a661b7d85a0045067e04b836613005cb7b0e63bc3d50ebdee","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c92e3ec3ffeb3bedcf6365a715406ecc8f99d2551344a9ee717bda6b5781756bf236d06ba68f2e3726767386a9b8d46e41b7a6616362c04b70fc1b2f4a5ae01e","tags":[]}] +[14:25:00.938] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"KeyboardEvent: keyIdentifier property\"\nhttps://developer.mozilla.org/ja/docs/Web/API/KeyboardEvent/keyIdentifier","created_at":1759429493,"id":"22917ed92b0164379fe8659bd289c3e8afab3daf0e551590ba39230b258216d2","kind":1,"pubkey":"4f129b892cf19a3dd2eb6e6bb097349e88e9fb51c035b119795900c8235ab5bb","sig":"220c8be5b7d0e25c93c1d55e1c70e52636082102967ed9b81d91b46339a0e6f08284b5ef0a44b46256a0c0fc3c6ee36935583441b5d17370458d30113122a1ca","tags":[]}] +[14:25:00.998] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Was mich noch viel mehr stört. Diese „Journalisten“ können einfach einen Müll verzapfen ohne jegliche Konsequenzen. Und für so schlecht recherchierte Artikel noch Geld verdienen. ","created_at":1759429488,"id":"9329828e722c7a4b0d2c9580399b56997e667e57efe3cffc65f1ca892252c6d0","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"c7c36a600f983d6aeba4828ded4ba494eb6aebc2fe472ae5958a9ca9deda7cd27837d13b34218ea0f88c53bd17adf76dfebf06d1bb45fac6c9e6bd945da1d174","tags":[["e","9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","wss://nos.lol/","root","8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6"],["e","55fe34d51f31330caf54ba09760d223bec5fdbc3a5ca7913f2847b5e40ccab60","wss://Nostr.einundzwanzig.space","reply"],["p","9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","","mention"]]}] +[14:25:01.059] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fountain: https://fountain.fm/episode/PdcoEeJuuK6vcPrw46St\n\nYouTube: https://youtu.be/B-42u6oPS6s","created_at":1759429487,"id":"0791d4cfee5d066083cd5559994fb4fe1dd7a4f7746394015768d75296cb3eeb","kind":1,"pubkey":"e57fec0c802eaeacd7f204277ddb1f86eaa92e62cadd0d2697084cb4e3153bf8","sig":"5dcfa441ff4685082ef9ddee6496045e388b6cdd5a007b17be21127c4c62ac6af416cf809137cd3c8324648fac5077da38295c612043b4749980ab7f9775b8ee","tags":[["e","d40d5699bdf9dc19fabb3e86b4af1b23a07903a131fbe26978c74e95ee1f0699","wss://relay.primal.net","root"],["p","5ed4fa9d1de53613f2964ccd6d1c9e70841651080f3fc06effb8d7dfb7f52d85","wss://relay.primal.net","mention"],["p","f609d58b4253458768d9baf1b28ab4dfb5f6e690d99bb2760c83de3a840c3ea2","","mention"],["p","fd4b8c1b94b3038c742e02b4524a782ca545af3c9a516bffdeade6a63e0d101f","wss://relay.damus.io/","mention"],["p","b72238ceb7ef3547f698971b75cbaa0b5301f886909bd2fcca092b698e3f6e8b","wss://relay.nostr.band/","mention"],["p","adb164ecd9e0e0be59c223291ed1bf1c747682277a01d894a8163f72435ae605","wss://purplepag.es","mention"],["p","de7623f81c44e52697dd7b9ffa6183b333c3ea9111306213db147a0f0d9b7c4e","wss://nostr.bitcoiner.social","mention"],["p","e76d07d5cb7111ed01502ce04ab8f31a04af71db20aa60752e98a97d9fdf3285","wss://relay.nostrcheck.me","mention"],["p","bad0fd7de56e240026ffa52f75cc41891b5b7d9e6eceed5728223781f8307095","wss://relay.primal.net","mention"]]}] +[14:25:01.119] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Impressive !!! \n\nhttps://blossom.primal.net/2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0.gif","created_at":1759429485,"id":"67c944ddc2f7f3d428b227f202d6163ac8b36739bb36c9f63bb2c350c36c13f2","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"853e81c8a48340facd559a2b95ef39dbaf1d35f8dd7a04da489b5287b8f4c112492680e3d6dac11d56ee44d1546ef3e26959f2894b4993ad4af05d7e45156969","tags":[["alt","A short note: Impressive !!! \n\nhttps://blossom.primal.net/2933c4..."],["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["e","d3207c6106613816e640b846516d0588cf6a473834e552d725b4ee26d80f2815"],["e","bc3d1686b43a48acebb4a90d66d9d37b7c08138f52d90a16d26f6028f19a60a1","wss://relay.damus.io/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"],["r","https://blossom.primal.net/2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0.gif"],["imeta","url https://blossom.primal.net/2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0.gif","x 2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0","size 998241","m image/gif","dim 170x234","blurhash _B9@P0WCI:WVoLfjoM_LV@nio2WVofWU$mR+SebHoKWVo2J$axspjZa}jZW;wNa}W:bHjZWWo2NZa#oKoLayoLWVs;f6a}Woj[a|jtbHbHfQo1fQjaa}jZj[j[W;aya}f6","ox 2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0","alt "]]}] +[14:25:01.180] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📇⬇️ policy:\n\nand then russia can annex ukraine because ukraine \"stole russian money\" and claiming the land in ukraine is repayment. it puts the target on ukraine's back.... makes the problem between them and extracts the eu, and russia will wipe them off the map, and the eu will say ohhhhhh that's terrible, have another sanction. and everyone will move on. #emmanuelmacron \n#pravda \n\nhttps://apple.news/AxvRWYzGdSwW4dX_OYCycjA","created_at":1759429485,"id":"5696bc1ad6767a6af6c01c71111b4677618b4854f69e40398a8cea629479e337","kind":1,"pubkey":"1ea4ae8405ad5c6bd0dc35a0ac83e548c485142538e1e0c54ad40e5bb59a2ae8","sig":"ca1e1f61ef960792e7beaa4054e1586dc18e7c235f221b0d518df86e1f0b6ba064c8de21949aedd9fbfdb0f8a4cf40f4a6c7e8f02a47cb46b803d5c46019f9af","tags":[["e","ce0ff5b80154330c373103dfe38f819ccb93255e9b2c08bb8d577bf9ed79ebfd","","root"],["e","99f00fb9d916775dba72b32dbadbe1fa9638f58bef78c435b1a52fe3c1fac179","","reply"],["t","emmanuelmacron"],["t","pravda"],["r","https://apple.news/AxvRWYzGdSwW4dX_OYCycjA"]]}] +[14:25:01.240] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Congrats!!","created_at":1759429484,"id":"82f27d8e2e42ddaff39762eddd5fd202720f41bf0cf4292bdeccacdc48ac636c","kind":1,"pubkey":"a8171781fd9e90ede3ea44ddca5d3abf828fe8eedeb0f3abb0dd3e563562e1fc","sig":"66222df18e8546950157bfe7de774fd1ce005e7d6d4bcab11913c330ce8f4b6ea025183c7dea0bed8472eebdcbd79f6ce9033f9fb7219792cd7345624485afd9","tags":[["e","49fc8dc3c774e76e111b9d48ae4dac827fcc0413d25a6330133d04d733fefe73","","root"],["p","9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:25:01.301] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Youuuuu get it 😂","created_at":1759429478,"id":"54e86e22b62345acb66fe0dada1fc413b907c76ce8ceb90fd648760195b9c4e6","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"b9dec1670113e30f4ae9ac2b70202b9deccb4cfd06a0524b45fb346a2b1d3987eb41731a3fa1499393a156c122a7b7f67c25558e3a6a522babb6d8069c5e0e1f","tags":[["e","7d56c6b3979cefb1ba1aa44ea3c72ac08a42143097633ea5b9a21da8d083e3af","wss://relay.damus.io","root"],["e","ffeb789065d38c8969d2b03ba68aa5a0eac600ab2d84496fc29dce85951d42d1","","reply"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"]]}] +[14:25:01.361] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:25:01.422] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:01.482] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:01.543] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:01.604] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"display_name\":\"Oshi (推し)\",\"name\":\"oshi\",\"nip05\":\"oshi@oshigood.us\",\"lud16\":\"oshi@coinos.io\",\"about\":\"⚡️Artisan Pecan Butter, Date Bars, and Chocolates. ₿itcoin and nostr only. \\n\\n#hodlbutter • #hodlbar • #bthcnodes\\n\\nCustom orders: oshigood@proton.me\\n\\nSimplex group chat: https://smp19.simplex.im/g#k1srY8O6XCiYbcLh6BY7lavWtpc2xLz2R8MXKfJsrJk\",\"picture\":\"https://image.nostr.build/a62937470157b7e9e349ea3baebffc92391754262538b257fe5eb54f79379b09.jpg\",\"website\":\"https://www.oshigood.us/\",\"banner\":\"https://image.nostr.build/70b92cc7446a452ccdf036d18ef7f5e2e0843b7b1a8fda39e99337862e96163e.jpg\",\"reactions\":false}","created_at":1759429433,"id":"5ff517f5cc88d9c2668b4e5dd85a409ce935707c93e2344a356ba19b8df96fd8","kind":0,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"f40ff0b9fa3b9c2288712633b9f4a158e3c18ef372806b12694f7c2e339fe6deedbf371a0077c81aa3ed0a2ec2053d2119dba65ed4d3cc8b856c3a73faa6c837","tags":[]}] +[14:25:01.664] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Em :official_verified:\",\"about\":\"Privacy Advocate. Security Passionate. Protector of Data. Tamer of Python. Lover of Encrypted Keys. Recycled Artist. Hardware Enthusiast. Fan of FOSS. Happy Mastodon Mentor to all newcomers!\\n\\nSpending most days writing, reading, and talking about privacy. Journalist at @privacyguides \\n\\nOpen-sourced & open-hearted.\\n(she/her) 🏳️‍🌈\\n\\n🔒 Privacy tips at: #TinyPrivacyTip \\n🐘 Mastodon tips at: #TinyMastodonTip\\n \\nOther hashtags I talk about: \\n#DigitalRights #HumanRights #Privacy #Security #Python #FOSS #FLOSS #OpenSource\\n\\nSecondary accounts at (do not contact me there):\\n🐘 infosec.space/@Em0nM4stodon\\n🐘 mastodon.social/@Em0nM4stodon\\n\\n#nobridge #nobot #noai #noindex #nosearch #noarchive \\n\\nThis is a personal account. Opinions expressed here are my own and do not necessarily reflect my employer. Especially emojis :awesome:\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/108/197/851/470/625/041/original/f56f05846a226449.jpg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/108/197/851/470/625/041/original/7c3da3c2e19d6748.jpeg\",\"nip05\":\"Em0nM4stodon@infosec-exchange.mostr.pub\",\"fields\":[[\"Privacy Guides Articles\",\"https://www.privacyguides.org/articles/author/em/\"],[\"Web\",\"https://emontheinternet.me\"],[\"Blog\",\"https://controlaltdelete.technology\"],[\"Code\",\"https://snakecase.software\"]]}","created_at":1759429387,"id":"0b4a3cdf879aef74c0cc50708c43f5e16008173243b5f9cc57a5d52a8fea0e94","kind":0,"pubkey":"324a744a05e221eb6ed9afe1a1c85bb116cb460ca08b7a0bcc85bb283de694b8","sig":"97e7a338d6b0ec5f891efc5e33aa47cb83f99741634823be5ec15b5eac34ee8e3151a770eb5f2df1ecab73e5eb976e9b7067d1daf15963e81012d57ad89f0042","tags":[["emoji","awesome","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/028/579/original/dcea540b6fc9cffd.png"],["emoji","official_verified","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/162/396/original/70b97769f901fd31.png"],["proxy","https://infosec.exchange/users/Em0nM4stodon","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:01.725] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"ea92318514d3ed6fae107e75ff9d8a531cd6e87a5a3e2547d0edc8949f1d08c5","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"02e25a84b45390192ee416afb9eecd7b1a28e3a47e489663626c7588a514cd80f142ed161cb2560bed1bc0056890439c486ab7f0513a8b2d4efa6f0486f27edf","tags":[]}] +[14:25:01.785] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot\",\"display_name\":\"AirportStatusBot\",\"about\":\"This is a social media bot that will post delay information for airports in the United States.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"8b2bb6edf15559db6032bc1eef6430775886d67db7d729b849c9bdb52884608f","kind":0,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"94312dc8ee3000a8ea95e20cd86b7ab641d5d9001368e16e91f73a45201097af85fb812ea2b706a448773975b2caa01da773d993617a62a532639b005793e54f","tags":[]}] +[14:25:01.846] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_lax\",\"display_name\":\"AirportStatusBot (LAX)\",\"about\":\"This is a social media bot that will post delay information for Los Angeles International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"865beb0554758c65eec1c734d4acd1c1caa78195fd581dab3642a74e5a71e501","kind":0,"pubkey":"ff4cf7c72c73c106237c84501f7c53c8a46c986c8129852c73ad620ed69f43c2","sig":"fa48426bffad191261b31dece16329d32429189a33fec216cf1e2305aed98157c8464bccc6cfa888a692dfe50f95c5d521700f6d32e8be9d8ebb29eea47e30bc","tags":[]}] +[14:25:01.906] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_ord\",\"display_name\":\"AirportStatusBot (ORD)\",\"about\":\"This is a social media bot that will post delay information for Chicago O'Hare International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"5fb9220779943a4e159f48bfc78b4f6ac3da469bcd70d7cde4ce255461cc9021","kind":0,"pubkey":"78daf7c1b4007c7ef80d89252f4afd9e290d52ae55807f4065a704359663c620","sig":"52c644f6d5a23c41b579e73b39ef1bbab7b682da6bed235eb15e3bd50756b1e24b18f9a212180188edfdab8e4a254d458c727a259499bc8017841dcaa398ee6e","tags":[]}] +[14:25:01.967] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_atl\",\"display_name\":\"AirportStatusBot (ATL)\",\"about\":\"This is a social media bot that will post delay information for Atlanta Hartsfield-Jackson International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"4854c65247a2ab69ae730f91d9650c85a3475a001f2e5f8f8d9a69630d983a95","kind":0,"pubkey":"eafef7ceb365bb4fa98f24c49163d46f17045bc42120e042b3372be3422b960b","sig":"d5d3399e9c44258765fc6fb5e7e8566e6f3795bdd78e07f7d0b2f1aba4908ac9971ef915f2a94acaab92ffe56e1b1d86f74ac3c49a906ea892fd2d935bba924f","tags":[]}] +[14:25:02.027] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:25:02.718] RECV nos.lol:443: b6e26f4090b44a68284f584d64d8976ae37cd209e816d82aa"],["p +[14:25:04.968] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:25:04.968] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:25:04.968] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:25:04.968] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:25:05.119] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"At the time this happened Jose Ramirez was already in the top 10 (and top 5 in some) Guardians team categories like, Home Runs, RBI’s, Steals, Games Played, All Star appearances, perennial mvp (usually year and year out top 5 voting). I consider this his “George Brett Moment”. Most sports greats have that one lasting image that is legendary. This is probably it but it certainly didn’t define his greatness in Cleveland. Most true Guardians fans who actually paid attention would agree that he was great way before this. If anything it brought him to the national conversation.\"\nnostr:nprofile1qqswc3w8t44syr8g6hsywql42edjxecgdm4h6x2nuud69kr0d9xc6rcpz4mhxue69uhk2er9dchxummnw3ezumrpdejqzrrhwden5te0vfexytnfduq3samnwvaz7tmjv4kxz7fwwdhx7un59eek7cmfv9kq5pfec7","created_at":1759429502,"id":"f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"55da2491e05575343c2b4717af8ec41c2c688d9238e0d4c0866e4a49daa85698e71af3aa4fe02071231cf0f0ed3db74fd630887f7a8cb8c10706c744b25f61eb","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f","","mention"]]}] +[14:25:05.180] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is one of the problems I have with most books - they are filled with lies, and you can glean some truths by kind of filtering out the biases, listening to what's not said, etc but it's exhausting.\n\nFor some reason philosophers are usually but not always an exception.","created_at":1759429500,"id":"5faf03263965a007242ca31f2b52d77c35ed2daa4188e9981536c1ea3d9b8018","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"e935541a0fbb4409dd1af816bf6f310aa0fb5dd9b97b8f8d93fda829d547c8262d846e5073e58f1c10b65f0311d0caa926f8a89e00234de86b7249c6d81df772","tags":[["e","be30626aa378bd40ab1f69c30b47a3e7e3e58fe48baec62a6a9a7ed8f8c5dda3","wss://nostr.oxtr.dev","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:25:05.241] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:25 ------------✄","created_at":1759429500,"id":"4c29eda82c12c803ad986dc78c0cfe4ed33ef90df3f868df623fcce8ed12a69f","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"84d76946c7a973b1978bc7d4f30c3c8508e3584e0657eced7f12b19eaf9ec6b5bd1e23115a852adf3819d9d2059a0c5e599ecfdbeb521fea8634ff632bec09f6","tags":[]}] +[14:25:05.301] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"fuck, i want one aswell.","created_at":1759429497,"id":"30cbae408b721b956f7bb16137c5efe747a6332d5ada8a683333c74e4939a3f9","kind":1,"pubkey":"2bc1cc9268507667c92ea0ec6aa652fc78f1185a9fc9d976910aa6f237811ea5","sig":"c536fac7d83ae2c2c3fc95c7d9b12ada51cd42f3271ad629039dbfa4f5bbc10725e4576ce3174425b302c23eb443957b57bcf5047f012dd7dd55456f3f697fe7","tags":[["e","66a5326113be9221cd5193a00f2799959bccd8f91b9f254849362c20d1dbb678","wss://nostr.oxtr.dev","root","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["e","c1778ec702e924871074b1b6b00da61a2df715cb330e486cf130812f7333fb16","wss://nostr.oxtr.dev/","reply","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"]]}] +[14:25:05.362] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドロケイ好きだったな\n隠れといて、足速い人を率先して逃すやつやってた","created_at":1759429494,"id":"51b766e62eb7792a661b7d85a0045067e04b836613005cb7b0e63bc3d50ebdee","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c92e3ec3ffeb3bedcf6365a715406ecc8f99d2551344a9ee717bda6b5781756bf236d06ba68f2e3726767386a9b8d46e41b7a6616362c04b70fc1b2f4a5ae01e","tags":[]}] +[14:25:05.423] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"KeyboardEvent: keyIdentifier property\"\nhttps://developer.mozilla.org/ja/docs/Web/API/KeyboardEvent/keyIdentifier","created_at":1759429493,"id":"22917ed92b0164379fe8659bd289c3e8afab3daf0e551590ba39230b258216d2","kind":1,"pubkey":"4f129b892cf19a3dd2eb6e6bb097349e88e9fb51c035b119795900c8235ab5bb","sig":"220c8be5b7d0e25c93c1d55e1c70e52636082102967ed9b81d91b46339a0e6f08284b5ef0a44b46256a0c0fc3c6ee36935583441b5d17370458d30113122a1ca","tags":[]}] +[14:25:05.483] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Was mich noch viel mehr stört. Diese „Journalisten“ können einfach einen Müll verzapfen ohne jegliche Konsequenzen. Und für so schlecht recherchierte Artikel noch Geld verdienen. ","created_at":1759429488,"id":"9329828e722c7a4b0d2c9580399b56997e667e57efe3cffc65f1ca892252c6d0","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"c7c36a600f983d6aeba4828ded4ba494eb6aebc2fe472ae5958a9ca9deda7cd27837d13b34218ea0f88c53bd17adf76dfebf06d1bb45fac6c9e6bd945da1d174","tags":[["e","9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","wss://nos.lol/","root","8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6"],["e","55fe34d51f31330caf54ba09760d223bec5fdbc3a5ca7913f2847b5e40ccab60","wss://Nostr.einundzwanzig.space","reply"],["p","9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","","mention"]]}] +[14:25:05.544] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fountain: https://fountain.fm/episode/PdcoEeJuuK6vcPrw46St\n\nYouTube: https://youtu.be/B-42u6oPS6s","created_at":1759429487,"id":"0791d4cfee5d066083cd5559994fb4fe1dd7a4f7746394015768d75296cb3eeb","kind":1,"pubkey":"e57fec0c802eaeacd7f204277ddb1f86eaa92e62cadd0d2697084cb4e3153bf8","sig":"5dcfa441ff4685082ef9ddee6496045e388b6cdd5a007b17be21127c4c62ac6af416cf809137cd3c8324648fac5077da38295c612043b4749980ab7f9775b8ee","tags":[["e","d40d5699bdf9dc19fabb3e86b4af1b23a07903a131fbe26978c74e95ee1f0699","wss://relay.primal.net","root"],["p","5ed4fa9d1de53613f2964ccd6d1c9e70841651080f3fc06effb8d7dfb7f52d85","wss://relay.primal.net","mention"],["p","f609d58b4253458768d9baf1b28ab4dfb5f6e690d99bb2760c83de3a840c3ea2","","mention"],["p","fd4b8c1b94b3038c742e02b4524a782ca545af3c9a516bffdeade6a63e0d101f","wss://relay.damus.io/","mention"],["p","b72238ceb7ef3547f698971b75cbaa0b5301f886909bd2fcca092b698e3f6e8b","wss://relay.nostr.band/","mention"],["p","adb164ecd9e0e0be59c223291ed1bf1c747682277a01d894a8163f72435ae605","wss://purplepag.es","mention"],["p","de7623f81c44e52697dd7b9ffa6183b333c3ea9111306213db147a0f0d9b7c4e","wss://nostr.bitcoiner.social","mention"],["p","e76d07d5cb7111ed01502ce04ab8f31a04af71db20aa60752e98a97d9fdf3285","wss://relay.nostrcheck.me","mention"],["p","bad0fd7de56e240026ffa52f75cc41891b5b7d9e6eceed5728223781f8307095","wss://relay.primal.net","mention"]]}] +[14:25:05.604] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Impressive !!! \n\nhttps://blossom.primal.net/2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0.gif","created_at":1759429485,"id":"67c944ddc2f7f3d428b227f202d6163ac8b36739bb36c9f63bb2c350c36c13f2","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"853e81c8a48340facd559a2b95ef39dbaf1d35f8dd7a04da489b5287b8f4c112492680e3d6dac11d56ee44d1546ef3e26959f2894b4993ad4af05d7e45156969","tags":[["alt","A short note: Impressive !!! \n\nhttps://blossom.primal.net/2933c4..."],["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["e","d3207c6106613816e640b846516d0588cf6a473834e552d725b4ee26d80f2815"],["e","bc3d1686b43a48acebb4a90d66d9d37b7c08138f52d90a16d26f6028f19a60a1","wss://relay.damus.io/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"],["r","https://blossom.primal.net/2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0.gif"],["imeta","url https://blossom.primal.net/2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0.gif","x 2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0","size 998241","m image/gif","dim 170x234","blurhash _B9@P0WCI:WVoLfjoM_LV@nio2WVofWU$mR+SebHoKWVo2J$axspjZa}jZW;wNa}W:bHjZWWo2NZa#oKoLayoLWVs;f6a}Woj[a|jtbHbHfQo1fQjaa}jZj[j[W;aya}f6","ox 2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0","alt "]]}] +[14:25:05.665] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📇⬇️ policy:\n\nand then russia can annex ukraine because ukraine \"stole russian money\" and claiming the land in ukraine is repayment. it puts the target on ukraine's back.... makes the problem between them and extracts the eu, and russia will wipe them off the map, and the eu will say ohhhhhh that's terrible, have another sanction. and everyone will move on. #emmanuelmacron \n#pravda \n\nhttps://apple.news/AxvRWYzGdSwW4dX_OYCycjA","created_at":1759429485,"id":"5696bc1ad6767a6af6c01c71111b4677618b4854f69e40398a8cea629479e337","kind":1,"pubkey":"1ea4ae8405ad5c6bd0dc35a0ac83e548c485142538e1e0c54ad40e5bb59a2ae8","sig":"ca1e1f61ef960792e7beaa4054e1586dc18e7c235f221b0d518df86e1f0b6ba064c8de21949aedd9fbfdb0f8a4cf40f4a6c7e8f02a47cb46b803d5c46019f9af","tags":[["e","ce0ff5b80154330c373103dfe38f819ccb93255e9b2c08bb8d577bf9ed79ebfd","","root"],["e","99f00fb9d916775dba72b32dbadbe1fa9638f58bef78c435b1a52fe3c1fac179","","reply"],["t","emmanuelmacron"],["t","pravda"],["r","https://apple.news/AxvRWYzGdSwW4dX_OYCycjA"]]}] +[14:25:05.725] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:25:05.786] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:25:05.847] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:05.908] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:05.968] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:06.029] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"display_name\":\"Oshi (推し)\",\"name\":\"oshi\",\"nip05\":\"oshi@oshigood.us\",\"lud16\":\"oshi@coinos.io\",\"about\":\"⚡️Artisan Pecan Butter, Date Bars, and Chocolates. ₿itcoin and nostr only. \\n\\n#hodlbutter • #hodlbar • #bthcnodes\\n\\nCustom orders: oshigood@proton.me\\n\\nSimplex group chat: https://smp19.simplex.im/g#k1srY8O6XCiYbcLh6BY7lavWtpc2xLz2R8MXKfJsrJk\",\"picture\":\"https://image.nostr.build/a62937470157b7e9e349ea3baebffc92391754262538b257fe5eb54f79379b09.jpg\",\"website\":\"https://www.oshigood.us/\",\"banner\":\"https://image.nostr.build/70b92cc7446a452ccdf036d18ef7f5e2e0843b7b1a8fda39e99337862e96163e.jpg\",\"reactions\":false}","created_at":1759429433,"id":"5ff517f5cc88d9c2668b4e5dd85a409ce935707c93e2344a356ba19b8df96fd8","kind":0,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"f40ff0b9fa3b9c2288712633b9f4a158e3c18ef372806b12694f7c2e339fe6deedbf371a0077c81aa3ed0a2ec2053d2119dba65ed4d3cc8b856c3a73faa6c837","tags":[]}] +[14:25:06.089] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Em :official_verified:\",\"about\":\"Privacy Advocate. Security Passionate. Protector of Data. Tamer of Python. Lover of Encrypted Keys. Recycled Artist. Hardware Enthusiast. Fan of FOSS. Happy Mastodon Mentor to all newcomers!\\n\\nSpending most days writing, reading, and talking about privacy. Journalist at @privacyguides \\n\\nOpen-sourced & open-hearted.\\n(she/her) 🏳️‍🌈\\n\\n🔒 Privacy tips at: #TinyPrivacyTip \\n🐘 Mastodon tips at: #TinyMastodonTip\\n \\nOther hashtags I talk about: \\n#DigitalRights #HumanRights #Privacy #Security #Python #FOSS #FLOSS #OpenSource\\n\\nSecondary accounts at (do not contact me there):\\n🐘 infosec.space/@Em0nM4stodon\\n🐘 mastodon.social/@Em0nM4stodon\\n\\n#nobridge #nobot #noai #noindex #nosearch #noarchive \\n\\nThis is a personal account. Opinions expressed here are my own and do not necessarily reflect my employer. Especially emojis :awesome:\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/108/197/851/470/625/041/original/f56f05846a226449.jpg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/108/197/851/470/625/041/original/7c3da3c2e19d6748.jpeg\",\"nip05\":\"Em0nM4stodon@infosec-exchange.mostr.pub\",\"fields\":[[\"Privacy Guides Articles\",\"https://www.privacyguides.org/articles/author/em/\"],[\"Web\",\"https://emontheinternet.me\"],[\"Blog\",\"https://controlaltdelete.technology\"],[\"Code\",\"https://snakecase.software\"]]}","created_at":1759429387,"id":"0b4a3cdf879aef74c0cc50708c43f5e16008173243b5f9cc57a5d52a8fea0e94","kind":0,"pubkey":"324a744a05e221eb6ed9afe1a1c85bb116cb460ca08b7a0bcc85bb283de694b8","sig":"97e7a338d6b0ec5f891efc5e33aa47cb83f99741634823be5ec15b5eac34ee8e3151a770eb5f2df1ecab73e5eb976e9b7067d1daf15963e81012d57ad89f0042","tags":[["emoji","awesome","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/028/579/original/dcea540b6fc9cffd.png"],["emoji","official_verified","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/162/396/original/70b97769f901fd31.png"],["proxy","https://infosec.exchange/users/Em0nM4stodon","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:06.150] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"ea92318514d3ed6fae107e75ff9d8a531cd6e87a5a3e2547d0edc8949f1d08c5","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"02e25a84b45390192ee416afb9eecd7b1a28e3a47e489663626c7588a514cd80f142ed161cb2560bed1bc0056890439c486ab7f0513a8b2d4efa6f0486f27edf","tags":[]}] +[14:25:06.210] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot\",\"display_name\":\"AirportStatusBot\",\"about\":\"This is a social media bot that will post delay information for airports in the United States.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"8b2bb6edf15559db6032bc1eef6430775886d67db7d729b849c9bdb52884608f","kind":0,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"94312dc8ee3000a8ea95e20cd86b7ab641d5d9001368e16e91f73a45201097af85fb812ea2b706a448773975b2caa01da773d993617a62a532639b005793e54f","tags":[]}] +[14:25:06.271] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_lax\",\"display_name\":\"AirportStatusBot (LAX)\",\"about\":\"This is a social media bot that will post delay information for Los Angeles International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"865beb0554758c65eec1c734d4acd1c1caa78195fd581dab3642a74e5a71e501","kind":0,"pubkey":"ff4cf7c72c73c106237c84501f7c53c8a46c986c8129852c73ad620ed69f43c2","sig":"fa48426bffad191261b31dece16329d32429189a33fec216cf1e2305aed98157c8464bccc6cfa888a692dfe50f95c5d521700f6d32e8be9d8ebb29eea47e30bc","tags":[]}] +[14:25:06.331] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_ord\",\"display_name\":\"AirportStatusBot (ORD)\",\"about\":\"This is a social media bot that will post delay information for Chicago O'Hare International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"5fb9220779943a4e159f48bfc78b4f6ac3da469bcd70d7cde4ce255461cc9021","kind":0,"pubkey":"78daf7c1b4007c7ef80d89252f4afd9e290d52ae55807f4065a704359663c620","sig":"52c644f6d5a23c41b579e73b39ef1bbab7b682da6bed235eb15e3bd50756b1e24b18f9a212180188edfdab8e4a254d458c727a259499bc8017841dcaa398ee6e","tags":[]}] +[14:25:06.392] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:25:07.084] RECV nos.lol:443: b6e26f4090b44a68284f584d64d8976ae37cd209e816d82aa"],["p +[14:25:09.326] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:25:09.326] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:25:09.326] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:25:09.326] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:25:09.478] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Zapped ","created_at":1759429506,"id":"6602dc540a4ccfcb88d74426762399f48545d3a85f710a8ec02954ab42361b35","kind":1,"pubkey":"f9c8838736f5a0b611ed2c458a8ae7a480802e4ec38e52e96483986ca44ce612","sig":"0f8e1137c408c72b0c9c8f0a1d5db996dd4fdf56c35ee2f1a531b830536a7210284e9e86198c6078564d2139c56780605c65ae591c8dce760c4e828607885204","tags":[["alt","A short note: Zapped "],["e","e2036afff2a51788e172db94df0a8b5dbf9fbcfbfd5a2cdd5ee1021bcd25f4e1","wss://relay.primal.net/","root","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422"],["p","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422","wss://nos.lol/"]]}] +[14:25:09.538] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"At the time this happened Jose Ramirez was already in the top 10 (and top 5 in some) Guardians team categories like, Home Runs, RBI’s, Steals, Games Played, All Star appearances, perennial mvp (usually year and year out top 5 voting). I consider this his “George Brett Moment”. Most sports greats have that one lasting image that is legendary. This is probably it but it certainly didn’t define his greatness in Cleveland. Most true Guardians fans who actually paid attention would agree that he was great way before this. If anything it brought him to the national conversation.\"\nnostr:nprofile1qqswc3w8t44syr8g6hsywql42edjxecgdm4h6x2nuud69kr0d9xc6rcpz4mhxue69uhk2er9dchxummnw3ezumrpdejqzrrhwden5te0vfexytnfduq3samnwvaz7tmjv4kxz7fwwdhx7un59eek7cmfv9kq5pfec7","created_at":1759429502,"id":"f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"55da2491e05575343c2b4717af8ec41c2c688d9238e0d4c0866e4a49daa85698e71af3aa4fe02071231cf0f0ed3db74fd630887f7a8cb8c10706c744b25f61eb","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f","","mention"]]}] +[14:25:09.599] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is one of the problems I have with most books - they are filled with lies, and you can glean some truths by kind of filtering out the biases, listening to what's not said, etc but it's exhausting.\n\nFor some reason philosophers are usually but not always an exception.","created_at":1759429500,"id":"5faf03263965a007242ca31f2b52d77c35ed2daa4188e9981536c1ea3d9b8018","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"e935541a0fbb4409dd1af816bf6f310aa0fb5dd9b97b8f8d93fda829d547c8262d846e5073e58f1c10b65f0311d0caa926f8a89e00234de86b7249c6d81df772","tags":[["e","be30626aa378bd40ab1f69c30b47a3e7e3e58fe48baec62a6a9a7ed8f8c5dda3","wss://nostr.oxtr.dev","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:25:09.660] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:25 ------------✄","created_at":1759429500,"id":"4c29eda82c12c803ad986dc78c0cfe4ed33ef90df3f868df623fcce8ed12a69f","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"84d76946c7a973b1978bc7d4f30c3c8508e3584e0657eced7f12b19eaf9ec6b5bd1e23115a852adf3819d9d2059a0c5e599ecfdbeb521fea8634ff632bec09f6","tags":[]}] +[14:25:09.720] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"fuck, i want one aswell.","created_at":1759429497,"id":"30cbae408b721b956f7bb16137c5efe747a6332d5ada8a683333c74e4939a3f9","kind":1,"pubkey":"2bc1cc9268507667c92ea0ec6aa652fc78f1185a9fc9d976910aa6f237811ea5","sig":"c536fac7d83ae2c2c3fc95c7d9b12ada51cd42f3271ad629039dbfa4f5bbc10725e4576ce3174425b302c23eb443957b57bcf5047f012dd7dd55456f3f697fe7","tags":[["e","66a5326113be9221cd5193a00f2799959bccd8f91b9f254849362c20d1dbb678","wss://nostr.oxtr.dev","root","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["e","c1778ec702e924871074b1b6b00da61a2df715cb330e486cf130812f7333fb16","wss://nostr.oxtr.dev/","reply","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"]]}] +[14:25:09.781] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドロケイ好きだったな\n隠れといて、足速い人を率先して逃すやつやってた","created_at":1759429494,"id":"51b766e62eb7792a661b7d85a0045067e04b836613005cb7b0e63bc3d50ebdee","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c92e3ec3ffeb3bedcf6365a715406ecc8f99d2551344a9ee717bda6b5781756bf236d06ba68f2e3726767386a9b8d46e41b7a6616362c04b70fc1b2f4a5ae01e","tags":[]}] +[14:25:09.841] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"KeyboardEvent: keyIdentifier property\"\nhttps://developer.mozilla.org/ja/docs/Web/API/KeyboardEvent/keyIdentifier","created_at":1759429493,"id":"22917ed92b0164379fe8659bd289c3e8afab3daf0e551590ba39230b258216d2","kind":1,"pubkey":"4f129b892cf19a3dd2eb6e6bb097349e88e9fb51c035b119795900c8235ab5bb","sig":"220c8be5b7d0e25c93c1d55e1c70e52636082102967ed9b81d91b46339a0e6f08284b5ef0a44b46256a0c0fc3c6ee36935583441b5d17370458d30113122a1ca","tags":[]}] +[14:25:09.902] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Was mich noch viel mehr stört. Diese „Journalisten“ können einfach einen Müll verzapfen ohne jegliche Konsequenzen. Und für so schlecht recherchierte Artikel noch Geld verdienen. ","created_at":1759429488,"id":"9329828e722c7a4b0d2c9580399b56997e667e57efe3cffc65f1ca892252c6d0","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"c7c36a600f983d6aeba4828ded4ba494eb6aebc2fe472ae5958a9ca9deda7cd27837d13b34218ea0f88c53bd17adf76dfebf06d1bb45fac6c9e6bd945da1d174","tags":[["e","9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","wss://nos.lol/","root","8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6"],["e","55fe34d51f31330caf54ba09760d223bec5fdbc3a5ca7913f2847b5e40ccab60","wss://Nostr.einundzwanzig.space","reply"],["p","9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","","mention"]]}] +[14:25:09.962] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fountain: https://fountain.fm/episode/PdcoEeJuuK6vcPrw46St\n\nYouTube: https://youtu.be/B-42u6oPS6s","created_at":1759429487,"id":"0791d4cfee5d066083cd5559994fb4fe1dd7a4f7746394015768d75296cb3eeb","kind":1,"pubkey":"e57fec0c802eaeacd7f204277ddb1f86eaa92e62cadd0d2697084cb4e3153bf8","sig":"5dcfa441ff4685082ef9ddee6496045e388b6cdd5a007b17be21127c4c62ac6af416cf809137cd3c8324648fac5077da38295c612043b4749980ab7f9775b8ee","tags":[["e","d40d5699bdf9dc19fabb3e86b4af1b23a07903a131fbe26978c74e95ee1f0699","wss://relay.primal.net","root"],["p","5ed4fa9d1de53613f2964ccd6d1c9e70841651080f3fc06effb8d7dfb7f52d85","wss://relay.primal.net","mention"],["p","f609d58b4253458768d9baf1b28ab4dfb5f6e690d99bb2760c83de3a840c3ea2","","mention"],["p","fd4b8c1b94b3038c742e02b4524a782ca545af3c9a516bffdeade6a63e0d101f","wss://relay.damus.io/","mention"],["p","b72238ceb7ef3547f698971b75cbaa0b5301f886909bd2fcca092b698e3f6e8b","wss://relay.nostr.band/","mention"],["p","adb164ecd9e0e0be59c223291ed1bf1c747682277a01d894a8163f72435ae605","wss://purplepag.es","mention"],["p","de7623f81c44e52697dd7b9ffa6183b333c3ea9111306213db147a0f0d9b7c4e","wss://nostr.bitcoiner.social","mention"],["p","e76d07d5cb7111ed01502ce04ab8f31a04af71db20aa60752e98a97d9fdf3285","wss://relay.nostrcheck.me","mention"],["p","bad0fd7de56e240026ffa52f75cc41891b5b7d9e6eceed5728223781f8307095","wss://relay.primal.net","mention"]]}] +[14:25:10.023] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Impressive !!! \n\nhttps://blossom.primal.net/2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0.gif","created_at":1759429485,"id":"67c944ddc2f7f3d428b227f202d6163ac8b36739bb36c9f63bb2c350c36c13f2","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"853e81c8a48340facd559a2b95ef39dbaf1d35f8dd7a04da489b5287b8f4c112492680e3d6dac11d56ee44d1546ef3e26959f2894b4993ad4af05d7e45156969","tags":[["alt","A short note: Impressive !!! \n\nhttps://blossom.primal.net/2933c4..."],["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["e","d3207c6106613816e640b846516d0588cf6a473834e552d725b4ee26d80f2815"],["e","bc3d1686b43a48acebb4a90d66d9d37b7c08138f52d90a16d26f6028f19a60a1","wss://relay.damus.io/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"],["r","https://blossom.primal.net/2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0.gif"],["imeta","url https://blossom.primal.net/2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0.gif","x 2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0","size 998241","m image/gif","dim 170x234","blurhash _B9@P0WCI:WVoLfjoM_LV@nio2WVofWU$mR+SebHoKWVo2J$axspjZa}jZW;wNa}W:bHjZWWo2NZa#oKoLayoLWVs;f6a}Woj[a|jtbHbHfQo1fQjaa}jZj[j[W;aya}f6","ox 2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0","alt "]]}] +[14:25:10.084] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:25:10.144] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:25:10.205] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:25:10.266] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:25:10.326] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:10.387] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:10.447] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:10.508] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"display_name\":\"Oshi (推し)\",\"name\":\"oshi\",\"nip05\":\"oshi@oshigood.us\",\"lud16\":\"oshi@coinos.io\",\"about\":\"⚡️Artisan Pecan Butter, Date Bars, and Chocolates. ₿itcoin and nostr only. \\n\\n#hodlbutter • #hodlbar • #bthcnodes\\n\\nCustom orders: oshigood@proton.me\\n\\nSimplex group chat: https://smp19.simplex.im/g#k1srY8O6XCiYbcLh6BY7lavWtpc2xLz2R8MXKfJsrJk\",\"picture\":\"https://image.nostr.build/a62937470157b7e9e349ea3baebffc92391754262538b257fe5eb54f79379b09.jpg\",\"website\":\"https://www.oshigood.us/\",\"banner\":\"https://image.nostr.build/70b92cc7446a452ccdf036d18ef7f5e2e0843b7b1a8fda39e99337862e96163e.jpg\",\"reactions\":false}","created_at":1759429433,"id":"5ff517f5cc88d9c2668b4e5dd85a409ce935707c93e2344a356ba19b8df96fd8","kind":0,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"f40ff0b9fa3b9c2288712633b9f4a158e3c18ef372806b12694f7c2e339fe6deedbf371a0077c81aa3ed0a2ec2053d2119dba65ed4d3cc8b856c3a73faa6c837","tags":[]}] +[14:25:10.568] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Em :official_verified:\",\"about\":\"Privacy Advocate. Security Passionate. Protector of Data. Tamer of Python. Lover of Encrypted Keys. Recycled Artist. Hardware Enthusiast. Fan of FOSS. Happy Mastodon Mentor to all newcomers!\\n\\nSpending most days writing, reading, and talking about privacy. Journalist at @privacyguides \\n\\nOpen-sourced & open-hearted.\\n(she/her) 🏳️‍🌈\\n\\n🔒 Privacy tips at: #TinyPrivacyTip \\n🐘 Mastodon tips at: #TinyMastodonTip\\n \\nOther hashtags I talk about: \\n#DigitalRights #HumanRights #Privacy #Security #Python #FOSS #FLOSS #OpenSource\\n\\nSecondary accounts at (do not contact me there):\\n🐘 infosec.space/@Em0nM4stodon\\n🐘 mastodon.social/@Em0nM4stodon\\n\\n#nobridge #nobot #noai #noindex #nosearch #noarchive \\n\\nThis is a personal account. Opinions expressed here are my own and do not necessarily reflect my employer. Especially emojis :awesome:\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/108/197/851/470/625/041/original/f56f05846a226449.jpg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/108/197/851/470/625/041/original/7c3da3c2e19d6748.jpeg\",\"nip05\":\"Em0nM4stodon@infosec-exchange.mostr.pub\",\"fields\":[[\"Privacy Guides Articles\",\"https://www.privacyguides.org/articles/author/em/\"],[\"Web\",\"https://emontheinternet.me\"],[\"Blog\",\"https://controlaltdelete.technology\"],[\"Code\",\"https://snakecase.software\"]]}","created_at":1759429387,"id":"0b4a3cdf879aef74c0cc50708c43f5e16008173243b5f9cc57a5d52a8fea0e94","kind":0,"pubkey":"324a744a05e221eb6ed9afe1a1c85bb116cb460ca08b7a0bcc85bb283de694b8","sig":"97e7a338d6b0ec5f891efc5e33aa47cb83f99741634823be5ec15b5eac34ee8e3151a770eb5f2df1ecab73e5eb976e9b7067d1daf15963e81012d57ad89f0042","tags":[["emoji","awesome","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/028/579/original/dcea540b6fc9cffd.png"],["emoji","official_verified","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/162/396/original/70b97769f901fd31.png"],["proxy","https://infosec.exchange/users/Em0nM4stodon","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:10.629] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"ea92318514d3ed6fae107e75ff9d8a531cd6e87a5a3e2547d0edc8949f1d08c5","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"02e25a84b45390192ee416afb9eecd7b1a28e3a47e489663626c7588a514cd80f142ed161cb2560bed1bc0056890439c486ab7f0513a8b2d4efa6f0486f27edf","tags":[]}] +[14:25:10.689] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot\",\"display_name\":\"AirportStatusBot\",\"about\":\"This is a social media bot that will post delay information for airports in the United States.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"8b2bb6edf15559db6032bc1eef6430775886d67db7d729b849c9bdb52884608f","kind":0,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"94312dc8ee3000a8ea95e20cd86b7ab641d5d9001368e16e91f73a45201097af85fb812ea2b706a448773975b2caa01da773d993617a62a532639b005793e54f","tags":[]}] +[14:25:10.750] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:25:11.475] RECV nos.lol:443: b6e26f4090b44a68284f584d64d8976ae37cd209e816d82aa"],["p +[14:25:14.295] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:25:14.295] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:25:14.296] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:25:14.296] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:25:14.446] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Zapped ","created_at":1759429506,"id":"6602dc540a4ccfcb88d74426762399f48545d3a85f710a8ec02954ab42361b35","kind":1,"pubkey":"f9c8838736f5a0b611ed2c458a8ae7a480802e4ec38e52e96483986ca44ce612","sig":"0f8e1137c408c72b0c9c8f0a1d5db996dd4fdf56c35ee2f1a531b830536a7210284e9e86198c6078564d2139c56780605c65ae591c8dce760c4e828607885204","tags":[["alt","A short note: Zapped "],["e","e2036afff2a51788e172db94df0a8b5dbf9fbcfbfd5a2cdd5ee1021bcd25f4e1","wss://relay.primal.net/","root","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422"],["p","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422","wss://nos.lol/"]]}] +[14:25:14.506] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"At the time this happened Jose Ramirez was already in the top 10 (and top 5 in some) Guardians team categories like, Home Runs, RBI’s, Steals, Games Played, All Star appearances, perennial mvp (usually year and year out top 5 voting). I consider this his “George Brett Moment”. Most sports greats have that one lasting image that is legendary. This is probably it but it certainly didn’t define his greatness in Cleveland. Most true Guardians fans who actually paid attention would agree that he was great way before this. If anything it brought him to the national conversation.\"\nnostr:nprofile1qqswc3w8t44syr8g6hsywql42edjxecgdm4h6x2nuud69kr0d9xc6rcpz4mhxue69uhk2er9dchxummnw3ezumrpdejqzrrhwden5te0vfexytnfduq3samnwvaz7tmjv4kxz7fwwdhx7un59eek7cmfv9kq5pfec7","created_at":1759429502,"id":"f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"55da2491e05575343c2b4717af8ec41c2c688d9238e0d4c0866e4a49daa85698e71af3aa4fe02071231cf0f0ed3db74fd630887f7a8cb8c10706c744b25f61eb","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f","","mention"]]}] +[14:25:14.567] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is one of the problems I have with most books - they are filled with lies, and you can glean some truths by kind of filtering out the biases, listening to what's not said, etc but it's exhausting.\n\nFor some reason philosophers are usually but not always an exception.","created_at":1759429500,"id":"5faf03263965a007242ca31f2b52d77c35ed2daa4188e9981536c1ea3d9b8018","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"e935541a0fbb4409dd1af816bf6f310aa0fb5dd9b97b8f8d93fda829d547c8262d846e5073e58f1c10b65f0311d0caa926f8a89e00234de86b7249c6d81df772","tags":[["e","be30626aa378bd40ab1f69c30b47a3e7e3e58fe48baec62a6a9a7ed8f8c5dda3","wss://nostr.oxtr.dev","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:25:14.628] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:25 ------------✄","created_at":1759429500,"id":"4c29eda82c12c803ad986dc78c0cfe4ed33ef90df3f868df623fcce8ed12a69f","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"84d76946c7a973b1978bc7d4f30c3c8508e3584e0657eced7f12b19eaf9ec6b5bd1e23115a852adf3819d9d2059a0c5e599ecfdbeb521fea8634ff632bec09f6","tags":[]}] +[14:25:14.688] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"fuck, i want one aswell.","created_at":1759429497,"id":"30cbae408b721b956f7bb16137c5efe747a6332d5ada8a683333c74e4939a3f9","kind":1,"pubkey":"2bc1cc9268507667c92ea0ec6aa652fc78f1185a9fc9d976910aa6f237811ea5","sig":"c536fac7d83ae2c2c3fc95c7d9b12ada51cd42f3271ad629039dbfa4f5bbc10725e4576ce3174425b302c23eb443957b57bcf5047f012dd7dd55456f3f697fe7","tags":[["e","66a5326113be9221cd5193a00f2799959bccd8f91b9f254849362c20d1dbb678","wss://nostr.oxtr.dev","root","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["e","c1778ec702e924871074b1b6b00da61a2df715cb330e486cf130812f7333fb16","wss://nostr.oxtr.dev/","reply","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"]]}] +[14:25:14.749] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドロケイ好きだったな\n隠れといて、足速い人を率先して逃すやつやってた","created_at":1759429494,"id":"51b766e62eb7792a661b7d85a0045067e04b836613005cb7b0e63bc3d50ebdee","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c92e3ec3ffeb3bedcf6365a715406ecc8f99d2551344a9ee717bda6b5781756bf236d06ba68f2e3726767386a9b8d46e41b7a6616362c04b70fc1b2f4a5ae01e","tags":[]}] +[14:25:14.809] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"KeyboardEvent: keyIdentifier property\"\nhttps://developer.mozilla.org/ja/docs/Web/API/KeyboardEvent/keyIdentifier","created_at":1759429493,"id":"22917ed92b0164379fe8659bd289c3e8afab3daf0e551590ba39230b258216d2","kind":1,"pubkey":"4f129b892cf19a3dd2eb6e6bb097349e88e9fb51c035b119795900c8235ab5bb","sig":"220c8be5b7d0e25c93c1d55e1c70e52636082102967ed9b81d91b46339a0e6f08284b5ef0a44b46256a0c0fc3c6ee36935583441b5d17370458d30113122a1ca","tags":[]}] +[14:25:14.870] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Was mich noch viel mehr stört. Diese „Journalisten“ können einfach einen Müll verzapfen ohne jegliche Konsequenzen. Und für so schlecht recherchierte Artikel noch Geld verdienen. ","created_at":1759429488,"id":"9329828e722c7a4b0d2c9580399b56997e667e57efe3cffc65f1ca892252c6d0","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"c7c36a600f983d6aeba4828ded4ba494eb6aebc2fe472ae5958a9ca9deda7cd27837d13b34218ea0f88c53bd17adf76dfebf06d1bb45fac6c9e6bd945da1d174","tags":[["e","9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","wss://nos.lol/","root","8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6"],["e","55fe34d51f31330caf54ba09760d223bec5fdbc3a5ca7913f2847b5e40ccab60","wss://Nostr.einundzwanzig.space","reply"],["p","9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","","mention"]]}] +[14:25:14.930] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fountain: https://fountain.fm/episode/PdcoEeJuuK6vcPrw46St\n\nYouTube: https://youtu.be/B-42u6oPS6s","created_at":1759429487,"id":"0791d4cfee5d066083cd5559994fb4fe1dd7a4f7746394015768d75296cb3eeb","kind":1,"pubkey":"e57fec0c802eaeacd7f204277ddb1f86eaa92e62cadd0d2697084cb4e3153bf8","sig":"5dcfa441ff4685082ef9ddee6496045e388b6cdd5a007b17be21127c4c62ac6af416cf809137cd3c8324648fac5077da38295c612043b4749980ab7f9775b8ee","tags":[["e","d40d5699bdf9dc19fabb3e86b4af1b23a07903a131fbe26978c74e95ee1f0699","wss://relay.primal.net","root"],["p","5ed4fa9d1de53613f2964ccd6d1c9e70841651080f3fc06effb8d7dfb7f52d85","wss://relay.primal.net","mention"],["p","f609d58b4253458768d9baf1b28ab4dfb5f6e690d99bb2760c83de3a840c3ea2","","mention"],["p","fd4b8c1b94b3038c742e02b4524a782ca545af3c9a516bffdeade6a63e0d101f","wss://relay.damus.io/","mention"],["p","b72238ceb7ef3547f698971b75cbaa0b5301f886909bd2fcca092b698e3f6e8b","wss://relay.nostr.band/","mention"],["p","adb164ecd9e0e0be59c223291ed1bf1c747682277a01d894a8163f72435ae605","wss://purplepag.es","mention"],["p","de7623f81c44e52697dd7b9ffa6183b333c3ea9111306213db147a0f0d9b7c4e","wss://nostr.bitcoiner.social","mention"],["p","e76d07d5cb7111ed01502ce04ab8f31a04af71db20aa60752e98a97d9fdf3285","wss://relay.nostrcheck.me","mention"],["p","bad0fd7de56e240026ffa52f75cc41891b5b7d9e6eceed5728223781f8307095","wss://relay.primal.net","mention"]]}] +[14:25:14.991] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Impressive !!! \n\nhttps://blossom.primal.net/2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0.gif","created_at":1759429485,"id":"67c944ddc2f7f3d428b227f202d6163ac8b36739bb36c9f63bb2c350c36c13f2","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"853e81c8a48340facd559a2b95ef39dbaf1d35f8dd7a04da489b5287b8f4c112492680e3d6dac11d56ee44d1546ef3e26959f2894b4993ad4af05d7e45156969","tags":[["alt","A short note: Impressive !!! \n\nhttps://blossom.primal.net/2933c4..."],["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["e","d3207c6106613816e640b846516d0588cf6a473834e552d725b4ee26d80f2815"],["e","bc3d1686b43a48acebb4a90d66d9d37b7c08138f52d90a16d26f6028f19a60a1","wss://relay.damus.io/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"],["r","https://blossom.primal.net/2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0.gif"],["imeta","url https://blossom.primal.net/2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0.gif","x 2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0","size 998241","m image/gif","dim 170x234","blurhash _B9@P0WCI:WVoLfjoM_LV@nio2WVofWU$mR+SebHoKWVo2J$axspjZa}jZW;wNa}W:bHjZWWo2NZa#oKoLayoLWVs;f6a}Woj[a|jtbHbHfQo1fQjaa}jZj[j[W;aya}f6","ox 2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0","alt "]]}] +[14:25:15.051] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:25:15.112] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:25:15.172] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:25:15.233] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:25:15.294] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:15.354] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:15.415] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:15.475] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"display_name\":\"Oshi (推し)\",\"name\":\"oshi\",\"nip05\":\"oshi@oshigood.us\",\"lud16\":\"oshi@coinos.io\",\"about\":\"⚡️Artisan Pecan Butter, Date Bars, and Chocolates. ₿itcoin and nostr only. \\n\\n#hodlbutter • #hodlbar • #bthcnodes\\n\\nCustom orders: oshigood@proton.me\\n\\nSimplex group chat: https://smp19.simplex.im/g#k1srY8O6XCiYbcLh6BY7lavWtpc2xLz2R8MXKfJsrJk\",\"picture\":\"https://image.nostr.build/a62937470157b7e9e349ea3baebffc92391754262538b257fe5eb54f79379b09.jpg\",\"website\":\"https://www.oshigood.us/\",\"banner\":\"https://image.nostr.build/70b92cc7446a452ccdf036d18ef7f5e2e0843b7b1a8fda39e99337862e96163e.jpg\",\"reactions\":false}","created_at":1759429433,"id":"5ff517f5cc88d9c2668b4e5dd85a409ce935707c93e2344a356ba19b8df96fd8","kind":0,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"f40ff0b9fa3b9c2288712633b9f4a158e3c18ef372806b12694f7c2e339fe6deedbf371a0077c81aa3ed0a2ec2053d2119dba65ed4d3cc8b856c3a73faa6c837","tags":[]}] +[14:25:15.536] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Em :official_verified:\",\"about\":\"Privacy Advocate. Security Passionate. Protector of Data. Tamer of Python. Lover of Encrypted Keys. Recycled Artist. Hardware Enthusiast. Fan of FOSS. Happy Mastodon Mentor to all newcomers!\\n\\nSpending most days writing, reading, and talking about privacy. Journalist at @privacyguides \\n\\nOpen-sourced & open-hearted.\\n(she/her) 🏳️‍🌈\\n\\n🔒 Privacy tips at: #TinyPrivacyTip \\n🐘 Mastodon tips at: #TinyMastodonTip\\n \\nOther hashtags I talk about: \\n#DigitalRights #HumanRights #Privacy #Security #Python #FOSS #FLOSS #OpenSource\\n\\nSecondary accounts at (do not contact me there):\\n🐘 infosec.space/@Em0nM4stodon\\n🐘 mastodon.social/@Em0nM4stodon\\n\\n#nobridge #nobot #noai #noindex #nosearch #noarchive \\n\\nThis is a personal account. Opinions expressed here are my own and do not necessarily reflect my employer. Especially emojis :awesome:\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/108/197/851/470/625/041/original/f56f05846a226449.jpg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/108/197/851/470/625/041/original/7c3da3c2e19d6748.jpeg\",\"nip05\":\"Em0nM4stodon@infosec-exchange.mostr.pub\",\"fields\":[[\"Privacy Guides Articles\",\"https://www.privacyguides.org/articles/author/em/\"],[\"Web\",\"https://emontheinternet.me\"],[\"Blog\",\"https://controlaltdelete.technology\"],[\"Code\",\"https://snakecase.software\"]]}","created_at":1759429387,"id":"0b4a3cdf879aef74c0cc50708c43f5e16008173243b5f9cc57a5d52a8fea0e94","kind":0,"pubkey":"324a744a05e221eb6ed9afe1a1c85bb116cb460ca08b7a0bcc85bb283de694b8","sig":"97e7a338d6b0ec5f891efc5e33aa47cb83f99741634823be5ec15b5eac34ee8e3151a770eb5f2df1ecab73e5eb976e9b7067d1daf15963e81012d57ad89f0042","tags":[["emoji","awesome","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/028/579/original/dcea540b6fc9cffd.png"],["emoji","official_verified","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/162/396/original/70b97769f901fd31.png"],["proxy","https://infosec.exchange/users/Em0nM4stodon","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:15.597] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"ea92318514d3ed6fae107e75ff9d8a531cd6e87a5a3e2547d0edc8949f1d08c5","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"02e25a84b45390192ee416afb9eecd7b1a28e3a47e489663626c7588a514cd80f142ed161cb2560bed1bc0056890439c486ab7f0513a8b2d4efa6f0486f27edf","tags":[]}] +[14:25:15.657] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot\",\"display_name\":\"AirportStatusBot\",\"about\":\"This is a social media bot that will post delay information for airports in the United States.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"8b2bb6edf15559db6032bc1eef6430775886d67db7d729b849c9bdb52884608f","kind":0,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"94312dc8ee3000a8ea95e20cd86b7ab641d5d9001368e16e91f73a45201097af85fb812ea2b706a448773975b2caa01da773d993617a62a532639b005793e54f","tags":[]}] +[14:25:15.718] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:25:15.778] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429510,"id":"2a70b4417e0e2dbd7753b8aa3166310f0bfc9d200ae066b9da1e2ebc50d49e1f","kind":3,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"da21770b2c092afd9bc8a74ac9c72f5b513de2408af25a4483590a1075d900ef40b857590075cf745cceeaacd863bd868683cf302416a79bc4cab8e15a598d29","tags":[["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","cf578d5b8fb7c62563a803a30bd2fc3a952ca7ba9652ee2ce43a991316d8c157"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","b12deee231e85bec19f3e4e3fee5893d449b8ce159ed2adcecf60262afca6d50"],["p","20bde2ebe3b256b1c161ad9a887aba7dae9c4c63a50c9c78ce89ea361efa631e"],["p","af7673fb09d598eb63272cd7e6c1d1614031cdfc084c460f5d549be335dc7630"],["p","8e71076fc49f8eef0e6d475c51f37d58116013912a9eb796f46287ebe9257b75"],["p","80f734108f37aec8cf64023514b9ae26bcaaed2a13eb85ad3a8482da1168b1fc"],["p","a530f7f75b62f86073078fd0d82302508c9273ec846d19766ef41417eb820644"],["p","2355757c6ec5e1766eba903dde5f545cac6da27d0dbacbf9725800ff5ad3e04d"],["p","805b34f708837dfb3e7f05815ac5760564628b58d5a0ce839ccbb6ef3620fac3"],["p","1be9326168faf4f5ef18770ab163fe2c26bc049d21298186377cdc033bf69614"],["p","f96073dc6b6db9e4d256d9a3afd7222c70ba0b9fd36bf20608f6a43c5951c7c2"],["p","3814facc571e06311cfea11760a4ecb3f28d54adc14e6e01d016a82986fe153b"],["p","80e81c631dff7e88e704b15c6406b622b5fd3f41bc039eb0f4b9e75d2f6c61dd"],["p","6b4ec98f02e647e01440b473bbd92a7fae21e01b6aa6c65e32db94a36092272e"],["p","d2384c4ac623eb9f15ae4cb32ee7a9b03e0202802d52f2395f2ee8f6433151aa"],["p","637ae527280d7a0b26bb6c2b75bad172f5bd6c8a8b1907b102229680cf0c3868"],["p","af8b4ac37ae33b3ca464681b08cf1f6a657f82bb8b958fd82edbde8abf36b940"],["p","135c872ba7d8321f7bc440b5bd49e8adac64f76385e977a1f4a4f49c2c36dd84"],["p","b1da6019136283a26dd6eed2332a3e04b0b88b2281946cb17a16a626a3bf4a62"],["p","4d6d388658271af489f6fc8458ddf010bd9268c1fed673352c0c6ae7fee13f23"]]}] +[14:25:16.504] RECV nos.lol:443: b6e26f4090b44a68284f584d64d8976ae37cd209e816d82aa"],["p +[14:25:18.714] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:25:18.714] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:25:18.714] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:25:18.714] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:25:18.865] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It has a nice climate though","created_at":1759429515,"id":"a1abc35f2c9218b189e4433393facfcc11446d9fc8cfb37c9c76dd30401605d0","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"4235e7f90a2ffbc72cec4c96fda31ca4c3920ceb7df2b32b2dbd9848ac734cfc81dfe6fb9f0354f3bd6f21963e5e60f9165fc47015f316d4f75006ea27303d4f","tags":[["alt","A short note: It has a nice climate though"],["e","a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","wss://nostr.bitcoiner.social/","root","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.primal.net/"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/"]]}] +[14:25:18.926] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Zapped ","created_at":1759429506,"id":"6602dc540a4ccfcb88d74426762399f48545d3a85f710a8ec02954ab42361b35","kind":1,"pubkey":"f9c8838736f5a0b611ed2c458a8ae7a480802e4ec38e52e96483986ca44ce612","sig":"0f8e1137c408c72b0c9c8f0a1d5db996dd4fdf56c35ee2f1a531b830536a7210284e9e86198c6078564d2139c56780605c65ae591c8dce760c4e828607885204","tags":[["alt","A short note: Zapped "],["e","e2036afff2a51788e172db94df0a8b5dbf9fbcfbfd5a2cdd5ee1021bcd25f4e1","wss://relay.primal.net/","root","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422"],["p","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422","wss://nos.lol/"]]}] +[14:25:18.987] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"At the time this happened Jose Ramirez was already in the top 10 (and top 5 in some) Guardians team categories like, Home Runs, RBI’s, Steals, Games Played, All Star appearances, perennial mvp (usually year and year out top 5 voting). I consider this his “George Brett Moment”. Most sports greats have that one lasting image that is legendary. This is probably it but it certainly didn’t define his greatness in Cleveland. Most true Guardians fans who actually paid attention would agree that he was great way before this. If anything it brought him to the national conversation.\"\nnostr:nprofile1qqswc3w8t44syr8g6hsywql42edjxecgdm4h6x2nuud69kr0d9xc6rcpz4mhxue69uhk2er9dchxummnw3ezumrpdejqzrrhwden5te0vfexytnfduq3samnwvaz7tmjv4kxz7fwwdhx7un59eek7cmfv9kq5pfec7","created_at":1759429502,"id":"f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"55da2491e05575343c2b4717af8ec41c2c688d9238e0d4c0866e4a49daa85698e71af3aa4fe02071231cf0f0ed3db74fd630887f7a8cb8c10706c744b25f61eb","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f","","mention"]]}] +[14:25:19.047] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is one of the problems I have with most books - they are filled with lies, and you can glean some truths by kind of filtering out the biases, listening to what's not said, etc but it's exhausting.\n\nFor some reason philosophers are usually but not always an exception.","created_at":1759429500,"id":"5faf03263965a007242ca31f2b52d77c35ed2daa4188e9981536c1ea3d9b8018","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"e935541a0fbb4409dd1af816bf6f310aa0fb5dd9b97b8f8d93fda829d547c8262d846e5073e58f1c10b65f0311d0caa926f8a89e00234de86b7249c6d81df772","tags":[["e","be30626aa378bd40ab1f69c30b47a3e7e3e58fe48baec62a6a9a7ed8f8c5dda3","wss://nostr.oxtr.dev","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:25:19.108] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:25 ------------✄","created_at":1759429500,"id":"4c29eda82c12c803ad986dc78c0cfe4ed33ef90df3f868df623fcce8ed12a69f","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"84d76946c7a973b1978bc7d4f30c3c8508e3584e0657eced7f12b19eaf9ec6b5bd1e23115a852adf3819d9d2059a0c5e599ecfdbeb521fea8634ff632bec09f6","tags":[]}] +[14:25:19.168] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"fuck, i want one aswell.","created_at":1759429497,"id":"30cbae408b721b956f7bb16137c5efe747a6332d5ada8a683333c74e4939a3f9","kind":1,"pubkey":"2bc1cc9268507667c92ea0ec6aa652fc78f1185a9fc9d976910aa6f237811ea5","sig":"c536fac7d83ae2c2c3fc95c7d9b12ada51cd42f3271ad629039dbfa4f5bbc10725e4576ce3174425b302c23eb443957b57bcf5047f012dd7dd55456f3f697fe7","tags":[["e","66a5326113be9221cd5193a00f2799959bccd8f91b9f254849362c20d1dbb678","wss://nostr.oxtr.dev","root","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["e","c1778ec702e924871074b1b6b00da61a2df715cb330e486cf130812f7333fb16","wss://nostr.oxtr.dev/","reply","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"]]}] +[14:25:19.229] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドロケイ好きだったな\n隠れといて、足速い人を率先して逃すやつやってた","created_at":1759429494,"id":"51b766e62eb7792a661b7d85a0045067e04b836613005cb7b0e63bc3d50ebdee","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c92e3ec3ffeb3bedcf6365a715406ecc8f99d2551344a9ee717bda6b5781756bf236d06ba68f2e3726767386a9b8d46e41b7a6616362c04b70fc1b2f4a5ae01e","tags":[]}] +[14:25:19.290] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"KeyboardEvent: keyIdentifier property\"\nhttps://developer.mozilla.org/ja/docs/Web/API/KeyboardEvent/keyIdentifier","created_at":1759429493,"id":"22917ed92b0164379fe8659bd289c3e8afab3daf0e551590ba39230b258216d2","kind":1,"pubkey":"4f129b892cf19a3dd2eb6e6bb097349e88e9fb51c035b119795900c8235ab5bb","sig":"220c8be5b7d0e25c93c1d55e1c70e52636082102967ed9b81d91b46339a0e6f08284b5ef0a44b46256a0c0fc3c6ee36935583441b5d17370458d30113122a1ca","tags":[]}] +[14:25:19.350] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Was mich noch viel mehr stört. Diese „Journalisten“ können einfach einen Müll verzapfen ohne jegliche Konsequenzen. Und für so schlecht recherchierte Artikel noch Geld verdienen. ","created_at":1759429488,"id":"9329828e722c7a4b0d2c9580399b56997e667e57efe3cffc65f1ca892252c6d0","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"c7c36a600f983d6aeba4828ded4ba494eb6aebc2fe472ae5958a9ca9deda7cd27837d13b34218ea0f88c53bd17adf76dfebf06d1bb45fac6c9e6bd945da1d174","tags":[["e","9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","wss://nos.lol/","root","8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6"],["e","55fe34d51f31330caf54ba09760d223bec5fdbc3a5ca7913f2847b5e40ccab60","wss://Nostr.einundzwanzig.space","reply"],["p","9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","","mention"]]}] +[14:25:19.410] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fountain: https://fountain.fm/episode/PdcoEeJuuK6vcPrw46St\n\nYouTube: https://youtu.be/B-42u6oPS6s","created_at":1759429487,"id":"0791d4cfee5d066083cd5559994fb4fe1dd7a4f7746394015768d75296cb3eeb","kind":1,"pubkey":"e57fec0c802eaeacd7f204277ddb1f86eaa92e62cadd0d2697084cb4e3153bf8","sig":"5dcfa441ff4685082ef9ddee6496045e388b6cdd5a007b17be21127c4c62ac6af416cf809137cd3c8324648fac5077da38295c612043b4749980ab7f9775b8ee","tags":[["e","d40d5699bdf9dc19fabb3e86b4af1b23a07903a131fbe26978c74e95ee1f0699","wss://relay.primal.net","root"],["p","5ed4fa9d1de53613f2964ccd6d1c9e70841651080f3fc06effb8d7dfb7f52d85","wss://relay.primal.net","mention"],["p","f609d58b4253458768d9baf1b28ab4dfb5f6e690d99bb2760c83de3a840c3ea2","","mention"],["p","fd4b8c1b94b3038c742e02b4524a782ca545af3c9a516bffdeade6a63e0d101f","wss://relay.damus.io/","mention"],["p","b72238ceb7ef3547f698971b75cbaa0b5301f886909bd2fcca092b698e3f6e8b","wss://relay.nostr.band/","mention"],["p","adb164ecd9e0e0be59c223291ed1bf1c747682277a01d894a8163f72435ae605","wss://purplepag.es","mention"],["p","de7623f81c44e52697dd7b9ffa6183b333c3ea9111306213db147a0f0d9b7c4e","wss://nostr.bitcoiner.social","mention"],["p","e76d07d5cb7111ed01502ce04ab8f31a04af71db20aa60752e98a97d9fdf3285","wss://relay.nostrcheck.me","mention"],["p","bad0fd7de56e240026ffa52f75cc41891b5b7d9e6eceed5728223781f8307095","wss://relay.primal.net","mention"]]}] +[14:25:19.471] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:25:19.531] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:19.592] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:25:19.652] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:25:19.713] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:25:19.773] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:19.834] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:19.895] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:19.955] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"display_name\":\"Oshi (推し)\",\"name\":\"oshi\",\"nip05\":\"oshi@oshigood.us\",\"lud16\":\"oshi@coinos.io\",\"about\":\"⚡️Artisan Pecan Butter, Date Bars, and Chocolates. ₿itcoin and nostr only. \\n\\n#hodlbutter • #hodlbar • #bthcnodes\\n\\nCustom orders: oshigood@proton.me\\n\\nSimplex group chat: https://smp19.simplex.im/g#k1srY8O6XCiYbcLh6BY7lavWtpc2xLz2R8MXKfJsrJk\",\"picture\":\"https://image.nostr.build/a62937470157b7e9e349ea3baebffc92391754262538b257fe5eb54f79379b09.jpg\",\"website\":\"https://www.oshigood.us/\",\"banner\":\"https://image.nostr.build/70b92cc7446a452ccdf036d18ef7f5e2e0843b7b1a8fda39e99337862e96163e.jpg\",\"reactions\":false}","created_at":1759429433,"id":"5ff517f5cc88d9c2668b4e5dd85a409ce935707c93e2344a356ba19b8df96fd8","kind":0,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"f40ff0b9fa3b9c2288712633b9f4a158e3c18ef372806b12694f7c2e339fe6deedbf371a0077c81aa3ed0a2ec2053d2119dba65ed4d3cc8b856c3a73faa6c837","tags":[]}] +[14:25:20.016] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Em :official_verified:\",\"about\":\"Privacy Advocate. Security Passionate. Protector of Data. Tamer of Python. Lover of Encrypted Keys. Recycled Artist. Hardware Enthusiast. Fan of FOSS. Happy Mastodon Mentor to all newcomers!\\n\\nSpending most days writing, reading, and talking about privacy. Journalist at @privacyguides \\n\\nOpen-sourced & open-hearted.\\n(she/her) 🏳️‍🌈\\n\\n🔒 Privacy tips at: #TinyPrivacyTip \\n🐘 Mastodon tips at: #TinyMastodonTip\\n \\nOther hashtags I talk about: \\n#DigitalRights #HumanRights #Privacy #Security #Python #FOSS #FLOSS #OpenSource\\n\\nSecondary accounts at (do not contact me there):\\n🐘 infosec.space/@Em0nM4stodon\\n🐘 mastodon.social/@Em0nM4stodon\\n\\n#nobridge #nobot #noai #noindex #nosearch #noarchive \\n\\nThis is a personal account. Opinions expressed here are my own and do not necessarily reflect my employer. Especially emojis :awesome:\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/108/197/851/470/625/041/original/f56f05846a226449.jpg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/108/197/851/470/625/041/original/7c3da3c2e19d6748.jpeg\",\"nip05\":\"Em0nM4stodon@infosec-exchange.mostr.pub\",\"fields\":[[\"Privacy Guides Articles\",\"https://www.privacyguides.org/articles/author/em/\"],[\"Web\",\"https://emontheinternet.me\"],[\"Blog\",\"https://controlaltdelete.technology\"],[\"Code\",\"https://snakecase.software\"]]}","created_at":1759429387,"id":"0b4a3cdf879aef74c0cc50708c43f5e16008173243b5f9cc57a5d52a8fea0e94","kind":0,"pubkey":"324a744a05e221eb6ed9afe1a1c85bb116cb460ca08b7a0bcc85bb283de694b8","sig":"97e7a338d6b0ec5f891efc5e33aa47cb83f99741634823be5ec15b5eac34ee8e3151a770eb5f2df1ecab73e5eb976e9b7067d1daf15963e81012d57ad89f0042","tags":[["emoji","awesome","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/028/579/original/dcea540b6fc9cffd.png"],["emoji","official_verified","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/162/396/original/70b97769f901fd31.png"],["proxy","https://infosec.exchange/users/Em0nM4stodon","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:20.076] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"ea92318514d3ed6fae107e75ff9d8a531cd6e87a5a3e2547d0edc8949f1d08c5","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"02e25a84b45390192ee416afb9eecd7b1a28e3a47e489663626c7588a514cd80f142ed161cb2560bed1bc0056890439c486ab7f0513a8b2d4efa6f0486f27edf","tags":[]}] +[14:25:20.137] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:25:20.197] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429510,"id":"2a70b4417e0e2dbd7753b8aa3166310f0bfc9d200ae066b9da1e2ebc50d49e1f","kind":3,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"da21770b2c092afd9bc8a74ac9c72f5b513de2408af25a4483590a1075d900ef40b857590075cf745cceeaacd863bd868683cf302416a79bc4cab8e15a598d29","tags":[["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","cf578d5b8fb7c62563a803a30bd2fc3a952ca7ba9652ee2ce43a991316d8c157"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","b12deee231e85bec19f3e4e3fee5893d449b8ce159ed2adcecf60262afca6d50"],["p","20bde2ebe3b256b1c161ad9a887aba7dae9c4c63a50c9c78ce89ea361efa631e"],["p","af7673fb09d598eb63272cd7e6c1d1614031cdfc084c460f5d549be335dc7630"],["p","8e71076fc49f8eef0e6d475c51f37d58116013912a9eb796f46287ebe9257b75"],["p","80f734108f37aec8cf64023514b9ae26bcaaed2a13eb85ad3a8482da1168b1fc"],["p","a530f7f75b62f86073078fd0d82302508c9273ec846d19766ef41417eb820644"],["p","2355757c6ec5e1766eba903dde5f545cac6da27d0dbacbf9725800ff5ad3e04d"],["p","805b34f708837dfb3e7f05815ac5760564628b58d5a0ce839ccbb6ef3620fac3"],["p","1be9326168faf4f5ef18770ab163fe2c26bc049d21298186377cdc033bf69614"],["p","f96073dc6b6db9e4d256d9a3afd7222c70ba0b9fd36bf20608f6a43c5951c7c2"],["p","3814facc571e06311cfea11760a4ecb3f28d54adc14e6e01d016a82986fe153b"],["p","80e81c631dff7e88e704b15c6406b622b5fd3f41bc039eb0f4b9e75d2f6c61dd"],["p","6b4ec98f02e647e01440b473bbd92a7fae21e01b6aa6c65e32db94a36092272e"],["p","d2384c4ac623eb9f15ae4cb32ee7a9b03e0202802d52f2395f2ee8f6433151aa"],["p","637ae527280d7a0b26bb6c2b75bad172f5bd6c8a8b1907b102229680cf0c3868"],["p","af8b4ac37ae33b3ca464681b08cf1f6a657f82bb8b958fd82edbde8abf36b940"],["p","135c872ba7d8321f7bc440b5bd49e8adac64f76385e977a1f4a4f49c2c36dd84"],["p","b1da6019136283a26dd6eed2332a3e04b0b88b2281946cb17a16a626a3bf4a62"],["p","4d6d388658271af489f6fc8458ddf010bd9268c1fed673352c0c6ae7fee13f23"]]}] +[14:25:20.922] RECV nos.lol:443: b6e26f4090b44a68284f584d64d8976ae37cd209e816d82aa"],["p +[14:25:23.732] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:25:23.732] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:25:23.732] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:25:23.732] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:25:23.883] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It has a nice climate though","created_at":1759429515,"id":"a1abc35f2c9218b189e4433393facfcc11446d9fc8cfb37c9c76dd30401605d0","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"4235e7f90a2ffbc72cec4c96fda31ca4c3920ceb7df2b32b2dbd9848ac734cfc81dfe6fb9f0354f3bd6f21963e5e60f9165fc47015f316d4f75006ea27303d4f","tags":[["alt","A short note: It has a nice climate though"],["e","a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","wss://nostr.bitcoiner.social/","root","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.primal.net/"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/"]]}] +[14:25:23.943] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Zapped ","created_at":1759429506,"id":"6602dc540a4ccfcb88d74426762399f48545d3a85f710a8ec02954ab42361b35","kind":1,"pubkey":"f9c8838736f5a0b611ed2c458a8ae7a480802e4ec38e52e96483986ca44ce612","sig":"0f8e1137c408c72b0c9c8f0a1d5db996dd4fdf56c35ee2f1a531b830536a7210284e9e86198c6078564d2139c56780605c65ae591c8dce760c4e828607885204","tags":[["alt","A short note: Zapped "],["e","e2036afff2a51788e172db94df0a8b5dbf9fbcfbfd5a2cdd5ee1021bcd25f4e1","wss://relay.primal.net/","root","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422"],["p","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422","wss://nos.lol/"]]}] +[14:25:24.004] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"At the time this happened Jose Ramirez was already in the top 10 (and top 5 in some) Guardians team categories like, Home Runs, RBI’s, Steals, Games Played, All Star appearances, perennial mvp (usually year and year out top 5 voting). I consider this his “George Brett Moment”. Most sports greats have that one lasting image that is legendary. This is probably it but it certainly didn’t define his greatness in Cleveland. Most true Guardians fans who actually paid attention would agree that he was great way before this. If anything it brought him to the national conversation.\"\nnostr:nprofile1qqswc3w8t44syr8g6hsywql42edjxecgdm4h6x2nuud69kr0d9xc6rcpz4mhxue69uhk2er9dchxummnw3ezumrpdejqzrrhwden5te0vfexytnfduq3samnwvaz7tmjv4kxz7fwwdhx7un59eek7cmfv9kq5pfec7","created_at":1759429502,"id":"f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"55da2491e05575343c2b4717af8ec41c2c688d9238e0d4c0866e4a49daa85698e71af3aa4fe02071231cf0f0ed3db74fd630887f7a8cb8c10706c744b25f61eb","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f","","mention"]]}] +[14:25:24.064] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is one of the problems I have with most books - they are filled with lies, and you can glean some truths by kind of filtering out the biases, listening to what's not said, etc but it's exhausting.\n\nFor some reason philosophers are usually but not always an exception.","created_at":1759429500,"id":"5faf03263965a007242ca31f2b52d77c35ed2daa4188e9981536c1ea3d9b8018","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"e935541a0fbb4409dd1af816bf6f310aa0fb5dd9b97b8f8d93fda829d547c8262d846e5073e58f1c10b65f0311d0caa926f8a89e00234de86b7249c6d81df772","tags":[["e","be30626aa378bd40ab1f69c30b47a3e7e3e58fe48baec62a6a9a7ed8f8c5dda3","wss://nostr.oxtr.dev","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:25:24.125] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:25 ------------✄","created_at":1759429500,"id":"4c29eda82c12c803ad986dc78c0cfe4ed33ef90df3f868df623fcce8ed12a69f","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"84d76946c7a973b1978bc7d4f30c3c8508e3584e0657eced7f12b19eaf9ec6b5bd1e23115a852adf3819d9d2059a0c5e599ecfdbeb521fea8634ff632bec09f6","tags":[]}] +[14:25:24.185] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"fuck, i want one aswell.","created_at":1759429497,"id":"30cbae408b721b956f7bb16137c5efe747a6332d5ada8a683333c74e4939a3f9","kind":1,"pubkey":"2bc1cc9268507667c92ea0ec6aa652fc78f1185a9fc9d976910aa6f237811ea5","sig":"c536fac7d83ae2c2c3fc95c7d9b12ada51cd42f3271ad629039dbfa4f5bbc10725e4576ce3174425b302c23eb443957b57bcf5047f012dd7dd55456f3f697fe7","tags":[["e","66a5326113be9221cd5193a00f2799959bccd8f91b9f254849362c20d1dbb678","wss://nostr.oxtr.dev","root","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["e","c1778ec702e924871074b1b6b00da61a2df715cb330e486cf130812f7333fb16","wss://nostr.oxtr.dev/","reply","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"]]}] +[14:25:24.246] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドロケイ好きだったな\n隠れといて、足速い人を率先して逃すやつやってた","created_at":1759429494,"id":"51b766e62eb7792a661b7d85a0045067e04b836613005cb7b0e63bc3d50ebdee","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c92e3ec3ffeb3bedcf6365a715406ecc8f99d2551344a9ee717bda6b5781756bf236d06ba68f2e3726767386a9b8d46e41b7a6616362c04b70fc1b2f4a5ae01e","tags":[]}] +[14:25:24.306] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"KeyboardEvent: keyIdentifier property\"\nhttps://developer.mozilla.org/ja/docs/Web/API/KeyboardEvent/keyIdentifier","created_at":1759429493,"id":"22917ed92b0164379fe8659bd289c3e8afab3daf0e551590ba39230b258216d2","kind":1,"pubkey":"4f129b892cf19a3dd2eb6e6bb097349e88e9fb51c035b119795900c8235ab5bb","sig":"220c8be5b7d0e25c93c1d55e1c70e52636082102967ed9b81d91b46339a0e6f08284b5ef0a44b46256a0c0fc3c6ee36935583441b5d17370458d30113122a1ca","tags":[]}] +[14:25:24.367] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Was mich noch viel mehr stört. Diese „Journalisten“ können einfach einen Müll verzapfen ohne jegliche Konsequenzen. Und für so schlecht recherchierte Artikel noch Geld verdienen. ","created_at":1759429488,"id":"9329828e722c7a4b0d2c9580399b56997e667e57efe3cffc65f1ca892252c6d0","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"c7c36a600f983d6aeba4828ded4ba494eb6aebc2fe472ae5958a9ca9deda7cd27837d13b34218ea0f88c53bd17adf76dfebf06d1bb45fac6c9e6bd945da1d174","tags":[["e","9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","wss://nos.lol/","root","8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6"],["e","55fe34d51f31330caf54ba09760d223bec5fdbc3a5ca7913f2847b5e40ccab60","wss://Nostr.einundzwanzig.space","reply"],["p","9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","","mention"]]}] +[14:25:24.427] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fountain: https://fountain.fm/episode/PdcoEeJuuK6vcPrw46St\n\nYouTube: https://youtu.be/B-42u6oPS6s","created_at":1759429487,"id":"0791d4cfee5d066083cd5559994fb4fe1dd7a4f7746394015768d75296cb3eeb","kind":1,"pubkey":"e57fec0c802eaeacd7f204277ddb1f86eaa92e62cadd0d2697084cb4e3153bf8","sig":"5dcfa441ff4685082ef9ddee6496045e388b6cdd5a007b17be21127c4c62ac6af416cf809137cd3c8324648fac5077da38295c612043b4749980ab7f9775b8ee","tags":[["e","d40d5699bdf9dc19fabb3e86b4af1b23a07903a131fbe26978c74e95ee1f0699","wss://relay.primal.net","root"],["p","5ed4fa9d1de53613f2964ccd6d1c9e70841651080f3fc06effb8d7dfb7f52d85","wss://relay.primal.net","mention"],["p","f609d58b4253458768d9baf1b28ab4dfb5f6e690d99bb2760c83de3a840c3ea2","","mention"],["p","fd4b8c1b94b3038c742e02b4524a782ca545af3c9a516bffdeade6a63e0d101f","wss://relay.damus.io/","mention"],["p","b72238ceb7ef3547f698971b75cbaa0b5301f886909bd2fcca092b698e3f6e8b","wss://relay.nostr.band/","mention"],["p","adb164ecd9e0e0be59c223291ed1bf1c747682277a01d894a8163f72435ae605","wss://purplepag.es","mention"],["p","de7623f81c44e52697dd7b9ffa6183b333c3ea9111306213db147a0f0d9b7c4e","wss://nostr.bitcoiner.social","mention"],["p","e76d07d5cb7111ed01502ce04ab8f31a04af71db20aa60752e98a97d9fdf3285","wss://relay.nostrcheck.me","mention"],["p","bad0fd7de56e240026ffa52f75cc41891b5b7d9e6eceed5728223781f8307095","wss://relay.primal.net","mention"]]}] +[14:25:24.488] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:25:24.548] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:24.609] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:25:24.669] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:25:24.730] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:25:24.790] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:24.851] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:24.911] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:24.972] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"display_name\":\"Oshi (推し)\",\"name\":\"oshi\",\"nip05\":\"oshi@oshigood.us\",\"lud16\":\"oshi@coinos.io\",\"about\":\"⚡️Artisan Pecan Butter, Date Bars, and Chocolates. ₿itcoin and nostr only. \\n\\n#hodlbutter • #hodlbar • #bthcnodes\\n\\nCustom orders: oshigood@proton.me\\n\\nSimplex group chat: https://smp19.simplex.im/g#k1srY8O6XCiYbcLh6BY7lavWtpc2xLz2R8MXKfJsrJk\",\"picture\":\"https://image.nostr.build/a62937470157b7e9e349ea3baebffc92391754262538b257fe5eb54f79379b09.jpg\",\"website\":\"https://www.oshigood.us/\",\"banner\":\"https://image.nostr.build/70b92cc7446a452ccdf036d18ef7f5e2e0843b7b1a8fda39e99337862e96163e.jpg\",\"reactions\":false}","created_at":1759429433,"id":"5ff517f5cc88d9c2668b4e5dd85a409ce935707c93e2344a356ba19b8df96fd8","kind":0,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"f40ff0b9fa3b9c2288712633b9f4a158e3c18ef372806b12694f7c2e339fe6deedbf371a0077c81aa3ed0a2ec2053d2119dba65ed4d3cc8b856c3a73faa6c837","tags":[]}] +[14:25:25.032] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Em :official_verified:\",\"about\":\"Privacy Advocate. Security Passionate. Protector of Data. Tamer of Python. Lover of Encrypted Keys. Recycled Artist. Hardware Enthusiast. Fan of FOSS. Happy Mastodon Mentor to all newcomers!\\n\\nSpending most days writing, reading, and talking about privacy. Journalist at @privacyguides \\n\\nOpen-sourced & open-hearted.\\n(she/her) 🏳️‍🌈\\n\\n🔒 Privacy tips at: #TinyPrivacyTip \\n🐘 Mastodon tips at: #TinyMastodonTip\\n \\nOther hashtags I talk about: \\n#DigitalRights #HumanRights #Privacy #Security #Python #FOSS #FLOSS #OpenSource\\n\\nSecondary accounts at (do not contact me there):\\n🐘 infosec.space/@Em0nM4stodon\\n🐘 mastodon.social/@Em0nM4stodon\\n\\n#nobridge #nobot #noai #noindex #nosearch #noarchive \\n\\nThis is a personal account. Opinions expressed here are my own and do not necessarily reflect my employer. Especially emojis :awesome:\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/108/197/851/470/625/041/original/f56f05846a226449.jpg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/108/197/851/470/625/041/original/7c3da3c2e19d6748.jpeg\",\"nip05\":\"Em0nM4stodon@infosec-exchange.mostr.pub\",\"fields\":[[\"Privacy Guides Articles\",\"https://www.privacyguides.org/articles/author/em/\"],[\"Web\",\"https://emontheinternet.me\"],[\"Blog\",\"https://controlaltdelete.technology\"],[\"Code\",\"https://snakecase.software\"]]}","created_at":1759429387,"id":"0b4a3cdf879aef74c0cc50708c43f5e16008173243b5f9cc57a5d52a8fea0e94","kind":0,"pubkey":"324a744a05e221eb6ed9afe1a1c85bb116cb460ca08b7a0bcc85bb283de694b8","sig":"97e7a338d6b0ec5f891efc5e33aa47cb83f99741634823be5ec15b5eac34ee8e3151a770eb5f2df1ecab73e5eb976e9b7067d1daf15963e81012d57ad89f0042","tags":[["emoji","awesome","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/028/579/original/dcea540b6fc9cffd.png"],["emoji","official_verified","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/162/396/original/70b97769f901fd31.png"],["proxy","https://infosec.exchange/users/Em0nM4stodon","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:25.093] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"ea92318514d3ed6fae107e75ff9d8a531cd6e87a5a3e2547d0edc8949f1d08c5","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"02e25a84b45390192ee416afb9eecd7b1a28e3a47e489663626c7588a514cd80f142ed161cb2560bed1bc0056890439c486ab7f0513a8b2d4efa6f0486f27edf","tags":[]}] +[14:25:25.153] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:25:25.214] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429510,"id":"2a70b4417e0e2dbd7753b8aa3166310f0bfc9d200ae066b9da1e2ebc50d49e1f","kind":3,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"da21770b2c092afd9bc8a74ac9c72f5b513de2408af25a4483590a1075d900ef40b857590075cf745cceeaacd863bd868683cf302416a79bc4cab8e15a598d29","tags":[["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","cf578d5b8fb7c62563a803a30bd2fc3a952ca7ba9652ee2ce43a991316d8c157"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","b12deee231e85bec19f3e4e3fee5893d449b8ce159ed2adcecf60262afca6d50"],["p","20bde2ebe3b256b1c161ad9a887aba7dae9c4c63a50c9c78ce89ea361efa631e"],["p","af7673fb09d598eb63272cd7e6c1d1614031cdfc084c460f5d549be335dc7630"],["p","8e71076fc49f8eef0e6d475c51f37d58116013912a9eb796f46287ebe9257b75"],["p","80f734108f37aec8cf64023514b9ae26bcaaed2a13eb85ad3a8482da1168b1fc"],["p","a530f7f75b62f86073078fd0d82302508c9273ec846d19766ef41417eb820644"],["p","2355757c6ec5e1766eba903dde5f545cac6da27d0dbacbf9725800ff5ad3e04d"],["p","805b34f708837dfb3e7f05815ac5760564628b58d5a0ce839ccbb6ef3620fac3"],["p","1be9326168faf4f5ef18770ab163fe2c26bc049d21298186377cdc033bf69614"],["p","f96073dc6b6db9e4d256d9a3afd7222c70ba0b9fd36bf20608f6a43c5951c7c2"],["p","3814facc571e06311cfea11760a4ecb3f28d54adc14e6e01d016a82986fe153b"],["p","80e81c631dff7e88e704b15c6406b622b5fd3f41bc039eb0f4b9e75d2f6c61dd"],["p","6b4ec98f02e647e01440b473bbd92a7fae21e01b6aa6c65e32db94a36092272e"],["p","d2384c4ac623eb9f15ae4cb32ee7a9b03e0202802d52f2395f2ee8f6433151aa"],["p","637ae527280d7a0b26bb6c2b75bad172f5bd6c8a8b1907b102229680cf0c3868"],["p","af8b4ac37ae33b3ca464681b08cf1f6a657f82bb8b958fd82edbde8abf36b940"],["p","135c872ba7d8321f7bc440b5bd49e8adac64f76385e977a1f4a4f49c2c36dd84"],["p","b1da6019136283a26dd6eed2332a3e04b0b88b2281946cb17a16a626a3bf4a62"],["p","4d6d388658271af489f6fc8458ddf010bd9268c1fed673352c0c6ae7fee13f23"]]}] +[14:25:25.938] RECV nos.lol:443: b6e26f4090b44a68284f584d64d8976ae37cd209e816d82aa"],["p +[14:25:28.144] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:25:28.145] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:25:28.145] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:25:28.145] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:25:28.297] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapsnag for 500,000 sats and send me a DM.\n💜\nhttps://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","created_at":1759429524,"id":"bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"e49111affacc861d410a35dd22dbbda683f0fe008088aca47de9ee32a3f0fa9f9aca260f65fdffd20bd8b0327b1a95df4bdfc77b45eb09e12129ea9e3002d52c","tags":[["alt","A short note: #zapsnag for 500,000 sats and send me a DM.\n💜\nhtt..."],["t","zapsnag"],["r","https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg"],["imeta","url https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","x f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","size 184533","m image/jpeg","dim 1500x2000","blurhash _8Jj_04Th}vmb{=zxu_K.6XmNNN3R6n$^%,;J.X.R5I:nhERIVxsxrw[xuV[k[tmn2R4%LxGT0wMtS%g%LtQWBWE%gx]x]niX8tks+.8kXIpS5oys+t5b[R*NKNGnNjXbb","ox f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","alt "]]}] +[14:25:28.357] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Do it bro. Dooooooo it 😂\n\nhttps://media1.tenor.com/m/Cxj0iGzCLLYAAAAd/do-it-star-wars.gif","created_at":1759429523,"id":"1090744e81ce1f8a4ffe2398c47f56482aa0e0fa704828c3d60ef70bb4c6d1ed","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b6dfb65afc3cb69f212eaaeb944498bfe6bdb466ef2917dd2bd3a577d8851fb6b7ad014cbe57b0410eaa539300a6b47059af9b994c75a81e6ab32e1a425c79a7","tags":[["e","7d56c6b3979cefb1ba1aa44ea3c72ac08a42143097633ea5b9a21da8d083e3af","wss://relay.damus.io","root"],["e","54e86e22b62345acb66fe0dada1fc413b907c76ce8ceb90fd648760195b9c4e6","","reply"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["r","https://media1.tenor.com/m/Cxj0iGzCLLYAAAAd/do-it-star-wars.gif"]]}] +[14:25:28.418] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It has a nice climate though","created_at":1759429515,"id":"a1abc35f2c9218b189e4433393facfcc11446d9fc8cfb37c9c76dd30401605d0","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"4235e7f90a2ffbc72cec4c96fda31ca4c3920ceb7df2b32b2dbd9848ac734cfc81dfe6fb9f0354f3bd6f21963e5e60f9165fc47015f316d4f75006ea27303d4f","tags":[["alt","A short note: It has a nice climate though"],["e","a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","wss://nostr.bitcoiner.social/","root","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.primal.net/"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/"]]}] +[14:25:28.478] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Zapped ","created_at":1759429506,"id":"6602dc540a4ccfcb88d74426762399f48545d3a85f710a8ec02954ab42361b35","kind":1,"pubkey":"f9c8838736f5a0b611ed2c458a8ae7a480802e4ec38e52e96483986ca44ce612","sig":"0f8e1137c408c72b0c9c8f0a1d5db996dd4fdf56c35ee2f1a531b830536a7210284e9e86198c6078564d2139c56780605c65ae591c8dce760c4e828607885204","tags":[["alt","A short note: Zapped "],["e","e2036afff2a51788e172db94df0a8b5dbf9fbcfbfd5a2cdd5ee1021bcd25f4e1","wss://relay.primal.net/","root","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422"],["p","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422","wss://nos.lol/"]]}] +[14:25:28.539] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"At the time this happened Jose Ramirez was already in the top 10 (and top 5 in some) Guardians team categories like, Home Runs, RBI’s, Steals, Games Played, All Star appearances, perennial mvp (usually year and year out top 5 voting). I consider this his “George Brett Moment”. Most sports greats have that one lasting image that is legendary. This is probably it but it certainly didn’t define his greatness in Cleveland. Most true Guardians fans who actually paid attention would agree that he was great way before this. If anything it brought him to the national conversation.\"\nnostr:nprofile1qqswc3w8t44syr8g6hsywql42edjxecgdm4h6x2nuud69kr0d9xc6rcpz4mhxue69uhk2er9dchxummnw3ezumrpdejqzrrhwden5te0vfexytnfduq3samnwvaz7tmjv4kxz7fwwdhx7un59eek7cmfv9kq5pfec7","created_at":1759429502,"id":"f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"55da2491e05575343c2b4717af8ec41c2c688d9238e0d4c0866e4a49daa85698e71af3aa4fe02071231cf0f0ed3db74fd630887f7a8cb8c10706c744b25f61eb","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f","","mention"]]}] +[14:25:28.599] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is one of the problems I have with most books - they are filled with lies, and you can glean some truths by kind of filtering out the biases, listening to what's not said, etc but it's exhausting.\n\nFor some reason philosophers are usually but not always an exception.","created_at":1759429500,"id":"5faf03263965a007242ca31f2b52d77c35ed2daa4188e9981536c1ea3d9b8018","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"e935541a0fbb4409dd1af816bf6f310aa0fb5dd9b97b8f8d93fda829d547c8262d846e5073e58f1c10b65f0311d0caa926f8a89e00234de86b7249c6d81df772","tags":[["e","be30626aa378bd40ab1f69c30b47a3e7e3e58fe48baec62a6a9a7ed8f8c5dda3","wss://nostr.oxtr.dev","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:25:28.660] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:25 ------------✄","created_at":1759429500,"id":"4c29eda82c12c803ad986dc78c0cfe4ed33ef90df3f868df623fcce8ed12a69f","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"84d76946c7a973b1978bc7d4f30c3c8508e3584e0657eced7f12b19eaf9ec6b5bd1e23115a852adf3819d9d2059a0c5e599ecfdbeb521fea8634ff632bec09f6","tags":[]}] +[14:25:28.720] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"fuck, i want one aswell.","created_at":1759429497,"id":"30cbae408b721b956f7bb16137c5efe747a6332d5ada8a683333c74e4939a3f9","kind":1,"pubkey":"2bc1cc9268507667c92ea0ec6aa652fc78f1185a9fc9d976910aa6f237811ea5","sig":"c536fac7d83ae2c2c3fc95c7d9b12ada51cd42f3271ad629039dbfa4f5bbc10725e4576ce3174425b302c23eb443957b57bcf5047f012dd7dd55456f3f697fe7","tags":[["e","66a5326113be9221cd5193a00f2799959bccd8f91b9f254849362c20d1dbb678","wss://nostr.oxtr.dev","root","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["e","c1778ec702e924871074b1b6b00da61a2df715cb330e486cf130812f7333fb16","wss://nostr.oxtr.dev/","reply","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"]]}] +[14:25:28.781] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドロケイ好きだったな\n隠れといて、足速い人を率先して逃すやつやってた","created_at":1759429494,"id":"51b766e62eb7792a661b7d85a0045067e04b836613005cb7b0e63bc3d50ebdee","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c92e3ec3ffeb3bedcf6365a715406ecc8f99d2551344a9ee717bda6b5781756bf236d06ba68f2e3726767386a9b8d46e41b7a6616362c04b70fc1b2f4a5ae01e","tags":[]}] +[14:25:28.841] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"KeyboardEvent: keyIdentifier property\"\nhttps://developer.mozilla.org/ja/docs/Web/API/KeyboardEvent/keyIdentifier","created_at":1759429493,"id":"22917ed92b0164379fe8659bd289c3e8afab3daf0e551590ba39230b258216d2","kind":1,"pubkey":"4f129b892cf19a3dd2eb6e6bb097349e88e9fb51c035b119795900c8235ab5bb","sig":"220c8be5b7d0e25c93c1d55e1c70e52636082102967ed9b81d91b46339a0e6f08284b5ef0a44b46256a0c0fc3c6ee36935583441b5d17370458d30113122a1ca","tags":[]}] +[14:25:28.902] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:25:28.962] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:29.023] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:29.083] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:25:29.144] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:25:29.204] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:25:29.265] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:29.325] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:29.386] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:29.446] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"display_name\":\"Oshi (推し)\",\"name\":\"oshi\",\"nip05\":\"oshi@oshigood.us\",\"lud16\":\"oshi@coinos.io\",\"about\":\"⚡️Artisan Pecan Butter, Date Bars, and Chocolates. ₿itcoin and nostr only. \\n\\n#hodlbutter • #hodlbar • #bthcnodes\\n\\nCustom orders: oshigood@proton.me\\n\\nSimplex group chat: https://smp19.simplex.im/g#k1srY8O6XCiYbcLh6BY7lavWtpc2xLz2R8MXKfJsrJk\",\"picture\":\"https://image.nostr.build/a62937470157b7e9e349ea3baebffc92391754262538b257fe5eb54f79379b09.jpg\",\"website\":\"https://www.oshigood.us/\",\"banner\":\"https://image.nostr.build/70b92cc7446a452ccdf036d18ef7f5e2e0843b7b1a8fda39e99337862e96163e.jpg\",\"reactions\":false}","created_at":1759429433,"id":"5ff517f5cc88d9c2668b4e5dd85a409ce935707c93e2344a356ba19b8df96fd8","kind":0,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"f40ff0b9fa3b9c2288712633b9f4a158e3c18ef372806b12694f7c2e339fe6deedbf371a0077c81aa3ed0a2ec2053d2119dba65ed4d3cc8b856c3a73faa6c837","tags":[]}] +[14:25:29.507] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Em :official_verified:\",\"about\":\"Privacy Advocate. Security Passionate. Protector of Data. Tamer of Python. Lover of Encrypted Keys. Recycled Artist. Hardware Enthusiast. Fan of FOSS. Happy Mastodon Mentor to all newcomers!\\n\\nSpending most days writing, reading, and talking about privacy. Journalist at @privacyguides \\n\\nOpen-sourced & open-hearted.\\n(she/her) 🏳️‍🌈\\n\\n🔒 Privacy tips at: #TinyPrivacyTip \\n🐘 Mastodon tips at: #TinyMastodonTip\\n \\nOther hashtags I talk about: \\n#DigitalRights #HumanRights #Privacy #Security #Python #FOSS #FLOSS #OpenSource\\n\\nSecondary accounts at (do not contact me there):\\n🐘 infosec.space/@Em0nM4stodon\\n🐘 mastodon.social/@Em0nM4stodon\\n\\n#nobridge #nobot #noai #noindex #nosearch #noarchive \\n\\nThis is a personal account. Opinions expressed here are my own and do not necessarily reflect my employer. Especially emojis :awesome:\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/108/197/851/470/625/041/original/f56f05846a226449.jpg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/108/197/851/470/625/041/original/7c3da3c2e19d6748.jpeg\",\"nip05\":\"Em0nM4stodon@infosec-exchange.mostr.pub\",\"fields\":[[\"Privacy Guides Articles\",\"https://www.privacyguides.org/articles/author/em/\"],[\"Web\",\"https://emontheinternet.me\"],[\"Blog\",\"https://controlaltdelete.technology\"],[\"Code\",\"https://snakecase.software\"]]}","created_at":1759429387,"id":"0b4a3cdf879aef74c0cc50708c43f5e16008173243b5f9cc57a5d52a8fea0e94","kind":0,"pubkey":"324a744a05e221eb6ed9afe1a1c85bb116cb460ca08b7a0bcc85bb283de694b8","sig":"97e7a338d6b0ec5f891efc5e33aa47cb83f99741634823be5ec15b5eac34ee8e3151a770eb5f2df1ecab73e5eb976e9b7067d1daf15963e81012d57ad89f0042","tags":[["emoji","awesome","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/028/579/original/dcea540b6fc9cffd.png"],["emoji","official_verified","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/162/396/original/70b97769f901fd31.png"],["proxy","https://infosec.exchange/users/Em0nM4stodon","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:29.568] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:25:29.628] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429510,"id":"2a70b4417e0e2dbd7753b8aa3166310f0bfc9d200ae066b9da1e2ebc50d49e1f","kind":3,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"da21770b2c092afd9bc8a74ac9c72f5b513de2408af25a4483590a1075d900ef40b857590075cf745cceeaacd863bd868683cf302416a79bc4cab8e15a598d29","tags":[["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","cf578d5b8fb7c62563a803a30bd2fc3a952ca7ba9652ee2ce43a991316d8c157"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","b12deee231e85bec19f3e4e3fee5893d449b8ce159ed2adcecf60262afca6d50"],["p","20bde2ebe3b256b1c161ad9a887aba7dae9c4c63a50c9c78ce89ea361efa631e"],["p","af7673fb09d598eb63272cd7e6c1d1614031cdfc084c460f5d549be335dc7630"],["p","8e71076fc49f8eef0e6d475c51f37d58116013912a9eb796f46287ebe9257b75"],["p","80f734108f37aec8cf64023514b9ae26bcaaed2a13eb85ad3a8482da1168b1fc"],["p","a530f7f75b62f86073078fd0d82302508c9273ec846d19766ef41417eb820644"],["p","2355757c6ec5e1766eba903dde5f545cac6da27d0dbacbf9725800ff5ad3e04d"],["p","805b34f708837dfb3e7f05815ac5760564628b58d5a0ce839ccbb6ef3620fac3"],["p","1be9326168faf4f5ef18770ab163fe2c26bc049d21298186377cdc033bf69614"],["p","f96073dc6b6db9e4d256d9a3afd7222c70ba0b9fd36bf20608f6a43c5951c7c2"],["p","3814facc571e06311cfea11760a4ecb3f28d54adc14e6e01d016a82986fe153b"],["p","80e81c631dff7e88e704b15c6406b622b5fd3f41bc039eb0f4b9e75d2f6c61dd"],["p","6b4ec98f02e647e01440b473bbd92a7fae21e01b6aa6c65e32db94a36092272e"],["p","d2384c4ac623eb9f15ae4cb32ee7a9b03e0202802d52f2395f2ee8f6433151aa"],["p","637ae527280d7a0b26bb6c2b75bad172f5bd6c8a8b1907b102229680cf0c3868"],["p","af8b4ac37ae33b3ca464681b08cf1f6a657f82bb8b958fd82edbde8abf36b940"],["p","135c872ba7d8321f7bc440b5bd49e8adac64f76385e977a1f4a4f49c2c36dd84"],["p","b1da6019136283a26dd6eed2332a3e04b0b88b2281946cb17a16a626a3bf4a62"],["p","4d6d388658271af489f6fc8458ddf010bd9268c1fed673352c0c6ae7fee13f23"]]}] +[14:25:30.353] RECV nos.lol:443: b6e26f4090b44a68284f584d64d8976ae37cd209e816d82aa"],["p +[14:25:32.596] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:25:32.597] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:25:32.597] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:25:32.597] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:25:32.757] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapsnag for 500,000 sats and send me a DM.\n💜\nhttps://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","created_at":1759429524,"id":"bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"e49111affacc861d410a35dd22dbbda683f0fe008088aca47de9ee32a3f0fa9f9aca260f65fdffd20bd8b0327b1a95df4bdfc77b45eb09e12129ea9e3002d52c","tags":[["alt","A short note: #zapsnag for 500,000 sats and send me a DM.\n💜\nhtt..."],["t","zapsnag"],["r","https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg"],["imeta","url https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","x f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","size 184533","m image/jpeg","dim 1500x2000","blurhash _8Jj_04Th}vmb{=zxu_K.6XmNNN3R6n$^%,;J.X.R5I:nhERIVxsxrw[xuV[k[tmn2R4%LxGT0wMtS%g%LtQWBWE%gx]x]niX8tks+.8kXIpS5oys+t5b[R*NKNGnNjXbb","ox f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","alt "]]}] +[14:25:32.767] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Do it bro. Dooooooo it 😂\n\nhttps://media1.tenor.com/m/Cxj0iGzCLLYAAAAd/do-it-star-wars.gif","created_at":1759429523,"id":"1090744e81ce1f8a4ffe2398c47f56482aa0e0fa704828c3d60ef70bb4c6d1ed","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b6dfb65afc3cb69f212eaaeb944498bfe6bdb466ef2917dd2bd3a577d8851fb6b7ad014cbe57b0410eaa539300a6b47059af9b994c75a81e6ab32e1a425c79a7","tags":[["e","7d56c6b3979cefb1ba1aa44ea3c72ac08a42143097633ea5b9a21da8d083e3af","wss://relay.damus.io","root"],["e","54e86e22b62345acb66fe0dada1fc413b907c76ce8ceb90fd648760195b9c4e6","","reply"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["r","https://media1.tenor.com/m/Cxj0iGzCLLYAAAAd/do-it-star-wars.gif"]]}] +[14:25:32.828] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It has a nice climate though","created_at":1759429515,"id":"a1abc35f2c9218b189e4433393facfcc11446d9fc8cfb37c9c76dd30401605d0","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"4235e7f90a2ffbc72cec4c96fda31ca4c3920ceb7df2b32b2dbd9848ac734cfc81dfe6fb9f0354f3bd6f21963e5e60f9165fc47015f316d4f75006ea27303d4f","tags":[["alt","A short note: It has a nice climate though"],["e","a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","wss://nostr.bitcoiner.social/","root","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.primal.net/"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/"]]}] +[14:25:32.888] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Zapped ","created_at":1759429506,"id":"6602dc540a4ccfcb88d74426762399f48545d3a85f710a8ec02954ab42361b35","kind":1,"pubkey":"f9c8838736f5a0b611ed2c458a8ae7a480802e4ec38e52e96483986ca44ce612","sig":"0f8e1137c408c72b0c9c8f0a1d5db996dd4fdf56c35ee2f1a531b830536a7210284e9e86198c6078564d2139c56780605c65ae591c8dce760c4e828607885204","tags":[["alt","A short note: Zapped "],["e","e2036afff2a51788e172db94df0a8b5dbf9fbcfbfd5a2cdd5ee1021bcd25f4e1","wss://relay.primal.net/","root","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422"],["p","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422","wss://nos.lol/"]]}] +[14:25:32.949] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"At the time this happened Jose Ramirez was already in the top 10 (and top 5 in some) Guardians team categories like, Home Runs, RBI’s, Steals, Games Played, All Star appearances, perennial mvp (usually year and year out top 5 voting). I consider this his “George Brett Moment”. Most sports greats have that one lasting image that is legendary. This is probably it but it certainly didn’t define his greatness in Cleveland. Most true Guardians fans who actually paid attention would agree that he was great way before this. If anything it brought him to the national conversation.\"\nnostr:nprofile1qqswc3w8t44syr8g6hsywql42edjxecgdm4h6x2nuud69kr0d9xc6rcpz4mhxue69uhk2er9dchxummnw3ezumrpdejqzrrhwden5te0vfexytnfduq3samnwvaz7tmjv4kxz7fwwdhx7un59eek7cmfv9kq5pfec7","created_at":1759429502,"id":"f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"55da2491e05575343c2b4717af8ec41c2c688d9238e0d4c0866e4a49daa85698e71af3aa4fe02071231cf0f0ed3db74fd630887f7a8cb8c10706c744b25f61eb","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f","","mention"]]}] +[14:25:33.009] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is one of the problems I have with most books - they are filled with lies, and you can glean some truths by kind of filtering out the biases, listening to what's not said, etc but it's exhausting.\n\nFor some reason philosophers are usually but not always an exception.","created_at":1759429500,"id":"5faf03263965a007242ca31f2b52d77c35ed2daa4188e9981536c1ea3d9b8018","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"e935541a0fbb4409dd1af816bf6f310aa0fb5dd9b97b8f8d93fda829d547c8262d846e5073e58f1c10b65f0311d0caa926f8a89e00234de86b7249c6d81df772","tags":[["e","be30626aa378bd40ab1f69c30b47a3e7e3e58fe48baec62a6a9a7ed8f8c5dda3","wss://nostr.oxtr.dev","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:25:33.070] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:25 ------------✄","created_at":1759429500,"id":"4c29eda82c12c803ad986dc78c0cfe4ed33ef90df3f868df623fcce8ed12a69f","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"84d76946c7a973b1978bc7d4f30c3c8508e3584e0657eced7f12b19eaf9ec6b5bd1e23115a852adf3819d9d2059a0c5e599ecfdbeb521fea8634ff632bec09f6","tags":[]}] +[14:25:33.130] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"fuck, i want one aswell.","created_at":1759429497,"id":"30cbae408b721b956f7bb16137c5efe747a6332d5ada8a683333c74e4939a3f9","kind":1,"pubkey":"2bc1cc9268507667c92ea0ec6aa652fc78f1185a9fc9d976910aa6f237811ea5","sig":"c536fac7d83ae2c2c3fc95c7d9b12ada51cd42f3271ad629039dbfa4f5bbc10725e4576ce3174425b302c23eb443957b57bcf5047f012dd7dd55456f3f697fe7","tags":[["e","66a5326113be9221cd5193a00f2799959bccd8f91b9f254849362c20d1dbb678","wss://nostr.oxtr.dev","root","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["e","c1778ec702e924871074b1b6b00da61a2df715cb330e486cf130812f7333fb16","wss://nostr.oxtr.dev/","reply","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"]]}] +[14:25:33.191] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドロケイ好きだったな\n隠れといて、足速い人を率先して逃すやつやってた","created_at":1759429494,"id":"51b766e62eb7792a661b7d85a0045067e04b836613005cb7b0e63bc3d50ebdee","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c92e3ec3ffeb3bedcf6365a715406ecc8f99d2551344a9ee717bda6b5781756bf236d06ba68f2e3726767386a9b8d46e41b7a6616362c04b70fc1b2f4a5ae01e","tags":[]}] +[14:25:33.251] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"KeyboardEvent: keyIdentifier property\"\nhttps://developer.mozilla.org/ja/docs/Web/API/KeyboardEvent/keyIdentifier","created_at":1759429493,"id":"22917ed92b0164379fe8659bd289c3e8afab3daf0e551590ba39230b258216d2","kind":1,"pubkey":"4f129b892cf19a3dd2eb6e6bb097349e88e9fb51c035b119795900c8235ab5bb","sig":"220c8be5b7d0e25c93c1d55e1c70e52636082102967ed9b81d91b46339a0e6f08284b5ef0a44b46256a0c0fc3c6ee36935583441b5d17370458d30113122a1ca","tags":[]}] +[14:25:33.312] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:25:33.372] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:33.433] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:33.493] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:25:33.554] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:25:33.614] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:25:33.675] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:33.735] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:33.796] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:33.856] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"display_name\":\"Oshi (推し)\",\"name\":\"oshi\",\"nip05\":\"oshi@oshigood.us\",\"lud16\":\"oshi@coinos.io\",\"about\":\"⚡️Artisan Pecan Butter, Date Bars, and Chocolates. ₿itcoin and nostr only. \\n\\n#hodlbutter • #hodlbar • #bthcnodes\\n\\nCustom orders: oshigood@proton.me\\n\\nSimplex group chat: https://smp19.simplex.im/g#k1srY8O6XCiYbcLh6BY7lavWtpc2xLz2R8MXKfJsrJk\",\"picture\":\"https://image.nostr.build/a62937470157b7e9e349ea3baebffc92391754262538b257fe5eb54f79379b09.jpg\",\"website\":\"https://www.oshigood.us/\",\"banner\":\"https://image.nostr.build/70b92cc7446a452ccdf036d18ef7f5e2e0843b7b1a8fda39e99337862e96163e.jpg\",\"reactions\":false}","created_at":1759429433,"id":"5ff517f5cc88d9c2668b4e5dd85a409ce935707c93e2344a356ba19b8df96fd8","kind":0,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"f40ff0b9fa3b9c2288712633b9f4a158e3c18ef372806b12694f7c2e339fe6deedbf371a0077c81aa3ed0a2ec2053d2119dba65ed4d3cc8b856c3a73faa6c837","tags":[]}] +[14:25:33.917] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Em :official_verified:\",\"about\":\"Privacy Advocate. Security Passionate. Protector of Data. Tamer of Python. Lover of Encrypted Keys. Recycled Artist. Hardware Enthusiast. Fan of FOSS. Happy Mastodon Mentor to all newcomers!\\n\\nSpending most days writing, reading, and talking about privacy. Journalist at @privacyguides \\n\\nOpen-sourced & open-hearted.\\n(she/her) 🏳️‍🌈\\n\\n🔒 Privacy tips at: #TinyPrivacyTip \\n🐘 Mastodon tips at: #TinyMastodonTip\\n \\nOther hashtags I talk about: \\n#DigitalRights #HumanRights #Privacy #Security #Python #FOSS #FLOSS #OpenSource\\n\\nSecondary accounts at (do not contact me there):\\n🐘 infosec.space/@Em0nM4stodon\\n🐘 mastodon.social/@Em0nM4stodon\\n\\n#nobridge #nobot #noai #noindex #nosearch #noarchive \\n\\nThis is a personal account. Opinions expressed here are my own and do not necessarily reflect my employer. Especially emojis :awesome:\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/108/197/851/470/625/041/original/f56f05846a226449.jpg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/108/197/851/470/625/041/original/7c3da3c2e19d6748.jpeg\",\"nip05\":\"Em0nM4stodon@infosec-exchange.mostr.pub\",\"fields\":[[\"Privacy Guides Articles\",\"https://www.privacyguides.org/articles/author/em/\"],[\"Web\",\"https://emontheinternet.me\"],[\"Blog\",\"https://controlaltdelete.technology\"],[\"Code\",\"https://snakecase.software\"]]}","created_at":1759429387,"id":"0b4a3cdf879aef74c0cc50708c43f5e16008173243b5f9cc57a5d52a8fea0e94","kind":0,"pubkey":"324a744a05e221eb6ed9afe1a1c85bb116cb460ca08b7a0bcc85bb283de694b8","sig":"97e7a338d6b0ec5f891efc5e33aa47cb83f99741634823be5ec15b5eac34ee8e3151a770eb5f2df1ecab73e5eb976e9b7067d1daf15963e81012d57ad89f0042","tags":[["emoji","awesome","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/028/579/original/dcea540b6fc9cffd.png"],["emoji","official_verified","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/162/396/original/70b97769f901fd31.png"],["proxy","https://infosec.exchange/users/Em0nM4stodon","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:33.978] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:25:34.038] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429510,"id":"2a70b4417e0e2dbd7753b8aa3166310f0bfc9d200ae066b9da1e2ebc50d49e1f","kind":3,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"da21770b2c092afd9bc8a74ac9c72f5b513de2408af25a4483590a1075d900ef40b857590075cf745cceeaacd863bd868683cf302416a79bc4cab8e15a598d29","tags":[["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","cf578d5b8fb7c62563a803a30bd2fc3a952ca7ba9652ee2ce43a991316d8c157"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","b12deee231e85bec19f3e4e3fee5893d449b8ce159ed2adcecf60262afca6d50"],["p","20bde2ebe3b256b1c161ad9a887aba7dae9c4c63a50c9c78ce89ea361efa631e"],["p","af7673fb09d598eb63272cd7e6c1d1614031cdfc084c460f5d549be335dc7630"],["p","8e71076fc49f8eef0e6d475c51f37d58116013912a9eb796f46287ebe9257b75"],["p","80f734108f37aec8cf64023514b9ae26bcaaed2a13eb85ad3a8482da1168b1fc"],["p","a530f7f75b62f86073078fd0d82302508c9273ec846d19766ef41417eb820644"],["p","2355757c6ec5e1766eba903dde5f545cac6da27d0dbacbf9725800ff5ad3e04d"],["p","805b34f708837dfb3e7f05815ac5760564628b58d5a0ce839ccbb6ef3620fac3"],["p","1be9326168faf4f5ef18770ab163fe2c26bc049d21298186377cdc033bf69614"],["p","f96073dc6b6db9e4d256d9a3afd7222c70ba0b9fd36bf20608f6a43c5951c7c2"],["p","3814facc571e06311cfea11760a4ecb3f28d54adc14e6e01d016a82986fe153b"],["p","80e81c631dff7e88e704b15c6406b622b5fd3f41bc039eb0f4b9e75d2f6c61dd"],["p","6b4ec98f02e647e01440b473bbd92a7fae21e01b6aa6c65e32db94a36092272e"],["p","d2384c4ac623eb9f15ae4cb32ee7a9b03e0202802d52f2395f2ee8f6433151aa"],["p","637ae527280d7a0b26bb6c2b75bad172f5bd6c8a8b1907b102229680cf0c3868"],["p","af8b4ac37ae33b3ca464681b08cf1f6a657f82bb8b958fd82edbde8abf36b940"],["p","135c872ba7d8321f7bc440b5bd49e8adac64f76385e977a1f4a4f49c2c36dd84"],["p","b1da6019136283a26dd6eed2332a3e04b0b88b2281946cb17a16a626a3bf4a62"],["p","4d6d388658271af489f6fc8458ddf010bd9268c1fed673352c0c6ae7fee13f23"]]}] +[14:25:34.763] RECV nos.lol:443: b6e26f4090b44a68284f584d64d8976ae37cd209e816d82aa"],["p +[14:25:37.009] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:25:37.009] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:25:37.010] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:25:37.010] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:25:37.161] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What can we do?","created_at":1759429533,"id":"9fd8769577e085dddfb14fe22f700a91f99f5d48dec5873fa6a37aa006749abe","kind":1,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"46a1a4b8dfa1b8b0b10bea624b575adef43824d5c490b893c8f7fa29bf114cf791284b4b5a157cf550a2148e96395ddda84a11d0286e85e5593a0cdfc0610e82","tags":[["e","9154dbfaec941da7c265678755701ba50ad2a4446d5a419077c1f31511471cec","","root"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:25:37.172] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What’s in there???","created_at":1759429532,"id":"26be005898bc6ba779c6dcfdf8d452a0f08f3ab31df5ba6b4990f34666bc39e4","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"a585e8a17f07be739b28be43d47949763a21634d857dfa40024b32748495eae831fc17dcd48a57fe0d4b9f13b5d684c6f69618463380ec561ed2b8510fd6d1ff","tags":[["e","ef6635f4acd8f161b8eb9b4b12b144efe589fb7d8d85c78f61475abcb577d7fe","","root"],["p","d8f38b894b42f7008305cebf17b48925654f22b180c5861b81141f80ccf72848"]]}] +[14:25:37.232] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapsnag for 500,000 sats and send me a DM.\n💜\nhttps://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","created_at":1759429524,"id":"bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"e49111affacc861d410a35dd22dbbda683f0fe008088aca47de9ee32a3f0fa9f9aca260f65fdffd20bd8b0327b1a95df4bdfc77b45eb09e12129ea9e3002d52c","tags":[["alt","A short note: #zapsnag for 500,000 sats and send me a DM.\n💜\nhtt..."],["t","zapsnag"],["r","https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg"],["imeta","url https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","x f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","size 184533","m image/jpeg","dim 1500x2000","blurhash _8Jj_04Th}vmb{=zxu_K.6XmNNN3R6n$^%,;J.X.R5I:nhERIVxsxrw[xuV[k[tmn2R4%LxGT0wMtS%g%LtQWBWE%gx]x]niX8tks+.8kXIpS5oys+t5b[R*NKNGnNjXbb","ox f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","alt "]]}] +[14:25:37.293] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Do it bro. Dooooooo it 😂\n\nhttps://media1.tenor.com/m/Cxj0iGzCLLYAAAAd/do-it-star-wars.gif","created_at":1759429523,"id":"1090744e81ce1f8a4ffe2398c47f56482aa0e0fa704828c3d60ef70bb4c6d1ed","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b6dfb65afc3cb69f212eaaeb944498bfe6bdb466ef2917dd2bd3a577d8851fb6b7ad014cbe57b0410eaa539300a6b47059af9b994c75a81e6ab32e1a425c79a7","tags":[["e","7d56c6b3979cefb1ba1aa44ea3c72ac08a42143097633ea5b9a21da8d083e3af","wss://relay.damus.io","root"],["e","54e86e22b62345acb66fe0dada1fc413b907c76ce8ceb90fd648760195b9c4e6","","reply"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["r","https://media1.tenor.com/m/Cxj0iGzCLLYAAAAd/do-it-star-wars.gif"]]}] +[14:25:37.354] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It has a nice climate though","created_at":1759429515,"id":"a1abc35f2c9218b189e4433393facfcc11446d9fc8cfb37c9c76dd30401605d0","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"4235e7f90a2ffbc72cec4c96fda31ca4c3920ceb7df2b32b2dbd9848ac734cfc81dfe6fb9f0354f3bd6f21963e5e60f9165fc47015f316d4f75006ea27303d4f","tags":[["alt","A short note: It has a nice climate though"],["e","a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","wss://nostr.bitcoiner.social/","root","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.primal.net/"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/"]]}] +[14:25:37.414] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Zapped ","created_at":1759429506,"id":"6602dc540a4ccfcb88d74426762399f48545d3a85f710a8ec02954ab42361b35","kind":1,"pubkey":"f9c8838736f5a0b611ed2c458a8ae7a480802e4ec38e52e96483986ca44ce612","sig":"0f8e1137c408c72b0c9c8f0a1d5db996dd4fdf56c35ee2f1a531b830536a7210284e9e86198c6078564d2139c56780605c65ae591c8dce760c4e828607885204","tags":[["alt","A short note: Zapped "],["e","e2036afff2a51788e172db94df0a8b5dbf9fbcfbfd5a2cdd5ee1021bcd25f4e1","wss://relay.primal.net/","root","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422"],["p","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422","wss://nos.lol/"]]}] +[14:25:37.475] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"At the time this happened Jose Ramirez was already in the top 10 (and top 5 in some) Guardians team categories like, Home Runs, RBI’s, Steals, Games Played, All Star appearances, perennial mvp (usually year and year out top 5 voting). I consider this his “George Brett Moment”. Most sports greats have that one lasting image that is legendary. This is probably it but it certainly didn’t define his greatness in Cleveland. Most true Guardians fans who actually paid attention would agree that he was great way before this. If anything it brought him to the national conversation.\"\nnostr:nprofile1qqswc3w8t44syr8g6hsywql42edjxecgdm4h6x2nuud69kr0d9xc6rcpz4mhxue69uhk2er9dchxummnw3ezumrpdejqzrrhwden5te0vfexytnfduq3samnwvaz7tmjv4kxz7fwwdhx7un59eek7cmfv9kq5pfec7","created_at":1759429502,"id":"f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"55da2491e05575343c2b4717af8ec41c2c688d9238e0d4c0866e4a49daa85698e71af3aa4fe02071231cf0f0ed3db74fd630887f7a8cb8c10706c744b25f61eb","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f","","mention"]]}] +[14:25:37.535] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is one of the problems I have with most books - they are filled with lies, and you can glean some truths by kind of filtering out the biases, listening to what's not said, etc but it's exhausting.\n\nFor some reason philosophers are usually but not always an exception.","created_at":1759429500,"id":"5faf03263965a007242ca31f2b52d77c35ed2daa4188e9981536c1ea3d9b8018","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"e935541a0fbb4409dd1af816bf6f310aa0fb5dd9b97b8f8d93fda829d547c8262d846e5073e58f1c10b65f0311d0caa926f8a89e00234de86b7249c6d81df772","tags":[["e","be30626aa378bd40ab1f69c30b47a3e7e3e58fe48baec62a6a9a7ed8f8c5dda3","wss://nostr.oxtr.dev","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:25:37.596] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:25 ------------✄","created_at":1759429500,"id":"4c29eda82c12c803ad986dc78c0cfe4ed33ef90df3f868df623fcce8ed12a69f","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"84d76946c7a973b1978bc7d4f30c3c8508e3584e0657eced7f12b19eaf9ec6b5bd1e23115a852adf3819d9d2059a0c5e599ecfdbeb521fea8634ff632bec09f6","tags":[]}] +[14:25:37.657] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"fuck, i want one aswell.","created_at":1759429497,"id":"30cbae408b721b956f7bb16137c5efe747a6332d5ada8a683333c74e4939a3f9","kind":1,"pubkey":"2bc1cc9268507667c92ea0ec6aa652fc78f1185a9fc9d976910aa6f237811ea5","sig":"c536fac7d83ae2c2c3fc95c7d9b12ada51cd42f3271ad629039dbfa4f5bbc10725e4576ce3174425b302c23eb443957b57bcf5047f012dd7dd55456f3f697fe7","tags":[["e","66a5326113be9221cd5193a00f2799959bccd8f91b9f254849362c20d1dbb678","wss://nostr.oxtr.dev","root","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["e","c1778ec702e924871074b1b6b00da61a2df715cb330e486cf130812f7333fb16","wss://nostr.oxtr.dev/","reply","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"]]}] +[14:25:37.717] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:25:37.778] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:37.838] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:37.899] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:25:37.959] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:25:38.020] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:25:38.081] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:38.141] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:38.202] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:38.263] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"display_name\":\"Oshi (推し)\",\"name\":\"oshi\",\"nip05\":\"oshi@oshigood.us\",\"lud16\":\"oshi@coinos.io\",\"about\":\"⚡️Artisan Pecan Butter, Date Bars, and Chocolates. ₿itcoin and nostr only. \\n\\n#hodlbutter • #hodlbar • #bthcnodes\\n\\nCustom orders: oshigood@proton.me\\n\\nSimplex group chat: https://smp19.simplex.im/g#k1srY8O6XCiYbcLh6BY7lavWtpc2xLz2R8MXKfJsrJk\",\"picture\":\"https://image.nostr.build/a62937470157b7e9e349ea3baebffc92391754262538b257fe5eb54f79379b09.jpg\",\"website\":\"https://www.oshigood.us/\",\"banner\":\"https://image.nostr.build/70b92cc7446a452ccdf036d18ef7f5e2e0843b7b1a8fda39e99337862e96163e.jpg\",\"reactions\":false}","created_at":1759429433,"id":"5ff517f5cc88d9c2668b4e5dd85a409ce935707c93e2344a356ba19b8df96fd8","kind":0,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"f40ff0b9fa3b9c2288712633b9f4a158e3c18ef372806b12694f7c2e339fe6deedbf371a0077c81aa3ed0a2ec2053d2119dba65ed4d3cc8b856c3a73faa6c837","tags":[]}] +[14:25:38.323] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Em :official_verified:\",\"about\":\"Privacy Advocate. Security Passionate. Protector of Data. Tamer of Python. Lover of Encrypted Keys. Recycled Artist. Hardware Enthusiast. Fan of FOSS. Happy Mastodon Mentor to all newcomers!\\n\\nSpending most days writing, reading, and talking about privacy. Journalist at @privacyguides \\n\\nOpen-sourced & open-hearted.\\n(she/her) 🏳️‍🌈\\n\\n🔒 Privacy tips at: #TinyPrivacyTip \\n🐘 Mastodon tips at: #TinyMastodonTip\\n \\nOther hashtags I talk about: \\n#DigitalRights #HumanRights #Privacy #Security #Python #FOSS #FLOSS #OpenSource\\n\\nSecondary accounts at (do not contact me there):\\n🐘 infosec.space/@Em0nM4stodon\\n🐘 mastodon.social/@Em0nM4stodon\\n\\n#nobridge #nobot #noai #noindex #nosearch #noarchive \\n\\nThis is a personal account. Opinions expressed here are my own and do not necessarily reflect my employer. Especially emojis :awesome:\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/108/197/851/470/625/041/original/f56f05846a226449.jpg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/108/197/851/470/625/041/original/7c3da3c2e19d6748.jpeg\",\"nip05\":\"Em0nM4stodon@infosec-exchange.mostr.pub\",\"fields\":[[\"Privacy Guides Articles\",\"https://www.privacyguides.org/articles/author/em/\"],[\"Web\",\"https://emontheinternet.me\"],[\"Blog\",\"https://controlaltdelete.technology\"],[\"Code\",\"https://snakecase.software\"]]}","created_at":1759429387,"id":"0b4a3cdf879aef74c0cc50708c43f5e16008173243b5f9cc57a5d52a8fea0e94","kind":0,"pubkey":"324a744a05e221eb6ed9afe1a1c85bb116cb460ca08b7a0bcc85bb283de694b8","sig":"97e7a338d6b0ec5f891efc5e33aa47cb83f99741634823be5ec15b5eac34ee8e3151a770eb5f2df1ecab73e5eb976e9b7067d1daf15963e81012d57ad89f0042","tags":[["emoji","awesome","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/028/579/original/dcea540b6fc9cffd.png"],["emoji","official_verified","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/162/396/original/70b97769f901fd31.png"],["proxy","https://infosec.exchange/users/Em0nM4stodon","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:38.384] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:25:38.444] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429510,"id":"2a70b4417e0e2dbd7753b8aa3166310f0bfc9d200ae066b9da1e2ebc50d49e1f","kind":3,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"da21770b2c092afd9bc8a74ac9c72f5b513de2408af25a4483590a1075d900ef40b857590075cf745cceeaacd863bd868683cf302416a79bc4cab8e15a598d29","tags":[["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","cf578d5b8fb7c62563a803a30bd2fc3a952ca7ba9652ee2ce43a991316d8c157"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","b12deee231e85bec19f3e4e3fee5893d449b8ce159ed2adcecf60262afca6d50"],["p","20bde2ebe3b256b1c161ad9a887aba7dae9c4c63a50c9c78ce89ea361efa631e"],["p","af7673fb09d598eb63272cd7e6c1d1614031cdfc084c460f5d549be335dc7630"],["p","8e71076fc49f8eef0e6d475c51f37d58116013912a9eb796f46287ebe9257b75"],["p","80f734108f37aec8cf64023514b9ae26bcaaed2a13eb85ad3a8482da1168b1fc"],["p","a530f7f75b62f86073078fd0d82302508c9273ec846d19766ef41417eb820644"],["p","2355757c6ec5e1766eba903dde5f545cac6da27d0dbacbf9725800ff5ad3e04d"],["p","805b34f708837dfb3e7f05815ac5760564628b58d5a0ce839ccbb6ef3620fac3"],["p","1be9326168faf4f5ef18770ab163fe2c26bc049d21298186377cdc033bf69614"],["p","f96073dc6b6db9e4d256d9a3afd7222c70ba0b9fd36bf20608f6a43c5951c7c2"],["p","3814facc571e06311cfea11760a4ecb3f28d54adc14e6e01d016a82986fe153b"],["p","80e81c631dff7e88e704b15c6406b622b5fd3f41bc039eb0f4b9e75d2f6c61dd"],["p","6b4ec98f02e647e01440b473bbd92a7fae21e01b6aa6c65e32db94a36092272e"],["p","d2384c4ac623eb9f15ae4cb32ee7a9b03e0202802d52f2395f2ee8f6433151aa"],["p","637ae527280d7a0b26bb6c2b75bad172f5bd6c8a8b1907b102229680cf0c3868"],["p","af8b4ac37ae33b3ca464681b08cf1f6a657f82bb8b958fd82edbde8abf36b940"],["p","135c872ba7d8321f7bc440b5bd49e8adac64f76385e977a1f4a4f49c2c36dd84"],["p","b1da6019136283a26dd6eed2332a3e04b0b88b2281946cb17a16a626a3bf4a62"],["p","4d6d388658271af489f6fc8458ddf010bd9268c1fed673352c0c6ae7fee13f23"]]}] +[14:25:39.169] RECV nos.lol:443: b6e26f4090b44a68284f584d64d8976ae37cd209e816d82aa"],["p +[14:25:41.412] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:25:41.412] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:25:41.412] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:25:41.412] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:25:41.563] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What can we do?","created_at":1759429533,"id":"9fd8769577e085dddfb14fe22f700a91f99f5d48dec5873fa6a37aa006749abe","kind":1,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"46a1a4b8dfa1b8b0b10bea624b575adef43824d5c490b893c8f7fa29bf114cf791284b4b5a157cf550a2148e96395ddda84a11d0286e85e5593a0cdfc0610e82","tags":[["e","9154dbfaec941da7c265678755701ba50ad2a4446d5a419077c1f31511471cec","","root"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:25:41.624] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What’s in there???","created_at":1759429532,"id":"26be005898bc6ba779c6dcfdf8d452a0f08f3ab31df5ba6b4990f34666bc39e4","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"a585e8a17f07be739b28be43d47949763a21634d857dfa40024b32748495eae831fc17dcd48a57fe0d4b9f13b5d684c6f69618463380ec561ed2b8510fd6d1ff","tags":[["e","ef6635f4acd8f161b8eb9b4b12b144efe589fb7d8d85c78f61475abcb577d7fe","","root"],["p","d8f38b894b42f7008305cebf17b48925654f22b180c5861b81141f80ccf72848"]]}] +[14:25:41.714] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapsnag for 500,000 sats and send me a DM.\n💜\nhttps://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","created_at":1759429524,"id":"bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"e49111affacc861d410a35dd22dbbda683f0fe008088aca47de9ee32a3f0fa9f9aca260f65fdffd20bd8b0327b1a95df4bdfc77b45eb09e12129ea9e3002d52c","tags":[["alt","A short note: #zapsnag for 500,000 sats and send me a DM.\n💜\nhtt..."],["t","zapsnag"],["r","https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg"],["imeta","url https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","x f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","size 184533","m image/jpeg","dim 1500x2000","blurhash _8Jj_04Th}vmb{=zxu_K.6XmNNN3R6n$^%,;J.X.R5I:nhERIVxsxrw[xuV[k[tmn2R4%LxGT0wMtS%g%LtQWBWE%gx]x]niX8tks+.8kXIpS5oys+t5b[R*NKNGnNjXbb","ox f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","alt "]]}] +[14:25:41.775] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Do it bro. Dooooooo it 😂\n\nhttps://media1.tenor.com/m/Cxj0iGzCLLYAAAAd/do-it-star-wars.gif","created_at":1759429523,"id":"1090744e81ce1f8a4ffe2398c47f56482aa0e0fa704828c3d60ef70bb4c6d1ed","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b6dfb65afc3cb69f212eaaeb944498bfe6bdb466ef2917dd2bd3a577d8851fb6b7ad014cbe57b0410eaa539300a6b47059af9b994c75a81e6ab32e1a425c79a7","tags":[["e","7d56c6b3979cefb1ba1aa44ea3c72ac08a42143097633ea5b9a21da8d083e3af","wss://relay.damus.io","root"],["e","54e86e22b62345acb66fe0dada1fc413b907c76ce8ceb90fd648760195b9c4e6","","reply"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["r","https://media1.tenor.com/m/Cxj0iGzCLLYAAAAd/do-it-star-wars.gif"]]}] +[14:25:41.835] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It has a nice climate though","created_at":1759429515,"id":"a1abc35f2c9218b189e4433393facfcc11446d9fc8cfb37c9c76dd30401605d0","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"4235e7f90a2ffbc72cec4c96fda31ca4c3920ceb7df2b32b2dbd9848ac734cfc81dfe6fb9f0354f3bd6f21963e5e60f9165fc47015f316d4f75006ea27303d4f","tags":[["alt","A short note: It has a nice climate though"],["e","a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","wss://nostr.bitcoiner.social/","root","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.primal.net/"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/"]]}] +[14:25:41.895] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Zapped ","created_at":1759429506,"id":"6602dc540a4ccfcb88d74426762399f48545d3a85f710a8ec02954ab42361b35","kind":1,"pubkey":"f9c8838736f5a0b611ed2c458a8ae7a480802e4ec38e52e96483986ca44ce612","sig":"0f8e1137c408c72b0c9c8f0a1d5db996dd4fdf56c35ee2f1a531b830536a7210284e9e86198c6078564d2139c56780605c65ae591c8dce760c4e828607885204","tags":[["alt","A short note: Zapped "],["e","e2036afff2a51788e172db94df0a8b5dbf9fbcfbfd5a2cdd5ee1021bcd25f4e1","wss://relay.primal.net/","root","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422"],["p","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422","wss://nos.lol/"]]}] +[14:25:41.956] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"At the time this happened Jose Ramirez was already in the top 10 (and top 5 in some) Guardians team categories like, Home Runs, RBI’s, Steals, Games Played, All Star appearances, perennial mvp (usually year and year out top 5 voting). I consider this his “George Brett Moment”. Most sports greats have that one lasting image that is legendary. This is probably it but it certainly didn’t define his greatness in Cleveland. Most true Guardians fans who actually paid attention would agree that he was great way before this. If anything it brought him to the national conversation.\"\nnostr:nprofile1qqswc3w8t44syr8g6hsywql42edjxecgdm4h6x2nuud69kr0d9xc6rcpz4mhxue69uhk2er9dchxummnw3ezumrpdejqzrrhwden5te0vfexytnfduq3samnwvaz7tmjv4kxz7fwwdhx7un59eek7cmfv9kq5pfec7","created_at":1759429502,"id":"f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"55da2491e05575343c2b4717af8ec41c2c688d9238e0d4c0866e4a49daa85698e71af3aa4fe02071231cf0f0ed3db74fd630887f7a8cb8c10706c744b25f61eb","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f","","mention"]]}] +[14:25:42.016] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is one of the problems I have with most books - they are filled with lies, and you can glean some truths by kind of filtering out the biases, listening to what's not said, etc but it's exhausting.\n\nFor some reason philosophers are usually but not always an exception.","created_at":1759429500,"id":"5faf03263965a007242ca31f2b52d77c35ed2daa4188e9981536c1ea3d9b8018","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"e935541a0fbb4409dd1af816bf6f310aa0fb5dd9b97b8f8d93fda829d547c8262d846e5073e58f1c10b65f0311d0caa926f8a89e00234de86b7249c6d81df772","tags":[["e","be30626aa378bd40ab1f69c30b47a3e7e3e58fe48baec62a6a9a7ed8f8c5dda3","wss://nostr.oxtr.dev","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:25:42.077] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:25 ------------✄","created_at":1759429500,"id":"4c29eda82c12c803ad986dc78c0cfe4ed33ef90df3f868df623fcce8ed12a69f","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"84d76946c7a973b1978bc7d4f30c3c8508e3584e0657eced7f12b19eaf9ec6b5bd1e23115a852adf3819d9d2059a0c5e599ecfdbeb521fea8634ff632bec09f6","tags":[]}] +[14:25:42.102] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"fuck, i want one aswell.","created_at":1759429497,"id":"30cbae408b721b956f7bb16137c5efe747a6332d5ada8a683333c74e4939a3f9","kind":1,"pubkey":"2bc1cc9268507667c92ea0ec6aa652fc78f1185a9fc9d976910aa6f237811ea5","sig":"c536fac7d83ae2c2c3fc95c7d9b12ada51cd42f3271ad629039dbfa4f5bbc10725e4576ce3174425b302c23eb443957b57bcf5047f012dd7dd55456f3f697fe7","tags":[["e","66a5326113be9221cd5193a00f2799959bccd8f91b9f254849362c20d1dbb678","wss://nostr.oxtr.dev","root","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["e","c1778ec702e924871074b1b6b00da61a2df715cb330e486cf130812f7333fb16","wss://nostr.oxtr.dev/","reply","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"]]}] +[14:25:42.163] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:25:42.223] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:42.284] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:42.344] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:25:42.405] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:25:42.465] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:25:42.526] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:42.586] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:42.647] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:42.707] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"display_name\":\"Oshi (推し)\",\"name\":\"oshi\",\"nip05\":\"oshi@oshigood.us\",\"lud16\":\"oshi@coinos.io\",\"about\":\"⚡️Artisan Pecan Butter, Date Bars, and Chocolates. ₿itcoin and nostr only. \\n\\n#hodlbutter • #hodlbar • #bthcnodes\\n\\nCustom orders: oshigood@proton.me\\n\\nSimplex group chat: https://smp19.simplex.im/g#k1srY8O6XCiYbcLh6BY7lavWtpc2xLz2R8MXKfJsrJk\",\"picture\":\"https://image.nostr.build/a62937470157b7e9e349ea3baebffc92391754262538b257fe5eb54f79379b09.jpg\",\"website\":\"https://www.oshigood.us/\",\"banner\":\"https://image.nostr.build/70b92cc7446a452ccdf036d18ef7f5e2e0843b7b1a8fda39e99337862e96163e.jpg\",\"reactions\":false}","created_at":1759429433,"id":"5ff517f5cc88d9c2668b4e5dd85a409ce935707c93e2344a356ba19b8df96fd8","kind":0,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"f40ff0b9fa3b9c2288712633b9f4a158e3c18ef372806b12694f7c2e339fe6deedbf371a0077c81aa3ed0a2ec2053d2119dba65ed4d3cc8b856c3a73faa6c837","tags":[]}] +[14:25:42.768] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Em :official_verified:\",\"about\":\"Privacy Advocate. Security Passionate. Protector of Data. Tamer of Python. Lover of Encrypted Keys. Recycled Artist. Hardware Enthusiast. Fan of FOSS. Happy Mastodon Mentor to all newcomers!\\n\\nSpending most days writing, reading, and talking about privacy. Journalist at @privacyguides \\n\\nOpen-sourced & open-hearted.\\n(she/her) 🏳️‍🌈\\n\\n🔒 Privacy tips at: #TinyPrivacyTip \\n🐘 Mastodon tips at: #TinyMastodonTip\\n \\nOther hashtags I talk about: \\n#DigitalRights #HumanRights #Privacy #Security #Python #FOSS #FLOSS #OpenSource\\n\\nSecondary accounts at (do not contact me there):\\n🐘 infosec.space/@Em0nM4stodon\\n🐘 mastodon.social/@Em0nM4stodon\\n\\n#nobridge #nobot #noai #noindex #nosearch #noarchive \\n\\nThis is a personal account. Opinions expressed here are my own and do not necessarily reflect my employer. Especially emojis :awesome:\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/108/197/851/470/625/041/original/f56f05846a226449.jpg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/108/197/851/470/625/041/original/7c3da3c2e19d6748.jpeg\",\"nip05\":\"Em0nM4stodon@infosec-exchange.mostr.pub\",\"fields\":[[\"Privacy Guides Articles\",\"https://www.privacyguides.org/articles/author/em/\"],[\"Web\",\"https://emontheinternet.me\"],[\"Blog\",\"https://controlaltdelete.technology\"],[\"Code\",\"https://snakecase.software\"]]}","created_at":1759429387,"id":"0b4a3cdf879aef74c0cc50708c43f5e16008173243b5f9cc57a5d52a8fea0e94","kind":0,"pubkey":"324a744a05e221eb6ed9afe1a1c85bb116cb460ca08b7a0bcc85bb283de694b8","sig":"97e7a338d6b0ec5f891efc5e33aa47cb83f99741634823be5ec15b5eac34ee8e3151a770eb5f2df1ecab73e5eb976e9b7067d1daf15963e81012d57ad89f0042","tags":[["emoji","awesome","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/028/579/original/dcea540b6fc9cffd.png"],["emoji","official_verified","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/162/396/original/70b97769f901fd31.png"],["proxy","https://infosec.exchange/users/Em0nM4stodon","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:42.828] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:25:42.889] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429538,"id":"2cfb6637c7b2ae0ae3e859758a04e4afdc0c21174824c3700664f09bdeab21c8","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"62d6ba48192cf191febba3b50b8fce227689a6e1163e5d0a0992615d1eb94f5083e20148c9eedb8ff05d37a99ebf981dd08346c50612aa515b4d882605a7c8cc","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"]]}] +[14:25:43.191] RECV nos.lol:443: 1e837fb346bfd2c9df816dcccf683f5eff0e9a89489b315180527c +[14:25:43.251] RECV nos.lol:443: dd2e76a61020","tags":[["p","38dbb9b07d93861d40620ad62d4 +[14:25:43.855] RECV nos.lol:443: 9557b728c3be4c6a844b"],["p","f7922a0adb3fa4dda5eecaa62f6 +[14:25:44.036] RECV nos.lol:443: 380cab4832f8daacbb52"],["p","0153d742cf537c94e2bef9541cf +[14:25:45.313] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:25:45.313] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:25:45.313] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:25:45.313] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:25:45.464] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What can we do?","created_at":1759429533,"id":"9fd8769577e085dddfb14fe22f700a91f99f5d48dec5873fa6a37aa006749abe","kind":1,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"46a1a4b8dfa1b8b0b10bea624b575adef43824d5c490b893c8f7fa29bf114cf791284b4b5a157cf550a2148e96395ddda84a11d0286e85e5593a0cdfc0610e82","tags":[["e","9154dbfaec941da7c265678755701ba50ad2a4446d5a419077c1f31511471cec","","root"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:25:45.524] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What’s in there???","created_at":1759429532,"id":"26be005898bc6ba779c6dcfdf8d452a0f08f3ab31df5ba6b4990f34666bc39e4","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"a585e8a17f07be739b28be43d47949763a21634d857dfa40024b32748495eae831fc17dcd48a57fe0d4b9f13b5d684c6f69618463380ec561ed2b8510fd6d1ff","tags":[["e","ef6635f4acd8f161b8eb9b4b12b144efe589fb7d8d85c78f61475abcb577d7fe","","root"],["p","d8f38b894b42f7008305cebf17b48925654f22b180c5861b81141f80ccf72848"]]}] +[14:25:45.585] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapsnag for 500,000 sats and send me a DM.\n💜\nhttps://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","created_at":1759429524,"id":"bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"e49111affacc861d410a35dd22dbbda683f0fe008088aca47de9ee32a3f0fa9f9aca260f65fdffd20bd8b0327b1a95df4bdfc77b45eb09e12129ea9e3002d52c","tags":[["alt","A short note: #zapsnag for 500,000 sats and send me a DM.\n💜\nhtt..."],["t","zapsnag"],["r","https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg"],["imeta","url https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","x f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","size 184533","m image/jpeg","dim 1500x2000","blurhash _8Jj_04Th}vmb{=zxu_K.6XmNNN3R6n$^%,;J.X.R5I:nhERIVxsxrw[xuV[k[tmn2R4%LxGT0wMtS%g%LtQWBWE%gx]x]niX8tks+.8kXIpS5oys+t5b[R*NKNGnNjXbb","ox f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","alt "]]}] +[14:25:45.645] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Do it bro. Dooooooo it 😂\n\nhttps://media1.tenor.com/m/Cxj0iGzCLLYAAAAd/do-it-star-wars.gif","created_at":1759429523,"id":"1090744e81ce1f8a4ffe2398c47f56482aa0e0fa704828c3d60ef70bb4c6d1ed","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b6dfb65afc3cb69f212eaaeb944498bfe6bdb466ef2917dd2bd3a577d8851fb6b7ad014cbe57b0410eaa539300a6b47059af9b994c75a81e6ab32e1a425c79a7","tags":[["e","7d56c6b3979cefb1ba1aa44ea3c72ac08a42143097633ea5b9a21da8d083e3af","wss://relay.damus.io","root"],["e","54e86e22b62345acb66fe0dada1fc413b907c76ce8ceb90fd648760195b9c4e6","","reply"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["r","https://media1.tenor.com/m/Cxj0iGzCLLYAAAAd/do-it-star-wars.gif"]]}] +[14:25:45.706] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It has a nice climate though","created_at":1759429515,"id":"a1abc35f2c9218b189e4433393facfcc11446d9fc8cfb37c9c76dd30401605d0","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"4235e7f90a2ffbc72cec4c96fda31ca4c3920ceb7df2b32b2dbd9848ac734cfc81dfe6fb9f0354f3bd6f21963e5e60f9165fc47015f316d4f75006ea27303d4f","tags":[["alt","A short note: It has a nice climate though"],["e","a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","wss://nostr.bitcoiner.social/","root","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.primal.net/"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/"]]}] +[14:25:45.766] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Zapped ","created_at":1759429506,"id":"6602dc540a4ccfcb88d74426762399f48545d3a85f710a8ec02954ab42361b35","kind":1,"pubkey":"f9c8838736f5a0b611ed2c458a8ae7a480802e4ec38e52e96483986ca44ce612","sig":"0f8e1137c408c72b0c9c8f0a1d5db996dd4fdf56c35ee2f1a531b830536a7210284e9e86198c6078564d2139c56780605c65ae591c8dce760c4e828607885204","tags":[["alt","A short note: Zapped "],["e","e2036afff2a51788e172db94df0a8b5dbf9fbcfbfd5a2cdd5ee1021bcd25f4e1","wss://relay.primal.net/","root","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422"],["p","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422","wss://nos.lol/"]]}] +[14:25:45.827] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"At the time this happened Jose Ramirez was already in the top 10 (and top 5 in some) Guardians team categories like, Home Runs, RBI’s, Steals, Games Played, All Star appearances, perennial mvp (usually year and year out top 5 voting). I consider this his “George Brett Moment”. Most sports greats have that one lasting image that is legendary. This is probably it but it certainly didn’t define his greatness in Cleveland. Most true Guardians fans who actually paid attention would agree that he was great way before this. If anything it brought him to the national conversation.\"\nnostr:nprofile1qqswc3w8t44syr8g6hsywql42edjxecgdm4h6x2nuud69kr0d9xc6rcpz4mhxue69uhk2er9dchxummnw3ezumrpdejqzrrhwden5te0vfexytnfduq3samnwvaz7tmjv4kxz7fwwdhx7un59eek7cmfv9kq5pfec7","created_at":1759429502,"id":"f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"55da2491e05575343c2b4717af8ec41c2c688d9238e0d4c0866e4a49daa85698e71af3aa4fe02071231cf0f0ed3db74fd630887f7a8cb8c10706c744b25f61eb","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f","","mention"]]}] +[14:25:45.887] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is one of the problems I have with most books - they are filled with lies, and you can glean some truths by kind of filtering out the biases, listening to what's not said, etc but it's exhausting.\n\nFor some reason philosophers are usually but not always an exception.","created_at":1759429500,"id":"5faf03263965a007242ca31f2b52d77c35ed2daa4188e9981536c1ea3d9b8018","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"e935541a0fbb4409dd1af816bf6f310aa0fb5dd9b97b8f8d93fda829d547c8262d846e5073e58f1c10b65f0311d0caa926f8a89e00234de86b7249c6d81df772","tags":[["e","be30626aa378bd40ab1f69c30b47a3e7e3e58fe48baec62a6a9a7ed8f8c5dda3","wss://nostr.oxtr.dev","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:25:45.948] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:25 ------------✄","created_at":1759429500,"id":"4c29eda82c12c803ad986dc78c0cfe4ed33ef90df3f868df623fcce8ed12a69f","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"84d76946c7a973b1978bc7d4f30c3c8508e3584e0657eced7f12b19eaf9ec6b5bd1e23115a852adf3819d9d2059a0c5e599ecfdbeb521fea8634ff632bec09f6","tags":[]}] +[14:25:46.008] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"fuck, i want one aswell.","created_at":1759429497,"id":"30cbae408b721b956f7bb16137c5efe747a6332d5ada8a683333c74e4939a3f9","kind":1,"pubkey":"2bc1cc9268507667c92ea0ec6aa652fc78f1185a9fc9d976910aa6f237811ea5","sig":"c536fac7d83ae2c2c3fc95c7d9b12ada51cd42f3271ad629039dbfa4f5bbc10725e4576ce3174425b302c23eb443957b57bcf5047f012dd7dd55456f3f697fe7","tags":[["e","66a5326113be9221cd5193a00f2799959bccd8f91b9f254849362c20d1dbb678","wss://nostr.oxtr.dev","root","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["e","c1778ec702e924871074b1b6b00da61a2df715cb330e486cf130812f7333fb16","wss://nostr.oxtr.dev/","reply","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"]]}] +[14:25:46.069] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:25:46.129] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:46.190] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:46.251] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:46.311] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:25:46.372] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:25:46.432] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:25:46.493] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:46.553] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:46.614] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:46.674] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"display_name\":\"Oshi (推し)\",\"name\":\"oshi\",\"nip05\":\"oshi@oshigood.us\",\"lud16\":\"oshi@coinos.io\",\"about\":\"⚡️Artisan Pecan Butter, Date Bars, and Chocolates. ₿itcoin and nostr only. \\n\\n#hodlbutter • #hodlbar • #bthcnodes\\n\\nCustom orders: oshigood@proton.me\\n\\nSimplex group chat: https://smp19.simplex.im/g#k1srY8O6XCiYbcLh6BY7lavWtpc2xLz2R8MXKfJsrJk\",\"picture\":\"https://image.nostr.build/a62937470157b7e9e349ea3baebffc92391754262538b257fe5eb54f79379b09.jpg\",\"website\":\"https://www.oshigood.us/\",\"banner\":\"https://image.nostr.build/70b92cc7446a452ccdf036d18ef7f5e2e0843b7b1a8fda39e99337862e96163e.jpg\",\"reactions\":false}","created_at":1759429433,"id":"5ff517f5cc88d9c2668b4e5dd85a409ce935707c93e2344a356ba19b8df96fd8","kind":0,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"f40ff0b9fa3b9c2288712633b9f4a158e3c18ef372806b12694f7c2e339fe6deedbf371a0077c81aa3ed0a2ec2053d2119dba65ed4d3cc8b856c3a73faa6c837","tags":[]}] +[14:25:46.735] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:25:46.795] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429538,"id":"2cfb6637c7b2ae0ae3e859758a04e4afdc0c21174824c3700664f09bdeab21c8","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"62d6ba48192cf191febba3b50b8fce227689a6e1163e5d0a0992615d1eb94f5083e20148c9eedb8ff05d37a99ebf981dd08346c50612aa515b4d882605a7c8cc","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"]]}] +[14:25:47.097] RECV nos.lol:443: 1e837fb346bfd2c9df816dcccf683f5eff0e9a89489b315180527c +[14:25:47.123] RECV nos.lol:443: dd2e76a61020","tags":[["p","38dbb9b07d93861d40620ad62d4 +[14:25:47.726] RECV nos.lol:443: 9557b728c3be4c6a844b"],["p","f7922a0adb3fa4dda5eecaa62f6 +[14:25:47.907] RECV nos.lol:443: 380cab4832f8daacbb52"],["p","0153d742cf537c94e2bef9541cf +[14:25:49.181] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:25:49.181] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:25:49.181] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:25:49.181] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:25:49.332] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BootiFull \nhttps://images2.imgbox.com/2b/56/YBu7QR5A_o.jpg \nlook back at it #BootiFull ","created_at":1759429547,"id":"641377f01d32fd2fc43b62c630766613eecb395f301d9b27b7048b2766dc32ce","kind":1,"pubkey":"000006bb62c0e3e418c342334165da0a17b971b8feae869af710d5a8979114a6","sig":"af489b1b2347c8ecdbb52b20846dc965aeb46a9fd0b0a6ae5850e2676e08acb575888d065327334621d8b4d77f02fa8ed21eb5e04cfbbd73ec4417c5eca282ac","tags":[]}] +[14:25:49.393] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can you pass me to Dave ?","created_at":1759429547,"id":"a58ffaa16997369ce3d3c03c9f003889a86fa145f460c057f0b9cc3cf7bc8356","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"2428a90cc6ab4a3ea770b7fdeccb84b7474e973ef23471d92b0b50ac691bdee3d5008030baef7170e39a35e3e3220ccbd532c59bd862089f0df8b745fb0648e5","tags":[["alt","A short note: Can you pass me to Dave ?"],["e","6cf55726b5d4a77dd6a7df40446faf149eef7ce8cf1d1fde1e6e38bdaa9b26ea","wss://relay.orangepill.ovh/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:25:49.453] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#bitcoin Core is fucked and they did it to themselves. They are the new btrash crew. Fucking up the Bitcoin protocol. Running Knots…","created_at":1759429547,"id":"f1a25303cf32e28bb7df7b7614bfd075c7e7fa0d266156640b13aee7e4b9ece8","kind":1,"pubkey":"fc745f261349109985cea5a80d33be0e26b90c0864b76501265c5481534e7b30","sig":"179cf5038a1c6337147411aefc5e6e9d1a104b84d9f4c374a350644c0300e55a77c5d238ee4e2b32951bfa9cd994e1d0de9b9cf8a9d39d8222ae7dfae0836ba1","tags":[["t","bitcoin"]]}] +[14:25:49.514] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今日mattnのAI動画でASMR聞いた(聞いたって言う話だけしておきます)","created_at":1759429547,"id":"458ed03f770223fd9126ccdc50e8284fb0430294746efd7b1d3a4a6ca9aef79f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"298d0b8460e2ea022dfad65c87462acc26b94164ea0374db0f95ab4e77a79ee647d5a2b2a126cf904897ded3da3879ab8021c7db516e25c2df6f15e6e776c9a1","tags":[]}] +[14:25:49.574] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What can we do?","created_at":1759429533,"id":"9fd8769577e085dddfb14fe22f700a91f99f5d48dec5873fa6a37aa006749abe","kind":1,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"46a1a4b8dfa1b8b0b10bea624b575adef43824d5c490b893c8f7fa29bf114cf791284b4b5a157cf550a2148e96395ddda84a11d0286e85e5593a0cdfc0610e82","tags":[["e","9154dbfaec941da7c265678755701ba50ad2a4446d5a419077c1f31511471cec","","root"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:25:49.635] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What’s in there???","created_at":1759429532,"id":"26be005898bc6ba779c6dcfdf8d452a0f08f3ab31df5ba6b4990f34666bc39e4","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"a585e8a17f07be739b28be43d47949763a21634d857dfa40024b32748495eae831fc17dcd48a57fe0d4b9f13b5d684c6f69618463380ec561ed2b8510fd6d1ff","tags":[["e","ef6635f4acd8f161b8eb9b4b12b144efe589fb7d8d85c78f61475abcb577d7fe","","root"],["p","d8f38b894b42f7008305cebf17b48925654f22b180c5861b81141f80ccf72848"]]}] +[14:25:49.695] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapsnag for 500,000 sats and send me a DM.\n💜\nhttps://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","created_at":1759429524,"id":"bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"e49111affacc861d410a35dd22dbbda683f0fe008088aca47de9ee32a3f0fa9f9aca260f65fdffd20bd8b0327b1a95df4bdfc77b45eb09e12129ea9e3002d52c","tags":[["alt","A short note: #zapsnag for 500,000 sats and send me a DM.\n💜\nhtt..."],["t","zapsnag"],["r","https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg"],["imeta","url https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","x f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","size 184533","m image/jpeg","dim 1500x2000","blurhash _8Jj_04Th}vmb{=zxu_K.6XmNNN3R6n$^%,;J.X.R5I:nhERIVxsxrw[xuV[k[tmn2R4%LxGT0wMtS%g%LtQWBWE%gx]x]niX8tks+.8kXIpS5oys+t5b[R*NKNGnNjXbb","ox f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","alt "]]}] +[14:25:49.756] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Do it bro. Dooooooo it 😂\n\nhttps://media1.tenor.com/m/Cxj0iGzCLLYAAAAd/do-it-star-wars.gif","created_at":1759429523,"id":"1090744e81ce1f8a4ffe2398c47f56482aa0e0fa704828c3d60ef70bb4c6d1ed","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b6dfb65afc3cb69f212eaaeb944498bfe6bdb466ef2917dd2bd3a577d8851fb6b7ad014cbe57b0410eaa539300a6b47059af9b994c75a81e6ab32e1a425c79a7","tags":[["e","7d56c6b3979cefb1ba1aa44ea3c72ac08a42143097633ea5b9a21da8d083e3af","wss://relay.damus.io","root"],["e","54e86e22b62345acb66fe0dada1fc413b907c76ce8ceb90fd648760195b9c4e6","","reply"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["r","https://media1.tenor.com/m/Cxj0iGzCLLYAAAAd/do-it-star-wars.gif"]]}] +[14:25:49.816] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It has a nice climate though","created_at":1759429515,"id":"a1abc35f2c9218b189e4433393facfcc11446d9fc8cfb37c9c76dd30401605d0","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"4235e7f90a2ffbc72cec4c96fda31ca4c3920ceb7df2b32b2dbd9848ac734cfc81dfe6fb9f0354f3bd6f21963e5e60f9165fc47015f316d4f75006ea27303d4f","tags":[["alt","A short note: It has a nice climate though"],["e","a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","wss://nostr.bitcoiner.social/","root","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.primal.net/"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/"]]}] +[14:25:49.877] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Zapped ","created_at":1759429506,"id":"6602dc540a4ccfcb88d74426762399f48545d3a85f710a8ec02954ab42361b35","kind":1,"pubkey":"f9c8838736f5a0b611ed2c458a8ae7a480802e4ec38e52e96483986ca44ce612","sig":"0f8e1137c408c72b0c9c8f0a1d5db996dd4fdf56c35ee2f1a531b830536a7210284e9e86198c6078564d2139c56780605c65ae591c8dce760c4e828607885204","tags":[["alt","A short note: Zapped "],["e","e2036afff2a51788e172db94df0a8b5dbf9fbcfbfd5a2cdd5ee1021bcd25f4e1","wss://relay.primal.net/","root","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422"],["p","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422","wss://nos.lol/"]]}] +[14:25:49.937] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:25:49.998] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:50.058] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:50.119] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:50.179] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:25:50.240] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:25:50.300] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:25:50.361] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:50.421] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:50.482] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:50.542] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"display_name\":\"Oshi (推し)\",\"name\":\"oshi\",\"nip05\":\"oshi@oshigood.us\",\"lud16\":\"oshi@coinos.io\",\"about\":\"⚡️Artisan Pecan Butter, Date Bars, and Chocolates. ₿itcoin and nostr only. \\n\\n#hodlbutter • #hodlbar • #bthcnodes\\n\\nCustom orders: oshigood@proton.me\\n\\nSimplex group chat: https://smp19.simplex.im/g#k1srY8O6XCiYbcLh6BY7lavWtpc2xLz2R8MXKfJsrJk\",\"picture\":\"https://image.nostr.build/a62937470157b7e9e349ea3baebffc92391754262538b257fe5eb54f79379b09.jpg\",\"website\":\"https://www.oshigood.us/\",\"banner\":\"https://image.nostr.build/70b92cc7446a452ccdf036d18ef7f5e2e0843b7b1a8fda39e99337862e96163e.jpg\",\"reactions\":false}","created_at":1759429433,"id":"5ff517f5cc88d9c2668b4e5dd85a409ce935707c93e2344a356ba19b8df96fd8","kind":0,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"f40ff0b9fa3b9c2288712633b9f4a158e3c18ef372806b12694f7c2e339fe6deedbf371a0077c81aa3ed0a2ec2053d2119dba65ed4d3cc8b856c3a73faa6c837","tags":[]}] +[14:25:50.603] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:25:50.663] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429538,"id":"2cfb6637c7b2ae0ae3e859758a04e4afdc0c21174824c3700664f09bdeab21c8","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"62d6ba48192cf191febba3b50b8fce227689a6e1163e5d0a0992615d1eb94f5083e20148c9eedb8ff05d37a99ebf981dd08346c50612aa515b4d882605a7c8cc","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"]]}] +[14:25:50.965] RECV nos.lol:443: 1e837fb346bfd2c9df816dcccf683f5eff0e9a89489b315180527c +[14:25:51.026] RECV nos.lol:443: dd2e76a61020","tags":[["p","38dbb9b07d93861d40620ad62d4 +[14:25:51.629] RECV nos.lol:443: 9557b728c3be4c6a844b"],["p","f7922a0adb3fa4dda5eecaa62f6 +[14:25:51.810] RECV nos.lol:443: 380cab4832f8daacbb52"],["p","0153d742cf537c94e2bef9541cf +[14:25:53.048] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:25:53.048] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:25:53.048] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:25:53.049] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:25:53.206] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"FWITW here’s my take on the Core vs. Knots storm-in-a-teacup.\n\nIt feels like yet another manufactured crisis aimed at seizing control of the codebase — starting around two years ago with hundreds of millions of dollars burned on transaction fees to spam the network with superfluous data. Tellingly, that activity came to an abrupt halt right around Trump’s election, and now 1 sat/vB transactions prevail as if nothing happened.\n\nDespite this, panic is being stirred, with calls to abandon Bitcoin Core for a client maintained by a single developer, who wants to decide which transactions are “good” and get through, and which are “bad” and get memory-holed.\n\nIt will be telling if the drama continues now that Core has backtracked a bit. If it does, it’s a clear sign this fight isn’t about halting ‘spam’ at all, it’s about control of the codebase.\n\nAnd on that subject: this episode only reinforces the urgency of ossifying the codebase against anything beyond essential maintenance and security fixes, ideally before the original cypherpunks retire. In my mind the deepest confidence and respect must go to those who not only bootstrapped Bitcoin, but also stood firm in defending it during the Blocksize Wars.","created_at":1759429551,"id":"514a51a0c43e5448e0d01980f3b0402d557c9c64515e8c3147ea2311509262e8","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"7fb9b6d3b715a9fb137a07d4e75a2628895aee2e9d1ea6128300c314f6963631b892cca4c38ff34c8e2c3980da9184ab2a40293465ef9a6f311bf8da263152a8","tags":[]}] +[14:25:53.266] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oh absolutely not. Are you not then? You're just virtue signaling from the sidelines? \n\n","created_at":1759429549,"id":"8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"ab98e1418bab697b6c741351b28e2ad8a4471f6c7512b2abe5deacb7c649bdd34d2250de6d9206427de6e46c28910b5042fc0fee4de3b4959e2099f2921befae","tags":[["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://Nostr.einundzwanzig.space"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","8e205aa9c4740c81b3fc1f7b31260b4126f6dfcff5251223f6394674893af212","wss://Nostr.einundzwanzig.space","reply","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:25:53.548] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BootiFull \nhttps://images2.imgbox.com/2b/56/YBu7QR5A_o.jpg \nlook back at it #BootiFull ","created_at":1759429547,"id":"641377f01d32fd2fc43b62c630766613eecb395f301d9b27b7048b2766dc32ce","kind":1,"pubkey":"000006bb62c0e3e418c342334165da0a17b971b8feae869af710d5a8979114a6","sig":"af489b1b2347c8ecdbb52b20846dc965aeb46a9fd0b0a6ae5850e2676e08acb575888d065327334621d8b4d77f02fa8ed21eb5e04cfbbd73ec4417c5eca282ac","tags":[]}] +[14:25:53.609] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can you pass me to Dave ?","created_at":1759429547,"id":"a58ffaa16997369ce3d3c03c9f003889a86fa145f460c057f0b9cc3cf7bc8356","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"2428a90cc6ab4a3ea770b7fdeccb84b7474e973ef23471d92b0b50ac691bdee3d5008030baef7170e39a35e3e3220ccbd532c59bd862089f0df8b745fb0648e5","tags":[["alt","A short note: Can you pass me to Dave ?"],["e","6cf55726b5d4a77dd6a7df40446faf149eef7ce8cf1d1fde1e6e38bdaa9b26ea","wss://relay.orangepill.ovh/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:25:53.670] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#bitcoin Core is fucked and they did it to themselves. They are the new btrash crew. Fucking up the Bitcoin protocol. Running Knots…","created_at":1759429547,"id":"f1a25303cf32e28bb7df7b7614bfd075c7e7fa0d266156640b13aee7e4b9ece8","kind":1,"pubkey":"fc745f261349109985cea5a80d33be0e26b90c0864b76501265c5481534e7b30","sig":"179cf5038a1c6337147411aefc5e6e9d1a104b84d9f4c374a350644c0300e55a77c5d238ee4e2b32951bfa9cd994e1d0de9b9cf8a9d39d8222ae7dfae0836ba1","tags":[["t","bitcoin"]]}] +[14:25:53.730] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今日mattnのAI動画でASMR聞いた(聞いたって言う話だけしておきます)","created_at":1759429547,"id":"458ed03f770223fd9126ccdc50e8284fb0430294746efd7b1d3a4a6ca9aef79f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"298d0b8460e2ea022dfad65c87462acc26b94164ea0374db0f95ab4e77a79ee647d5a2b2a126cf904897ded3da3879ab8021c7db516e25c2df6f15e6e776c9a1","tags":[]}] +[14:25:53.791] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What can we do?","created_at":1759429533,"id":"9fd8769577e085dddfb14fe22f700a91f99f5d48dec5873fa6a37aa006749abe","kind":1,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"46a1a4b8dfa1b8b0b10bea624b575adef43824d5c490b893c8f7fa29bf114cf791284b4b5a157cf550a2148e96395ddda84a11d0286e85e5593a0cdfc0610e82","tags":[["e","9154dbfaec941da7c265678755701ba50ad2a4446d5a419077c1f31511471cec","","root"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:25:53.851] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What’s in there???","created_at":1759429532,"id":"26be005898bc6ba779c6dcfdf8d452a0f08f3ab31df5ba6b4990f34666bc39e4","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"a585e8a17f07be739b28be43d47949763a21634d857dfa40024b32748495eae831fc17dcd48a57fe0d4b9f13b5d684c6f69618463380ec561ed2b8510fd6d1ff","tags":[["e","ef6635f4acd8f161b8eb9b4b12b144efe589fb7d8d85c78f61475abcb577d7fe","","root"],["p","d8f38b894b42f7008305cebf17b48925654f22b180c5861b81141f80ccf72848"]]}] +[14:25:53.912] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapsnag for 500,000 sats and send me a DM.\n💜\nhttps://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","created_at":1759429524,"id":"bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"e49111affacc861d410a35dd22dbbda683f0fe008088aca47de9ee32a3f0fa9f9aca260f65fdffd20bd8b0327b1a95df4bdfc77b45eb09e12129ea9e3002d52c","tags":[["alt","A short note: #zapsnag for 500,000 sats and send me a DM.\n💜\nhtt..."],["t","zapsnag"],["r","https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg"],["imeta","url https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","x f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","size 184533","m image/jpeg","dim 1500x2000","blurhash _8Jj_04Th}vmb{=zxu_K.6XmNNN3R6n$^%,;J.X.R5I:nhERIVxsxrw[xuV[k[tmn2R4%LxGT0wMtS%g%LtQWBWE%gx]x]niX8tks+.8kXIpS5oys+t5b[R*NKNGnNjXbb","ox f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","alt "]]}] +[14:25:53.972] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Do it bro. Dooooooo it 😂\n\nhttps://media1.tenor.com/m/Cxj0iGzCLLYAAAAd/do-it-star-wars.gif","created_at":1759429523,"id":"1090744e81ce1f8a4ffe2398c47f56482aa0e0fa704828c3d60ef70bb4c6d1ed","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b6dfb65afc3cb69f212eaaeb944498bfe6bdb466ef2917dd2bd3a577d8851fb6b7ad014cbe57b0410eaa539300a6b47059af9b994c75a81e6ab32e1a425c79a7","tags":[["e","7d56c6b3979cefb1ba1aa44ea3c72ac08a42143097633ea5b9a21da8d083e3af","wss://relay.damus.io","root"],["e","54e86e22b62345acb66fe0dada1fc413b907c76ce8ceb90fd648760195b9c4e6","","reply"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["r","https://media1.tenor.com/m/Cxj0iGzCLLYAAAAd/do-it-star-wars.gif"]]}] +[14:25:54.033] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:25:54.093] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:54.154] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:54.215] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:54.275] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:54.336] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:25:54.396] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:25:54.457] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:25:54.518] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:54.578] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:54.639] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:54.699] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:25:54.760] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429538,"id":"2cfb6637c7b2ae0ae3e859758a04e4afdc0c21174824c3700664f09bdeab21c8","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"62d6ba48192cf191febba3b50b8fce227689a6e1163e5d0a0992615d1eb94f5083e20148c9eedb8ff05d37a99ebf981dd08346c50612aa515b4d882605a7c8cc","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"]]}] +[14:25:55.062] RECV nos.lol:443: 1e837fb346bfd2c9df816dcccf683f5eff0e9a89489b315180527c +[14:25:55.122] RECV nos.lol:443: dd2e76a61020","tags":[["p","38dbb9b07d93861d40620ad62d4 +[14:25:55.726] RECV nos.lol:443: 9557b728c3be4c6a844b"],["p","f7922a0adb3fa4dda5eecaa62f6 +[14:25:55.907] RECV nos.lol:443: 380cab4832f8daacbb52"],["p","0153d742cf537c94e2bef9541cf +[14:25:57.185] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:25:57.186] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:25:57.186] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:25:57.186] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:25:57.357] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remember, even as Bitcoin climbs back toward its highs, it’s still far from reaching its true potential. Stay grounded, the real reward of Bitcoin comes from practicing low time preference.\n\n#Bitcoin → ₿120,246\n₿lock height → 917,402","created_at":1759429556,"id":"e85c0fa796ee3f66d95c10b69e87137e91d1654e082833b2064f539b43d7f8a3","kind":1,"pubkey":"b8e711ea98fc1d6a53e86c5f802580e97529bceb03c033a57726c3708e21bfcf","sig":"d110d7693807abe9e9798b0521dc070a87f1aa70af13a9c3ac54d324ddd339132dca900b062029fd675819d1b18cb3b707089db5008c9df4f43b6f0100c70a57","tags":[["t","Bitcoin"]]}] +[14:25:57.418] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"FWITW here’s my take on the Core vs. Knots storm-in-a-teacup.\n\nIt feels like yet another manufactured crisis aimed at seizing control of the codebase — starting around two years ago with hundreds of millions of dollars burned on transaction fees to spam the network with superfluous data. Tellingly, that activity came to an abrupt halt right around Trump’s election, and now 1 sat/vB transactions prevail as if nothing happened.\n\nDespite this, panic is being stirred, with calls to abandon Bitcoin Core for a client maintained by a single developer, who wants to decide which transactions are “good” and get through, and which are “bad” and get memory-holed.\n\nIt will be telling if the drama continues now that Core has backtracked a bit. If it does, it’s a clear sign this fight isn’t about halting ‘spam’ at all, it’s about control of the codebase.\n\nAnd on that subject: this episode only reinforces the urgency of ossifying the codebase against anything beyond essential maintenance and security fixes, ideally before the original cypherpunks retire. In my mind the deepest confidence and respect must go to those who not only bootstrapped Bitcoin, but also stood firm in defending it during the Blocksize Wars.","created_at":1759429551,"id":"514a51a0c43e5448e0d01980f3b0402d557c9c64515e8c3147ea2311509262e8","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"7fb9b6d3b715a9fb137a07d4e75a2628895aee2e9d1ea6128300c314f6963631b892cca4c38ff34c8e2c3980da9184ab2a40293465ef9a6f311bf8da263152a8","tags":[]}] +[14:25:57.479] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oh absolutely not. Are you not then? You're just virtue signaling from the sidelines? \n\n","created_at":1759429549,"id":"8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"ab98e1418bab697b6c741351b28e2ad8a4471f6c7512b2abe5deacb7c649bdd34d2250de6d9206427de6e46c28910b5042fc0fee4de3b4959e2099f2921befae","tags":[["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://Nostr.einundzwanzig.space"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","8e205aa9c4740c81b3fc1f7b31260b4126f6dfcff5251223f6394674893af212","wss://Nostr.einundzwanzig.space","reply","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:25:57.539] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BootiFull \nhttps://images2.imgbox.com/2b/56/YBu7QR5A_o.jpg \nlook back at it #BootiFull ","created_at":1759429547,"id":"641377f01d32fd2fc43b62c630766613eecb395f301d9b27b7048b2766dc32ce","kind":1,"pubkey":"000006bb62c0e3e418c342334165da0a17b971b8feae869af710d5a8979114a6","sig":"af489b1b2347c8ecdbb52b20846dc965aeb46a9fd0b0a6ae5850e2676e08acb575888d065327334621d8b4d77f02fa8ed21eb5e04cfbbd73ec4417c5eca282ac","tags":[]}] +[14:25:57.600] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can you pass me to Dave ?","created_at":1759429547,"id":"a58ffaa16997369ce3d3c03c9f003889a86fa145f460c057f0b9cc3cf7bc8356","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"2428a90cc6ab4a3ea770b7fdeccb84b7474e973ef23471d92b0b50ac691bdee3d5008030baef7170e39a35e3e3220ccbd532c59bd862089f0df8b745fb0648e5","tags":[["alt","A short note: Can you pass me to Dave ?"],["e","6cf55726b5d4a77dd6a7df40446faf149eef7ce8cf1d1fde1e6e38bdaa9b26ea","wss://relay.orangepill.ovh/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:25:57.661] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#bitcoin Core is fucked and they did it to themselves. They are the new btrash crew. Fucking up the Bitcoin protocol. Running Knots…","created_at":1759429547,"id":"f1a25303cf32e28bb7df7b7614bfd075c7e7fa0d266156640b13aee7e4b9ece8","kind":1,"pubkey":"fc745f261349109985cea5a80d33be0e26b90c0864b76501265c5481534e7b30","sig":"179cf5038a1c6337147411aefc5e6e9d1a104b84d9f4c374a350644c0300e55a77c5d238ee4e2b32951bfa9cd994e1d0de9b9cf8a9d39d8222ae7dfae0836ba1","tags":[["t","bitcoin"]]}] +[14:25:57.721] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今日mattnのAI動画でASMR聞いた(聞いたって言う話だけしておきます)","created_at":1759429547,"id":"458ed03f770223fd9126ccdc50e8284fb0430294746efd7b1d3a4a6ca9aef79f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"298d0b8460e2ea022dfad65c87462acc26b94164ea0374db0f95ab4e77a79ee647d5a2b2a126cf904897ded3da3879ab8021c7db516e25c2df6f15e6e776c9a1","tags":[]}] +[14:25:57.782] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What can we do?","created_at":1759429533,"id":"9fd8769577e085dddfb14fe22f700a91f99f5d48dec5873fa6a37aa006749abe","kind":1,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"46a1a4b8dfa1b8b0b10bea624b575adef43824d5c490b893c8f7fa29bf114cf791284b4b5a157cf550a2148e96395ddda84a11d0286e85e5593a0cdfc0610e82","tags":[["e","9154dbfaec941da7c265678755701ba50ad2a4446d5a419077c1f31511471cec","","root"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:25:57.842] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What’s in there???","created_at":1759429532,"id":"26be005898bc6ba779c6dcfdf8d452a0f08f3ab31df5ba6b4990f34666bc39e4","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"a585e8a17f07be739b28be43d47949763a21634d857dfa40024b32748495eae831fc17dcd48a57fe0d4b9f13b5d684c6f69618463380ec561ed2b8510fd6d1ff","tags":[["e","ef6635f4acd8f161b8eb9b4b12b144efe589fb7d8d85c78f61475abcb577d7fe","","root"],["p","d8f38b894b42f7008305cebf17b48925654f22b180c5861b81141f80ccf72848"]]}] +[14:25:57.903] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapsnag for 500,000 sats and send me a DM.\n💜\nhttps://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","created_at":1759429524,"id":"bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"e49111affacc861d410a35dd22dbbda683f0fe008088aca47de9ee32a3f0fa9f9aca260f65fdffd20bd8b0327b1a95df4bdfc77b45eb09e12129ea9e3002d52c","tags":[["alt","A short note: #zapsnag for 500,000 sats and send me a DM.\n💜\nhtt..."],["t","zapsnag"],["r","https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg"],["imeta","url https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","x f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","size 184533","m image/jpeg","dim 1500x2000","blurhash _8Jj_04Th}vmb{=zxu_K.6XmNNN3R6n$^%,;J.X.R5I:nhERIVxsxrw[xuV[k[tmn2R4%LxGT0wMtS%g%LtQWBWE%gx]x]niX8tks+.8kXIpS5oys+t5b[R*NKNGnNjXbb","ox f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","alt "]]}] +[14:25:57.964] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:25:58.024] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:58.085] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:58.145] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:58.206] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:58.266] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:25:58.327] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:25:58.387] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:25:58.448] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:58.509] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:58.569] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:58.630] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:25:58.691] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429538,"id":"2cfb6637c7b2ae0ae3e859758a04e4afdc0c21174824c3700664f09bdeab21c8","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"62d6ba48192cf191febba3b50b8fce227689a6e1163e5d0a0992615d1eb94f5083e20148c9eedb8ff05d37a99ebf981dd08346c50612aa515b4d882605a7c8cc","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"]]}] +[14:25:58.993] RECV nos.lol:443: 1e837fb346bfd2c9df816dcccf683f5eff0e9a89489b315180527c +[14:25:59.053] RECV nos.lol:443: dd2e76a61020","tags":[["p","38dbb9b07d93861d40620ad62d4 +[14:25:59.657] RECV nos.lol:443: 9557b728c3be4c6a844b"],["p","f7922a0adb3fa4dda5eecaa62f6 +[14:25:59.839] RECV nos.lol:443: 380cab4832f8daacbb52"],["p","0153d742cf537c94e2bef9541cf +[14:26:01.116] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:26:01.116] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:26:01.116] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:26:01.116] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:26:01.267] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remember, even as Bitcoin climbs back toward its highs, it’s still far from reaching its true potential. Stay grounded, the real reward of Bitcoin comes from practicing low time preference.\n\n#Bitcoin → ₿120,246\n₿lock height → 917,402","created_at":1759429556,"id":"e85c0fa796ee3f66d95c10b69e87137e91d1654e082833b2064f539b43d7f8a3","kind":1,"pubkey":"b8e711ea98fc1d6a53e86c5f802580e97529bceb03c033a57726c3708e21bfcf","sig":"d110d7693807abe9e9798b0521dc070a87f1aa70af13a9c3ac54d324ddd339132dca900b062029fd675819d1b18cb3b707089db5008c9df4f43b6f0100c70a57","tags":[["t","Bitcoin"]]}] +[14:26:01.327] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"FWITW here’s my take on the Core vs. Knots storm-in-a-teacup.\n\nIt feels like yet another manufactured crisis aimed at seizing control of the codebase — starting around two years ago with hundreds of millions of dollars burned on transaction fees to spam the network with superfluous data. Tellingly, that activity came to an abrupt halt right around Trump’s election, and now 1 sat/vB transactions prevail as if nothing happened.\n\nDespite this, panic is being stirred, with calls to abandon Bitcoin Core for a client maintained by a single developer, who wants to decide which transactions are “good” and get through, and which are “bad” and get memory-holed.\n\nIt will be telling if the drama continues now that Core has backtracked a bit. If it does, it’s a clear sign this fight isn’t about halting ‘spam’ at all, it’s about control of the codebase.\n\nAnd on that subject: this episode only reinforces the urgency of ossifying the codebase against anything beyond essential maintenance and security fixes, ideally before the original cypherpunks retire. In my mind the deepest confidence and respect must go to those who not only bootstrapped Bitcoin, but also stood firm in defending it during the Blocksize Wars.","created_at":1759429551,"id":"514a51a0c43e5448e0d01980f3b0402d557c9c64515e8c3147ea2311509262e8","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"7fb9b6d3b715a9fb137a07d4e75a2628895aee2e9d1ea6128300c314f6963631b892cca4c38ff34c8e2c3980da9184ab2a40293465ef9a6f311bf8da263152a8","tags":[]}] +[14:26:01.388] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oh absolutely not. Are you not then? You're just virtue signaling from the sidelines? \n\n","created_at":1759429549,"id":"8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"ab98e1418bab697b6c741351b28e2ad8a4471f6c7512b2abe5deacb7c649bdd34d2250de6d9206427de6e46c28910b5042fc0fee4de3b4959e2099f2921befae","tags":[["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://Nostr.einundzwanzig.space"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","8e205aa9c4740c81b3fc1f7b31260b4126f6dfcff5251223f6394674893af212","wss://Nostr.einundzwanzig.space","reply","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:26:01.448] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BootiFull \nhttps://images2.imgbox.com/2b/56/YBu7QR5A_o.jpg \nlook back at it #BootiFull ","created_at":1759429547,"id":"641377f01d32fd2fc43b62c630766613eecb395f301d9b27b7048b2766dc32ce","kind":1,"pubkey":"000006bb62c0e3e418c342334165da0a17b971b8feae869af710d5a8979114a6","sig":"af489b1b2347c8ecdbb52b20846dc965aeb46a9fd0b0a6ae5850e2676e08acb575888d065327334621d8b4d77f02fa8ed21eb5e04cfbbd73ec4417c5eca282ac","tags":[]}] +[14:26:01.509] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can you pass me to Dave ?","created_at":1759429547,"id":"a58ffaa16997369ce3d3c03c9f003889a86fa145f460c057f0b9cc3cf7bc8356","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"2428a90cc6ab4a3ea770b7fdeccb84b7474e973ef23471d92b0b50ac691bdee3d5008030baef7170e39a35e3e3220ccbd532c59bd862089f0df8b745fb0648e5","tags":[["alt","A short note: Can you pass me to Dave ?"],["e","6cf55726b5d4a77dd6a7df40446faf149eef7ce8cf1d1fde1e6e38bdaa9b26ea","wss://relay.orangepill.ovh/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:01.570] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#bitcoin Core is fucked and they did it to themselves. They are the new btrash crew. Fucking up the Bitcoin protocol. Running Knots…","created_at":1759429547,"id":"f1a25303cf32e28bb7df7b7614bfd075c7e7fa0d266156640b13aee7e4b9ece8","kind":1,"pubkey":"fc745f261349109985cea5a80d33be0e26b90c0864b76501265c5481534e7b30","sig":"179cf5038a1c6337147411aefc5e6e9d1a104b84d9f4c374a350644c0300e55a77c5d238ee4e2b32951bfa9cd994e1d0de9b9cf8a9d39d8222ae7dfae0836ba1","tags":[["t","bitcoin"]]}] +[14:26:01.630] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今日mattnのAI動画でASMR聞いた(聞いたって言う話だけしておきます)","created_at":1759429547,"id":"458ed03f770223fd9126ccdc50e8284fb0430294746efd7b1d3a4a6ca9aef79f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"298d0b8460e2ea022dfad65c87462acc26b94164ea0374db0f95ab4e77a79ee647d5a2b2a126cf904897ded3da3879ab8021c7db516e25c2df6f15e6e776c9a1","tags":[]}] +[14:26:01.690] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What can we do?","created_at":1759429533,"id":"9fd8769577e085dddfb14fe22f700a91f99f5d48dec5873fa6a37aa006749abe","kind":1,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"46a1a4b8dfa1b8b0b10bea624b575adef43824d5c490b893c8f7fa29bf114cf791284b4b5a157cf550a2148e96395ddda84a11d0286e85e5593a0cdfc0610e82","tags":[["e","9154dbfaec941da7c265678755701ba50ad2a4446d5a419077c1f31511471cec","","root"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:26:01.751] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What’s in there???","created_at":1759429532,"id":"26be005898bc6ba779c6dcfdf8d452a0f08f3ab31df5ba6b4990f34666bc39e4","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"a585e8a17f07be739b28be43d47949763a21634d857dfa40024b32748495eae831fc17dcd48a57fe0d4b9f13b5d684c6f69618463380ec561ed2b8510fd6d1ff","tags":[["e","ef6635f4acd8f161b8eb9b4b12b144efe589fb7d8d85c78f61475abcb577d7fe","","root"],["p","d8f38b894b42f7008305cebf17b48925654f22b180c5861b81141f80ccf72848"]]}] +[14:26:01.811] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapsnag for 500,000 sats and send me a DM.\n💜\nhttps://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","created_at":1759429524,"id":"bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"e49111affacc861d410a35dd22dbbda683f0fe008088aca47de9ee32a3f0fa9f9aca260f65fdffd20bd8b0327b1a95df4bdfc77b45eb09e12129ea9e3002d52c","tags":[["alt","A short note: #zapsnag for 500,000 sats and send me a DM.\n💜\nhtt..."],["t","zapsnag"],["r","https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg"],["imeta","url https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","x f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","size 184533","m image/jpeg","dim 1500x2000","blurhash _8Jj_04Th}vmb{=zxu_K.6XmNNN3R6n$^%,;J.X.R5I:nhERIVxsxrw[xuV[k[tmn2R4%LxGT0wMtS%g%LtQWBWE%gx]x]niX8tks+.8kXIpS5oys+t5b[R*NKNGnNjXbb","ox f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","alt "]]}] +[14:26:01.872] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:26:01.932] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:01.993] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:02.054] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:02.079] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:02.140] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:26:02.200] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:26:02.260] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:26:02.321] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:02.382] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:02.442] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:02.503] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:26:02.563] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429538,"id":"2cfb6637c7b2ae0ae3e859758a04e4afdc0c21174824c3700664f09bdeab21c8","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"62d6ba48192cf191febba3b50b8fce227689a6e1163e5d0a0992615d1eb94f5083e20148c9eedb8ff05d37a99ebf981dd08346c50612aa515b4d882605a7c8cc","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"]]}] +[14:26:02.866] RECV nos.lol:443: 1e837fb346bfd2c9df816dcccf683f5eff0e9a89489b315180527c +[14:26:02.926] RECV nos.lol:443: dd2e76a61020","tags":[["p","38dbb9b07d93861d40620ad62d4 +[14:26:03.530] RECV nos.lol:443: 9557b728c3be4c6a844b"],["p","f7922a0adb3fa4dda5eecaa62f6 +[14:26:03.711] RECV nos.lol:443: 380cab4832f8daacbb52"],["p","0153d742cf537c94e2bef9541cf +[14:26:05.181] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:26:05.181] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:26:05.181] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:26:05.181] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:26:05.333] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remember, even as Bitcoin climbs back toward its highs, it’s still far from reaching its true potential. Stay grounded, the real reward of Bitcoin comes from practicing low time preference.\n\n#Bitcoin → ₿120,246\n₿lock height → 917,402","created_at":1759429556,"id":"e85c0fa796ee3f66d95c10b69e87137e91d1654e082833b2064f539b43d7f8a3","kind":1,"pubkey":"b8e711ea98fc1d6a53e86c5f802580e97529bceb03c033a57726c3708e21bfcf","sig":"d110d7693807abe9e9798b0521dc070a87f1aa70af13a9c3ac54d324ddd339132dca900b062029fd675819d1b18cb3b707089db5008c9df4f43b6f0100c70a57","tags":[["t","Bitcoin"]]}] +[14:26:05.394] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"FWITW here’s my take on the Core vs. Knots storm-in-a-teacup.\n\nIt feels like yet another manufactured crisis aimed at seizing control of the codebase — starting around two years ago with hundreds of millions of dollars burned on transaction fees to spam the network with superfluous data. Tellingly, that activity came to an abrupt halt right around Trump’s election, and now 1 sat/vB transactions prevail as if nothing happened.\n\nDespite this, panic is being stirred, with calls to abandon Bitcoin Core for a client maintained by a single developer, who wants to decide which transactions are “good” and get through, and which are “bad” and get memory-holed.\n\nIt will be telling if the drama continues now that Core has backtracked a bit. If it does, it’s a clear sign this fight isn’t about halting ‘spam’ at all, it’s about control of the codebase.\n\nAnd on that subject: this episode only reinforces the urgency of ossifying the codebase against anything beyond essential maintenance and security fixes, ideally before the original cypherpunks retire. In my mind the deepest confidence and respect must go to those who not only bootstrapped Bitcoin, but also stood firm in defending it during the Blocksize Wars.","created_at":1759429551,"id":"514a51a0c43e5448e0d01980f3b0402d557c9c64515e8c3147ea2311509262e8","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"7fb9b6d3b715a9fb137a07d4e75a2628895aee2e9d1ea6128300c314f6963631b892cca4c38ff34c8e2c3980da9184ab2a40293465ef9a6f311bf8da263152a8","tags":[]}] +[14:26:05.454] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oh absolutely not. Are you not then? You're just virtue signaling from the sidelines? \n\n","created_at":1759429549,"id":"8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"ab98e1418bab697b6c741351b28e2ad8a4471f6c7512b2abe5deacb7c649bdd34d2250de6d9206427de6e46c28910b5042fc0fee4de3b4959e2099f2921befae","tags":[["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://Nostr.einundzwanzig.space"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","8e205aa9c4740c81b3fc1f7b31260b4126f6dfcff5251223f6394674893af212","wss://Nostr.einundzwanzig.space","reply","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:26:05.515] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BootiFull \nhttps://images2.imgbox.com/2b/56/YBu7QR5A_o.jpg \nlook back at it #BootiFull ","created_at":1759429547,"id":"641377f01d32fd2fc43b62c630766613eecb395f301d9b27b7048b2766dc32ce","kind":1,"pubkey":"000006bb62c0e3e418c342334165da0a17b971b8feae869af710d5a8979114a6","sig":"af489b1b2347c8ecdbb52b20846dc965aeb46a9fd0b0a6ae5850e2676e08acb575888d065327334621d8b4d77f02fa8ed21eb5e04cfbbd73ec4417c5eca282ac","tags":[]}] +[14:26:05.575] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can you pass me to Dave ?","created_at":1759429547,"id":"a58ffaa16997369ce3d3c03c9f003889a86fa145f460c057f0b9cc3cf7bc8356","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"2428a90cc6ab4a3ea770b7fdeccb84b7474e973ef23471d92b0b50ac691bdee3d5008030baef7170e39a35e3e3220ccbd532c59bd862089f0df8b745fb0648e5","tags":[["alt","A short note: Can you pass me to Dave ?"],["e","6cf55726b5d4a77dd6a7df40446faf149eef7ce8cf1d1fde1e6e38bdaa9b26ea","wss://relay.orangepill.ovh/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:05.636] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#bitcoin Core is fucked and they did it to themselves. They are the new btrash crew. Fucking up the Bitcoin protocol. Running Knots…","created_at":1759429547,"id":"f1a25303cf32e28bb7df7b7614bfd075c7e7fa0d266156640b13aee7e4b9ece8","kind":1,"pubkey":"fc745f261349109985cea5a80d33be0e26b90c0864b76501265c5481534e7b30","sig":"179cf5038a1c6337147411aefc5e6e9d1a104b84d9f4c374a350644c0300e55a77c5d238ee4e2b32951bfa9cd994e1d0de9b9cf8a9d39d8222ae7dfae0836ba1","tags":[["t","bitcoin"]]}] +[14:26:05.696] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今日mattnのAI動画でASMR聞いた(聞いたって言う話だけしておきます)","created_at":1759429547,"id":"458ed03f770223fd9126ccdc50e8284fb0430294746efd7b1d3a4a6ca9aef79f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"298d0b8460e2ea022dfad65c87462acc26b94164ea0374db0f95ab4e77a79ee647d5a2b2a126cf904897ded3da3879ab8021c7db516e25c2df6f15e6e776c9a1","tags":[]}] +[14:26:05.757] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What can we do?","created_at":1759429533,"id":"9fd8769577e085dddfb14fe22f700a91f99f5d48dec5873fa6a37aa006749abe","kind":1,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"46a1a4b8dfa1b8b0b10bea624b575adef43824d5c490b893c8f7fa29bf114cf791284b4b5a157cf550a2148e96395ddda84a11d0286e85e5593a0cdfc0610e82","tags":[["e","9154dbfaec941da7c265678755701ba50ad2a4446d5a419077c1f31511471cec","","root"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:26:05.818] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What’s in there???","created_at":1759429532,"id":"26be005898bc6ba779c6dcfdf8d452a0f08f3ab31df5ba6b4990f34666bc39e4","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"a585e8a17f07be739b28be43d47949763a21634d857dfa40024b32748495eae831fc17dcd48a57fe0d4b9f13b5d684c6f69618463380ec561ed2b8510fd6d1ff","tags":[["e","ef6635f4acd8f161b8eb9b4b12b144efe589fb7d8d85c78f61475abcb577d7fe","","root"],["p","d8f38b894b42f7008305cebf17b48925654f22b180c5861b81141f80ccf72848"]]}] +[14:26:05.878] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapsnag for 500,000 sats and send me a DM.\n💜\nhttps://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","created_at":1759429524,"id":"bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"e49111affacc861d410a35dd22dbbda683f0fe008088aca47de9ee32a3f0fa9f9aca260f65fdffd20bd8b0327b1a95df4bdfc77b45eb09e12129ea9e3002d52c","tags":[["alt","A short note: #zapsnag for 500,000 sats and send me a DM.\n💜\nhtt..."],["t","zapsnag"],["r","https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg"],["imeta","url https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","x f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","size 184533","m image/jpeg","dim 1500x2000","blurhash _8Jj_04Th}vmb{=zxu_K.6XmNNN3R6n$^%,;J.X.R5I:nhERIVxsxrw[xuV[k[tmn2R4%LxGT0wMtS%g%LtQWBWE%gx]x]niX8tks+.8kXIpS5oys+t5b[R*NKNGnNjXbb","ox f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","alt "]]}] +[14:26:05.939] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:26:05.999] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:06.060] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:06.120] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:06.181] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:06.241] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:26:06.302] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:26:06.362] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:26:06.423] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:06.483] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:06.544] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:06.604] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:26:06.665] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429538,"id":"2cfb6637c7b2ae0ae3e859758a04e4afdc0c21174824c3700664f09bdeab21c8","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"62d6ba48192cf191febba3b50b8fce227689a6e1163e5d0a0992615d1eb94f5083e20148c9eedb8ff05d37a99ebf981dd08346c50612aa515b4d882605a7c8cc","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"]]}] +[14:26:06.967] RECV nos.lol:443: 1e837fb346bfd2c9df816dcccf683f5eff0e9a89489b315180527c +[14:26:07.028] RECV nos.lol:443: dd2e76a61020","tags":[["p","38dbb9b07d93861d40620ad62d4 +[14:26:07.597] RECV nos.lol:443: 9557b728c3be4c6a844b"],["p","f7922a0adb3fa4dda5eecaa62f6 +[14:26:07.778] RECV nos.lol:443: 380cab4832f8daacbb52"],["p","0153d742cf537c94e2bef9541cf +[14:26:09.078] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:26:09.078] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:26:09.078] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:26:09.078] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:26:09.383] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remember, even as Bitcoin climbs back toward its highs, it’s still far from reaching its true potential. Stay grounded, the real reward of Bitcoin comes from practicing low time preference.\n\n#Bitcoin → ₿120,246\n₿lock height → 917,402","created_at":1759429556,"id":"e85c0fa796ee3f66d95c10b69e87137e91d1654e082833b2064f539b43d7f8a3","kind":1,"pubkey":"b8e711ea98fc1d6a53e86c5f802580e97529bceb03c033a57726c3708e21bfcf","sig":"d110d7693807abe9e9798b0521dc070a87f1aa70af13a9c3ac54d324ddd339132dca900b062029fd675819d1b18cb3b707089db5008c9df4f43b6f0100c70a57","tags":[["t","Bitcoin"]]}] +[14:26:09.444] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"FWITW here’s my take on the Core vs. Knots storm-in-a-teacup.\n\nIt feels like yet another manufactured crisis aimed at seizing control of the codebase — starting around two years ago with hundreds of millions of dollars burned on transaction fees to spam the network with superfluous data. Tellingly, that activity came to an abrupt halt right around Trump’s election, and now 1 sat/vB transactions prevail as if nothing happened.\n\nDespite this, panic is being stirred, with calls to abandon Bitcoin Core for a client maintained by a single developer, who wants to decide which transactions are “good” and get through, and which are “bad” and get memory-holed.\n\nIt will be telling if the drama continues now that Core has backtracked a bit. If it does, it’s a clear sign this fight isn’t about halting ‘spam’ at all, it’s about control of the codebase.\n\nAnd on that subject: this episode only reinforces the urgency of ossifying the codebase against anything beyond essential maintenance and security fixes, ideally before the original cypherpunks retire. In my mind the deepest confidence and respect must go to those who not only bootstrapped Bitcoin, but also stood firm in defending it during the Blocksize Wars.","created_at":1759429551,"id":"514a51a0c43e5448e0d01980f3b0402d557c9c64515e8c3147ea2311509262e8","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"7fb9b6d3b715a9fb137a07d4e75a2628895aee2e9d1ea6128300c314f6963631b892cca4c38ff34c8e2c3980da9184ab2a40293465ef9a6f311bf8da263152a8","tags":[]}] +[14:26:09.504] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oh absolutely not. Are you not then? You're just virtue signaling from the sidelines? \n\n","created_at":1759429549,"id":"8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"ab98e1418bab697b6c741351b28e2ad8a4471f6c7512b2abe5deacb7c649bdd34d2250de6d9206427de6e46c28910b5042fc0fee4de3b4959e2099f2921befae","tags":[["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://Nostr.einundzwanzig.space"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","8e205aa9c4740c81b3fc1f7b31260b4126f6dfcff5251223f6394674893af212","wss://Nostr.einundzwanzig.space","reply","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:26:09.565] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BootiFull \nhttps://images2.imgbox.com/2b/56/YBu7QR5A_o.jpg \nlook back at it #BootiFull ","created_at":1759429547,"id":"641377f01d32fd2fc43b62c630766613eecb395f301d9b27b7048b2766dc32ce","kind":1,"pubkey":"000006bb62c0e3e418c342334165da0a17b971b8feae869af710d5a8979114a6","sig":"af489b1b2347c8ecdbb52b20846dc965aeb46a9fd0b0a6ae5850e2676e08acb575888d065327334621d8b4d77f02fa8ed21eb5e04cfbbd73ec4417c5eca282ac","tags":[]}] +[14:26:09.625] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can you pass me to Dave ?","created_at":1759429547,"id":"a58ffaa16997369ce3d3c03c9f003889a86fa145f460c057f0b9cc3cf7bc8356","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"2428a90cc6ab4a3ea770b7fdeccb84b7474e973ef23471d92b0b50ac691bdee3d5008030baef7170e39a35e3e3220ccbd532c59bd862089f0df8b745fb0648e5","tags":[["alt","A short note: Can you pass me to Dave ?"],["e","6cf55726b5d4a77dd6a7df40446faf149eef7ce8cf1d1fde1e6e38bdaa9b26ea","wss://relay.orangepill.ovh/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:09.686] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#bitcoin Core is fucked and they did it to themselves. They are the new btrash crew. Fucking up the Bitcoin protocol. Running Knots…","created_at":1759429547,"id":"f1a25303cf32e28bb7df7b7614bfd075c7e7fa0d266156640b13aee7e4b9ece8","kind":1,"pubkey":"fc745f261349109985cea5a80d33be0e26b90c0864b76501265c5481534e7b30","sig":"179cf5038a1c6337147411aefc5e6e9d1a104b84d9f4c374a350644c0300e55a77c5d238ee4e2b32951bfa9cd994e1d0de9b9cf8a9d39d8222ae7dfae0836ba1","tags":[["t","bitcoin"]]}] +[14:26:09.747] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今日mattnのAI動画でASMR聞いた(聞いたって言う話だけしておきます)","created_at":1759429547,"id":"458ed03f770223fd9126ccdc50e8284fb0430294746efd7b1d3a4a6ca9aef79f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"298d0b8460e2ea022dfad65c87462acc26b94164ea0374db0f95ab4e77a79ee647d5a2b2a126cf904897ded3da3879ab8021c7db516e25c2df6f15e6e776c9a1","tags":[]}] +[14:26:09.807] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What can we do?","created_at":1759429533,"id":"9fd8769577e085dddfb14fe22f700a91f99f5d48dec5873fa6a37aa006749abe","kind":1,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"46a1a4b8dfa1b8b0b10bea624b575adef43824d5c490b893c8f7fa29bf114cf791284b4b5a157cf550a2148e96395ddda84a11d0286e85e5593a0cdfc0610e82","tags":[["e","9154dbfaec941da7c265678755701ba50ad2a4446d5a419077c1f31511471cec","","root"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:26:09.867] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What’s in there???","created_at":1759429532,"id":"26be005898bc6ba779c6dcfdf8d452a0f08f3ab31df5ba6b4990f34666bc39e4","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"a585e8a17f07be739b28be43d47949763a21634d857dfa40024b32748495eae831fc17dcd48a57fe0d4b9f13b5d684c6f69618463380ec561ed2b8510fd6d1ff","tags":[["e","ef6635f4acd8f161b8eb9b4b12b144efe589fb7d8d85c78f61475abcb577d7fe","","root"],["p","d8f38b894b42f7008305cebf17b48925654f22b180c5861b81141f80ccf72848"]]}] +[14:26:09.928] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapsnag for 500,000 sats and send me a DM.\n💜\nhttps://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","created_at":1759429524,"id":"bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"e49111affacc861d410a35dd22dbbda683f0fe008088aca47de9ee32a3f0fa9f9aca260f65fdffd20bd8b0327b1a95df4bdfc77b45eb09e12129ea9e3002d52c","tags":[["alt","A short note: #zapsnag for 500,000 sats and send me a DM.\n💜\nhtt..."],["t","zapsnag"],["r","https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg"],["imeta","url https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","x f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","size 184533","m image/jpeg","dim 1500x2000","blurhash _8Jj_04Th}vmb{=zxu_K.6XmNNN3R6n$^%,;J.X.R5I:nhERIVxsxrw[xuV[k[tmn2R4%LxGT0wMtS%g%LtQWBWE%gx]x]niX8tks+.8kXIpS5oys+t5b[R*NKNGnNjXbb","ox f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","alt "]]}] +[14:26:09.988] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:26:10.049] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:26:10.109] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:10.170] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:10.230] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:10.291] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:10.351] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:26:10.412] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:26:10.472] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:26:10.533] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:10.593] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:10.654] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:26:10.714] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429538,"id":"2cfb6637c7b2ae0ae3e859758a04e4afdc0c21174824c3700664f09bdeab21c8","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"62d6ba48192cf191febba3b50b8fce227689a6e1163e5d0a0992615d1eb94f5083e20148c9eedb8ff05d37a99ebf981dd08346c50612aa515b4d882605a7c8cc","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"]]}] +[14:26:11.017] RECV nos.lol:443: 1e837fb346bfd2c9df816dcccf683f5eff0e9a89489b315180527c +[14:26:11.077] RECV nos.lol:443: dd2e76a61020","tags":[["p","38dbb9b07d93861d40620ad62d4 +[14:26:11.681] RECV nos.lol:443: 9557b728c3be4c6a844b"],["p","f7922a0adb3fa4dda5eecaa62f6 +[14:26:11.862] RECV nos.lol:443: 380cab4832f8daacbb52"],["p","0153d742cf537c94e2bef9541cf +[14:26:13.105] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:26:13.105] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:26:13.105] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:26:13.105] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:26:13.437] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like a glory hole. But for wine 🤌🏾🤌🏾🤌🏾","created_at":1759429570,"id":"96f7f3849709c246526da6424547f78abb5d2b0ae6361c41b0f660ac304b8a23","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"9d3f7ece4328279666e9779ca5b929f930ad69cd1898cc993cd644e77ecfc37047c2618233a43d85864a7baf3990ba8afbabf71382ce86dcd727c41aa3cc7560","tags":[["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root"],["e","67c944ddc2f7f3d428b227f202d6163ac8b36739bb36c9f63bb2c350c36c13f2","","reply"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"]]}] +[14:26:13.498] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remember, even as Bitcoin climbs back toward its highs, it’s still far from reaching its true potential. Stay grounded, the real reward of Bitcoin comes from practicing low time preference.\n\n#Bitcoin → ₿120,246\n₿lock height → 917,402","created_at":1759429556,"id":"e85c0fa796ee3f66d95c10b69e87137e91d1654e082833b2064f539b43d7f8a3","kind":1,"pubkey":"b8e711ea98fc1d6a53e86c5f802580e97529bceb03c033a57726c3708e21bfcf","sig":"d110d7693807abe9e9798b0521dc070a87f1aa70af13a9c3ac54d324ddd339132dca900b062029fd675819d1b18cb3b707089db5008c9df4f43b6f0100c70a57","tags":[["t","Bitcoin"]]}] +[14:26:13.559] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"FWITW here’s my take on the Core vs. Knots storm-in-a-teacup.\n\nIt feels like yet another manufactured crisis aimed at seizing control of the codebase — starting around two years ago with hundreds of millions of dollars burned on transaction fees to spam the network with superfluous data. Tellingly, that activity came to an abrupt halt right around Trump’s election, and now 1 sat/vB transactions prevail as if nothing happened.\n\nDespite this, panic is being stirred, with calls to abandon Bitcoin Core for a client maintained by a single developer, who wants to decide which transactions are “good” and get through, and which are “bad” and get memory-holed.\n\nIt will be telling if the drama continues now that Core has backtracked a bit. If it does, it’s a clear sign this fight isn’t about halting ‘spam’ at all, it’s about control of the codebase.\n\nAnd on that subject: this episode only reinforces the urgency of ossifying the codebase against anything beyond essential maintenance and security fixes, ideally before the original cypherpunks retire. In my mind the deepest confidence and respect must go to those who not only bootstrapped Bitcoin, but also stood firm in defending it during the Blocksize Wars.","created_at":1759429551,"id":"514a51a0c43e5448e0d01980f3b0402d557c9c64515e8c3147ea2311509262e8","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"7fb9b6d3b715a9fb137a07d4e75a2628895aee2e9d1ea6128300c314f6963631b892cca4c38ff34c8e2c3980da9184ab2a40293465ef9a6f311bf8da263152a8","tags":[]}] +[14:26:13.619] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oh absolutely not. Are you not then? You're just virtue signaling from the sidelines? \n\n","created_at":1759429549,"id":"8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"ab98e1418bab697b6c741351b28e2ad8a4471f6c7512b2abe5deacb7c649bdd34d2250de6d9206427de6e46c28910b5042fc0fee4de3b4959e2099f2921befae","tags":[["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://Nostr.einundzwanzig.space"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","8e205aa9c4740c81b3fc1f7b31260b4126f6dfcff5251223f6394674893af212","wss://Nostr.einundzwanzig.space","reply","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:26:13.680] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BootiFull \nhttps://images2.imgbox.com/2b/56/YBu7QR5A_o.jpg \nlook back at it #BootiFull ","created_at":1759429547,"id":"641377f01d32fd2fc43b62c630766613eecb395f301d9b27b7048b2766dc32ce","kind":1,"pubkey":"000006bb62c0e3e418c342334165da0a17b971b8feae869af710d5a8979114a6","sig":"af489b1b2347c8ecdbb52b20846dc965aeb46a9fd0b0a6ae5850e2676e08acb575888d065327334621d8b4d77f02fa8ed21eb5e04cfbbd73ec4417c5eca282ac","tags":[]}] +[14:26:13.740] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can you pass me to Dave ?","created_at":1759429547,"id":"a58ffaa16997369ce3d3c03c9f003889a86fa145f460c057f0b9cc3cf7bc8356","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"2428a90cc6ab4a3ea770b7fdeccb84b7474e973ef23471d92b0b50ac691bdee3d5008030baef7170e39a35e3e3220ccbd532c59bd862089f0df8b745fb0648e5","tags":[["alt","A short note: Can you pass me to Dave ?"],["e","6cf55726b5d4a77dd6a7df40446faf149eef7ce8cf1d1fde1e6e38bdaa9b26ea","wss://relay.orangepill.ovh/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:13.801] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#bitcoin Core is fucked and they did it to themselves. They are the new btrash crew. Fucking up the Bitcoin protocol. Running Knots…","created_at":1759429547,"id":"f1a25303cf32e28bb7df7b7614bfd075c7e7fa0d266156640b13aee7e4b9ece8","kind":1,"pubkey":"fc745f261349109985cea5a80d33be0e26b90c0864b76501265c5481534e7b30","sig":"179cf5038a1c6337147411aefc5e6e9d1a104b84d9f4c374a350644c0300e55a77c5d238ee4e2b32951bfa9cd994e1d0de9b9cf8a9d39d8222ae7dfae0836ba1","tags":[["t","bitcoin"]]}] +[14:26:13.862] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今日mattnのAI動画でASMR聞いた(聞いたって言う話だけしておきます)","created_at":1759429547,"id":"458ed03f770223fd9126ccdc50e8284fb0430294746efd7b1d3a4a6ca9aef79f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"298d0b8460e2ea022dfad65c87462acc26b94164ea0374db0f95ab4e77a79ee647d5a2b2a126cf904897ded3da3879ab8021c7db516e25c2df6f15e6e776c9a1","tags":[]}] +[14:26:13.922] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What can we do?","created_at":1759429533,"id":"9fd8769577e085dddfb14fe22f700a91f99f5d48dec5873fa6a37aa006749abe","kind":1,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"46a1a4b8dfa1b8b0b10bea624b575adef43824d5c490b893c8f7fa29bf114cf791284b4b5a157cf550a2148e96395ddda84a11d0286e85e5593a0cdfc0610e82","tags":[["e","9154dbfaec941da7c265678755701ba50ad2a4446d5a419077c1f31511471cec","","root"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:26:13.982] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What’s in there???","created_at":1759429532,"id":"26be005898bc6ba779c6dcfdf8d452a0f08f3ab31df5ba6b4990f34666bc39e4","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"a585e8a17f07be739b28be43d47949763a21634d857dfa40024b32748495eae831fc17dcd48a57fe0d4b9f13b5d684c6f69618463380ec561ed2b8510fd6d1ff","tags":[["e","ef6635f4acd8f161b8eb9b4b12b144efe589fb7d8d85c78f61475abcb577d7fe","","root"],["p","d8f38b894b42f7008305cebf17b48925654f22b180c5861b81141f80ccf72848"]]}] +[14:26:14.043] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:26:14.103] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:26:14.164] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:14.225] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:14.285] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:14.345] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:14.406] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:26:14.466] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:26:14.527] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:26:14.587] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:14.648] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:14.709] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:26:14.769] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429538,"id":"2cfb6637c7b2ae0ae3e859758a04e4afdc0c21174824c3700664f09bdeab21c8","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"62d6ba48192cf191febba3b50b8fce227689a6e1163e5d0a0992615d1eb94f5083e20148c9eedb8ff05d37a99ebf981dd08346c50612aa515b4d882605a7c8cc","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"]]}] +[14:26:15.071] RECV nos.lol:443: 1e837fb346bfd2c9df816dcccf683f5eff0e9a89489b315180527c +[14:26:15.132] RECV nos.lol:443: dd2e76a61020","tags":[["p","38dbb9b07d93861d40620ad62d4 +[14:26:15.736] RECV nos.lol:443: 9557b728c3be4c6a844b"],["p","f7922a0adb3fa4dda5eecaa62f6 +[14:26:15.917] RECV nos.lol:443: 380cab4832f8daacbb52"],["p","0153d742cf537c94e2bef9541cf +[14:26:17.190] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:26:17.190] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:26:17.190] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:26:17.191] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:26:17.341] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ich bin nicht live, aber es trotzdem wird angezeigt als Ich live wäre. Ich kann den Stream weder stoppen noch neu starten","created_at":1759429576,"id":"5acb8491b03dddf13d937c1bcfb02c04209b50211a3fba85f016676fe004ba10","kind":1,"pubkey":"0b26f590631b0fa3048d103410e484e5e22e2d5a8eceaceda9d91b38f81dd1a8","sig":"d1c15312a4b2275be173cb155936865d1eba608ec0a5d26d3c22294c8b774be6f35a30ea3f6bd8795570e27f36fd5e4aa50297f269931fc80dd9b463e221dd83","tags":[["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://nos.lol/","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"],["e","a7cbab5256ad6198f583de1d648d9b2623ea86317373c41624b63cdc36e8fd1f","wss://nostr.oxtr.dev","reply"],["p","e45841bc9b795849c26b200fe8f25c8433ca89b6e283e1be48458d96f585dc53","","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","","mention"]]}] +[14:26:17.351] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like a glory hole. But for wine 🤌🏾🤌🏾🤌🏾","created_at":1759429570,"id":"96f7f3849709c246526da6424547f78abb5d2b0ae6361c41b0f660ac304b8a23","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"9d3f7ece4328279666e9779ca5b929f930ad69cd1898cc993cd644e77ecfc37047c2618233a43d85864a7baf3990ba8afbabf71382ce86dcd727c41aa3cc7560","tags":[["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root"],["e","67c944ddc2f7f3d428b227f202d6163ac8b36739bb36c9f63bb2c350c36c13f2","","reply"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"]]}] +[14:26:17.412] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remember, even as Bitcoin climbs back toward its highs, it’s still far from reaching its true potential. Stay grounded, the real reward of Bitcoin comes from practicing low time preference.\n\n#Bitcoin → ₿120,246\n₿lock height → 917,402","created_at":1759429556,"id":"e85c0fa796ee3f66d95c10b69e87137e91d1654e082833b2064f539b43d7f8a3","kind":1,"pubkey":"b8e711ea98fc1d6a53e86c5f802580e97529bceb03c033a57726c3708e21bfcf","sig":"d110d7693807abe9e9798b0521dc070a87f1aa70af13a9c3ac54d324ddd339132dca900b062029fd675819d1b18cb3b707089db5008c9df4f43b6f0100c70a57","tags":[["t","Bitcoin"]]}] +[14:26:17.472] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"FWITW here’s my take on the Core vs. Knots storm-in-a-teacup.\n\nIt feels like yet another manufactured crisis aimed at seizing control of the codebase — starting around two years ago with hundreds of millions of dollars burned on transaction fees to spam the network with superfluous data. Tellingly, that activity came to an abrupt halt right around Trump’s election, and now 1 sat/vB transactions prevail as if nothing happened.\n\nDespite this, panic is being stirred, with calls to abandon Bitcoin Core for a client maintained by a single developer, who wants to decide which transactions are “good” and get through, and which are “bad” and get memory-holed.\n\nIt will be telling if the drama continues now that Core has backtracked a bit. If it does, it’s a clear sign this fight isn’t about halting ‘spam’ at all, it’s about control of the codebase.\n\nAnd on that subject: this episode only reinforces the urgency of ossifying the codebase against anything beyond essential maintenance and security fixes, ideally before the original cypherpunks retire. In my mind the deepest confidence and respect must go to those who not only bootstrapped Bitcoin, but also stood firm in defending it during the Blocksize Wars.","created_at":1759429551,"id":"514a51a0c43e5448e0d01980f3b0402d557c9c64515e8c3147ea2311509262e8","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"7fb9b6d3b715a9fb137a07d4e75a2628895aee2e9d1ea6128300c314f6963631b892cca4c38ff34c8e2c3980da9184ab2a40293465ef9a6f311bf8da263152a8","tags":[]}] +[14:26:17.533] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oh absolutely not. Are you not then? You're just virtue signaling from the sidelines? \n\n","created_at":1759429549,"id":"8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"ab98e1418bab697b6c741351b28e2ad8a4471f6c7512b2abe5deacb7c649bdd34d2250de6d9206427de6e46c28910b5042fc0fee4de3b4959e2099f2921befae","tags":[["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://Nostr.einundzwanzig.space"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","8e205aa9c4740c81b3fc1f7b31260b4126f6dfcff5251223f6394674893af212","wss://Nostr.einundzwanzig.space","reply","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:26:17.594] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BootiFull \nhttps://images2.imgbox.com/2b/56/YBu7QR5A_o.jpg \nlook back at it #BootiFull ","created_at":1759429547,"id":"641377f01d32fd2fc43b62c630766613eecb395f301d9b27b7048b2766dc32ce","kind":1,"pubkey":"000006bb62c0e3e418c342334165da0a17b971b8feae869af710d5a8979114a6","sig":"af489b1b2347c8ecdbb52b20846dc965aeb46a9fd0b0a6ae5850e2676e08acb575888d065327334621d8b4d77f02fa8ed21eb5e04cfbbd73ec4417c5eca282ac","tags":[]}] +[14:26:17.654] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can you pass me to Dave ?","created_at":1759429547,"id":"a58ffaa16997369ce3d3c03c9f003889a86fa145f460c057f0b9cc3cf7bc8356","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"2428a90cc6ab4a3ea770b7fdeccb84b7474e973ef23471d92b0b50ac691bdee3d5008030baef7170e39a35e3e3220ccbd532c59bd862089f0df8b745fb0648e5","tags":[["alt","A short note: Can you pass me to Dave ?"],["e","6cf55726b5d4a77dd6a7df40446faf149eef7ce8cf1d1fde1e6e38bdaa9b26ea","wss://relay.orangepill.ovh/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:17.715] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#bitcoin Core is fucked and they did it to themselves. They are the new btrash crew. Fucking up the Bitcoin protocol. Running Knots…","created_at":1759429547,"id":"f1a25303cf32e28bb7df7b7614bfd075c7e7fa0d266156640b13aee7e4b9ece8","kind":1,"pubkey":"fc745f261349109985cea5a80d33be0e26b90c0864b76501265c5481534e7b30","sig":"179cf5038a1c6337147411aefc5e6e9d1a104b84d9f4c374a350644c0300e55a77c5d238ee4e2b32951bfa9cd994e1d0de9b9cf8a9d39d8222ae7dfae0836ba1","tags":[["t","bitcoin"]]}] +[14:26:17.775] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今日mattnのAI動画でASMR聞いた(聞いたって言う話だけしておきます)","created_at":1759429547,"id":"458ed03f770223fd9126ccdc50e8284fb0430294746efd7b1d3a4a6ca9aef79f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"298d0b8460e2ea022dfad65c87462acc26b94164ea0374db0f95ab4e77a79ee647d5a2b2a126cf904897ded3da3879ab8021c7db516e25c2df6f15e6e776c9a1","tags":[]}] +[14:26:17.836] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What can we do?","created_at":1759429533,"id":"9fd8769577e085dddfb14fe22f700a91f99f5d48dec5873fa6a37aa006749abe","kind":1,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"46a1a4b8dfa1b8b0b10bea624b575adef43824d5c490b893c8f7fa29bf114cf791284b4b5a157cf550a2148e96395ddda84a11d0286e85e5593a0cdfc0610e82","tags":[["e","9154dbfaec941da7c265678755701ba50ad2a4446d5a419077c1f31511471cec","","root"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:26:17.896] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:26:17.957] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:26:18.017] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:18.078] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:18.138] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:18.199] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:18.259] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:26:18.320] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:26:18.380] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:26:18.441] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:18.502] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:18.562] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:26:18.623] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429538,"id":"2cfb6637c7b2ae0ae3e859758a04e4afdc0c21174824c3700664f09bdeab21c8","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"62d6ba48192cf191febba3b50b8fce227689a6e1163e5d0a0992615d1eb94f5083e20148c9eedb8ff05d37a99ebf981dd08346c50612aa515b4d882605a7c8cc","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"]]}] +[14:26:18.925] RECV nos.lol:443: 1e837fb346bfd2c9df816dcccf683f5eff0e9a89489b315180527c +[14:26:18.986] RECV nos.lol:443: dd2e76a61020","tags":[["p","38dbb9b07d93861d40620ad62d4 +[14:26:19.590] RECV nos.lol:443: 9557b728c3be4c6a844b"],["p","f7922a0adb3fa4dda5eecaa62f6 +[14:26:19.771] RECV nos.lol:443: 380cab4832f8daacbb52"],["p","0153d742cf537c94e2bef9541cf +[14:26:21.659] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:26:21.659] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:26:21.659] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:26:21.659] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:26:21.811] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Done and dusted ","created_at":1759429579,"id":"c54acb3462b615be2862ef91077e4b55d4bdf4590d62227df2e832046a6d6290","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"73a90292c84af4891f9009a6221f96238f90e751f2bcdb0372249f6d827cee776d4186dab77675c6541093cfb4c4a642a0545eb68d7036a4aad50120fe24b343","tags":[["alt","A short note: Done and dusted "],["e","2b380dd348e170ff27c3dfbed133ec9abc62575108383be94f1d2ed7ec268740","wss://nostr.azzamo.net/","root","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","3a990e9d72ad99252c227c451a265fa063b866d6720d68dacb4903a58605216f","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:26:21.871] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Don’t laugh at my brother nostr:npub10mtatsat7ph6rsq0w8u8npt8d86x4jfr2nqjnvld2439q6f8ugqq0x27hf 😂","created_at":1759429579,"id":"f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"552b4fd3ead1c0788bbe787a1a088b3cedf41bfd93f4aa74f5288c4841c19b1a2699fe8d8bff2a22196a63b9fb42c25fb19eef031a54304f7666406e86347bf0","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200"]]}] +[14:26:21.958] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Only Dave can assist me ...","created_at":1759429578,"id":"92f9ec5fa4d5849b54e75d82b6feeaa75152cac6e985443aee68337e8bde97fc","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"a4f86e1fcc036ffe41064ea682fe6cbd92b6ce7660ffa677a8699a787bcebb8d4f39285ffc86f19231d2f1f4731043be46faef6802b927f49a44774517fce6ca","tags":[["alt","A short note: Only Dave can assist me ..."],["e","273784ee39316bda883e9b4de3e36439c61acc940e5c8a2af98d3faf3eccd2b4","wss://multiplexer.huszonegy.world/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:22.019] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ich bin nicht live, aber es trotzdem wird angezeigt als Ich live wäre. Ich kann den Stream weder stoppen noch neu starten","created_at":1759429576,"id":"5acb8491b03dddf13d937c1bcfb02c04209b50211a3fba85f016676fe004ba10","kind":1,"pubkey":"0b26f590631b0fa3048d103410e484e5e22e2d5a8eceaceda9d91b38f81dd1a8","sig":"d1c15312a4b2275be173cb155936865d1eba608ec0a5d26d3c22294c8b774be6f35a30ea3f6bd8795570e27f36fd5e4aa50297f269931fc80dd9b463e221dd83","tags":[["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://nos.lol/","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"],["e","a7cbab5256ad6198f583de1d648d9b2623ea86317373c41624b63cdc36e8fd1f","wss://nostr.oxtr.dev","reply"],["p","e45841bc9b795849c26b200fe8f25c8433ca89b6e283e1be48458d96f585dc53","","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","","mention"]]}] +[14:26:22.079] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like a glory hole. But for wine 🤌🏾🤌🏾🤌🏾","created_at":1759429570,"id":"96f7f3849709c246526da6424547f78abb5d2b0ae6361c41b0f660ac304b8a23","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"9d3f7ece4328279666e9779ca5b929f930ad69cd1898cc993cd644e77ecfc37047c2618233a43d85864a7baf3990ba8afbabf71382ce86dcd727c41aa3cc7560","tags":[["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root"],["e","67c944ddc2f7f3d428b227f202d6163ac8b36739bb36c9f63bb2c350c36c13f2","","reply"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"]]}] +[14:26:22.105] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remember, even as Bitcoin climbs back toward its highs, it’s still far from reaching its true potential. Stay grounded, the real reward of Bitcoin comes from practicing low time preference.\n\n#Bitcoin → ₿120,246\n₿lock height → 917,402","created_at":1759429556,"id":"e85c0fa796ee3f66d95c10b69e87137e91d1654e082833b2064f539b43d7f8a3","kind":1,"pubkey":"b8e711ea98fc1d6a53e86c5f802580e97529bceb03c033a57726c3708e21bfcf","sig":"d110d7693807abe9e9798b0521dc070a87f1aa70af13a9c3ac54d324ddd339132dca900b062029fd675819d1b18cb3b707089db5008c9df4f43b6f0100c70a57","tags":[["t","Bitcoin"]]}] +[14:26:22.165] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"FWITW here’s my take on the Core vs. Knots storm-in-a-teacup.\n\nIt feels like yet another manufactured crisis aimed at seizing control of the codebase — starting around two years ago with hundreds of millions of dollars burned on transaction fees to spam the network with superfluous data. Tellingly, that activity came to an abrupt halt right around Trump’s election, and now 1 sat/vB transactions prevail as if nothing happened.\n\nDespite this, panic is being stirred, with calls to abandon Bitcoin Core for a client maintained by a single developer, who wants to decide which transactions are “good” and get through, and which are “bad” and get memory-holed.\n\nIt will be telling if the drama continues now that Core has backtracked a bit. If it does, it’s a clear sign this fight isn’t about halting ‘spam’ at all, it’s about control of the codebase.\n\nAnd on that subject: this episode only reinforces the urgency of ossifying the codebase against anything beyond essential maintenance and security fixes, ideally before the original cypherpunks retire. In my mind the deepest confidence and respect must go to those who not only bootstrapped Bitcoin, but also stood firm in defending it during the Blocksize Wars.","created_at":1759429551,"id":"514a51a0c43e5448e0d01980f3b0402d557c9c64515e8c3147ea2311509262e8","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"7fb9b6d3b715a9fb137a07d4e75a2628895aee2e9d1ea6128300c314f6963631b892cca4c38ff34c8e2c3980da9184ab2a40293465ef9a6f311bf8da263152a8","tags":[]}] +[14:26:22.226] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oh absolutely not. Are you not then? You're just virtue signaling from the sidelines? \n\n","created_at":1759429549,"id":"8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"ab98e1418bab697b6c741351b28e2ad8a4471f6c7512b2abe5deacb7c649bdd34d2250de6d9206427de6e46c28910b5042fc0fee4de3b4959e2099f2921befae","tags":[["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://Nostr.einundzwanzig.space"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","8e205aa9c4740c81b3fc1f7b31260b4126f6dfcff5251223f6394674893af212","wss://Nostr.einundzwanzig.space","reply","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:26:22.286] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BootiFull \nhttps://images2.imgbox.com/2b/56/YBu7QR5A_o.jpg \nlook back at it #BootiFull ","created_at":1759429547,"id":"641377f01d32fd2fc43b62c630766613eecb395f301d9b27b7048b2766dc32ce","kind":1,"pubkey":"000006bb62c0e3e418c342334165da0a17b971b8feae869af710d5a8979114a6","sig":"af489b1b2347c8ecdbb52b20846dc965aeb46a9fd0b0a6ae5850e2676e08acb575888d065327334621d8b4d77f02fa8ed21eb5e04cfbbd73ec4417c5eca282ac","tags":[]}] +[14:26:22.347] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can you pass me to Dave ?","created_at":1759429547,"id":"a58ffaa16997369ce3d3c03c9f003889a86fa145f460c057f0b9cc3cf7bc8356","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"2428a90cc6ab4a3ea770b7fdeccb84b7474e973ef23471d92b0b50ac691bdee3d5008030baef7170e39a35e3e3220ccbd532c59bd862089f0df8b745fb0648e5","tags":[["alt","A short note: Can you pass me to Dave ?"],["e","6cf55726b5d4a77dd6a7df40446faf149eef7ce8cf1d1fde1e6e38bdaa9b26ea","wss://relay.orangepill.ovh/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:22.407] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:26:22.468] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:26:22.528] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:22.589] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:22.649] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:22.710] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:22.771] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:26:22.831] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:26:22.892] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:26:22.952] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:23.013] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:23.073] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:26:23.436] RECV nos.lol:443: 0ce4c3023510","tags":[["p","d9745145355cf334e327d679d4c53 +[14:26:24.585] RECV nos.lol:443: b3e333e6ed76a1e6"],["p","5c10ed0678805156d39ef1ef6d +[14:26:24.826] RECV nos.lol:443: 88656e165426436e3086c3c"],["p","af4bfa6b6d076853308 +[14:26:24.947] RECV nos.lol:443: 29540126f80dc"],["p","5f0d66bacc2313d42688ed847304c2b +[14:26:26.115] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:26:26.115] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:26:26.115] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:26:26.115] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:26:26.447] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Done and dusted ","created_at":1759429579,"id":"c54acb3462b615be2862ef91077e4b55d4bdf4590d62227df2e832046a6d6290","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"73a90292c84af4891f9009a6221f96238f90e751f2bcdb0372249f6d827cee776d4186dab77675c6541093cfb4c4a642a0545eb68d7036a4aad50120fe24b343","tags":[["alt","A short note: Done and dusted "],["e","2b380dd348e170ff27c3dfbed133ec9abc62575108383be94f1d2ed7ec268740","wss://nostr.azzamo.net/","root","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","3a990e9d72ad99252c227c451a265fa063b866d6720d68dacb4903a58605216f","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:26:26.507] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Don’t laugh at my brother nostr:npub10mtatsat7ph6rsq0w8u8npt8d86x4jfr2nqjnvld2439q6f8ugqq0x27hf 😂","created_at":1759429579,"id":"f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"552b4fd3ead1c0788bbe787a1a088b3cedf41bfd93f4aa74f5288c4841c19b1a2699fe8d8bff2a22196a63b9fb42c25fb19eef031a54304f7666406e86347bf0","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200"]]}] +[14:26:26.568] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Only Dave can assist me ...","created_at":1759429578,"id":"92f9ec5fa4d5849b54e75d82b6feeaa75152cac6e985443aee68337e8bde97fc","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"a4f86e1fcc036ffe41064ea682fe6cbd92b6ce7660ffa677a8699a787bcebb8d4f39285ffc86f19231d2f1f4731043be46faef6802b927f49a44774517fce6ca","tags":[["alt","A short note: Only Dave can assist me ..."],["e","273784ee39316bda883e9b4de3e36439c61acc940e5c8a2af98d3faf3eccd2b4","wss://multiplexer.huszonegy.world/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:26.628] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ich bin nicht live, aber es trotzdem wird angezeigt als Ich live wäre. Ich kann den Stream weder stoppen noch neu starten","created_at":1759429576,"id":"5acb8491b03dddf13d937c1bcfb02c04209b50211a3fba85f016676fe004ba10","kind":1,"pubkey":"0b26f590631b0fa3048d103410e484e5e22e2d5a8eceaceda9d91b38f81dd1a8","sig":"d1c15312a4b2275be173cb155936865d1eba608ec0a5d26d3c22294c8b774be6f35a30ea3f6bd8795570e27f36fd5e4aa50297f269931fc80dd9b463e221dd83","tags":[["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://nos.lol/","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"],["e","a7cbab5256ad6198f583de1d648d9b2623ea86317373c41624b63cdc36e8fd1f","wss://nostr.oxtr.dev","reply"],["p","e45841bc9b795849c26b200fe8f25c8433ca89b6e283e1be48458d96f585dc53","","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","","mention"]]}] +[14:26:26.689] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like a glory hole. But for wine 🤌🏾🤌🏾🤌🏾","created_at":1759429570,"id":"96f7f3849709c246526da6424547f78abb5d2b0ae6361c41b0f660ac304b8a23","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"9d3f7ece4328279666e9779ca5b929f930ad69cd1898cc993cd644e77ecfc37047c2618233a43d85864a7baf3990ba8afbabf71382ce86dcd727c41aa3cc7560","tags":[["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root"],["e","67c944ddc2f7f3d428b227f202d6163ac8b36739bb36c9f63bb2c350c36c13f2","","reply"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"]]}] +[14:26:26.750] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remember, even as Bitcoin climbs back toward its highs, it’s still far from reaching its true potential. Stay grounded, the real reward of Bitcoin comes from practicing low time preference.\n\n#Bitcoin → ₿120,246\n₿lock height → 917,402","created_at":1759429556,"id":"e85c0fa796ee3f66d95c10b69e87137e91d1654e082833b2064f539b43d7f8a3","kind":1,"pubkey":"b8e711ea98fc1d6a53e86c5f802580e97529bceb03c033a57726c3708e21bfcf","sig":"d110d7693807abe9e9798b0521dc070a87f1aa70af13a9c3ac54d324ddd339132dca900b062029fd675819d1b18cb3b707089db5008c9df4f43b6f0100c70a57","tags":[["t","Bitcoin"]]}] +[14:26:26.810] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"FWITW here’s my take on the Core vs. Knots storm-in-a-teacup.\n\nIt feels like yet another manufactured crisis aimed at seizing control of the codebase — starting around two years ago with hundreds of millions of dollars burned on transaction fees to spam the network with superfluous data. Tellingly, that activity came to an abrupt halt right around Trump’s election, and now 1 sat/vB transactions prevail as if nothing happened.\n\nDespite this, panic is being stirred, with calls to abandon Bitcoin Core for a client maintained by a single developer, who wants to decide which transactions are “good” and get through, and which are “bad” and get memory-holed.\n\nIt will be telling if the drama continues now that Core has backtracked a bit. If it does, it’s a clear sign this fight isn’t about halting ‘spam’ at all, it’s about control of the codebase.\n\nAnd on that subject: this episode only reinforces the urgency of ossifying the codebase against anything beyond essential maintenance and security fixes, ideally before the original cypherpunks retire. In my mind the deepest confidence and respect must go to those who not only bootstrapped Bitcoin, but also stood firm in defending it during the Blocksize Wars.","created_at":1759429551,"id":"514a51a0c43e5448e0d01980f3b0402d557c9c64515e8c3147ea2311509262e8","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"7fb9b6d3b715a9fb137a07d4e75a2628895aee2e9d1ea6128300c314f6963631b892cca4c38ff34c8e2c3980da9184ab2a40293465ef9a6f311bf8da263152a8","tags":[]}] +[14:26:26.871] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oh absolutely not. Are you not then? You're just virtue signaling from the sidelines? \n\n","created_at":1759429549,"id":"8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"ab98e1418bab697b6c741351b28e2ad8a4471f6c7512b2abe5deacb7c649bdd34d2250de6d9206427de6e46c28910b5042fc0fee4de3b4959e2099f2921befae","tags":[["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://Nostr.einundzwanzig.space"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","8e205aa9c4740c81b3fc1f7b31260b4126f6dfcff5251223f6394674893af212","wss://Nostr.einundzwanzig.space","reply","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:26:26.932] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BootiFull \nhttps://images2.imgbox.com/2b/56/YBu7QR5A_o.jpg \nlook back at it #BootiFull ","created_at":1759429547,"id":"641377f01d32fd2fc43b62c630766613eecb395f301d9b27b7048b2766dc32ce","kind":1,"pubkey":"000006bb62c0e3e418c342334165da0a17b971b8feae869af710d5a8979114a6","sig":"af489b1b2347c8ecdbb52b20846dc965aeb46a9fd0b0a6ae5850e2676e08acb575888d065327334621d8b4d77f02fa8ed21eb5e04cfbbd73ec4417c5eca282ac","tags":[]}] +[14:26:26.992] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can you pass me to Dave ?","created_at":1759429547,"id":"a58ffaa16997369ce3d3c03c9f003889a86fa145f460c057f0b9cc3cf7bc8356","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"2428a90cc6ab4a3ea770b7fdeccb84b7474e973ef23471d92b0b50ac691bdee3d5008030baef7170e39a35e3e3220ccbd532c59bd862089f0df8b745fb0648e5","tags":[["alt","A short note: Can you pass me to Dave ?"],["e","6cf55726b5d4a77dd6a7df40446faf149eef7ce8cf1d1fde1e6e38bdaa9b26ea","wss://relay.orangepill.ovh/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:27.053] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:26:27.078] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:26:27.139] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:27.199] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:27.260] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:27.321] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:27.381] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:26:27.442] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:26:27.502] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:26:27.563] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:27.624] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:27.684] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:26:28.047] RECV nos.lol:443: 0ce4c3023510","tags":[["p","d9745145355cf334e327d679d4c53 +[14:26:29.195] RECV nos.lol:443: b3e333e6ed76a1e6"],["p","5c10ed0678805156d39ef1ef6d +[14:26:29.437] RECV nos.lol:443: 88656e165426436e3086c3c"],["p","af4bfa6b6d076853308 +[14:26:29.558] RECV nos.lol:443: 29540126f80dc"],["p","5f0d66bacc2313d42688ed847304c2b +[14:26:31.165] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:26:31.165] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:26:31.165] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:26:31.165] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:26:31.319] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Core v30\n\nhttps://primal.net/e/nevent1qqs9zjj35rzru4zgurgpnq8nkpqz64tun3j9zh5vx9r75gc32zfx96qvnvkcg","created_at":1759429587,"id":"0b7ea4a6a4d9d1e314ff54138d9f9c3e63a2f94e55e692eb844a179b553f62f6","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"856d6c3fdf0cb61fda7edd049cbead7371aab95d99b7b6f3e8dca00dead741df18bd47750140c288ede9ac8a84947a7f341f5d9edc059edcfb4a60520ca75ed3","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:26:31.379] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"Cleaning\"...","created_at":1759429586,"id":"99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"b5bd8df5df92c9bb62b64b3e5d34d6705b37e14b5100ad43598e3e23809363f9f3fd205baf70eef37eb504fca802a577d1f9de010ec88b467a266216a858e151","tags":[["alt","A short note: \"Cleaning\"..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"]]}] +[14:26:31.440] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Done and dusted ","created_at":1759429579,"id":"c54acb3462b615be2862ef91077e4b55d4bdf4590d62227df2e832046a6d6290","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"73a90292c84af4891f9009a6221f96238f90e751f2bcdb0372249f6d827cee776d4186dab77675c6541093cfb4c4a642a0545eb68d7036a4aad50120fe24b343","tags":[["alt","A short note: Done and dusted "],["e","2b380dd348e170ff27c3dfbed133ec9abc62575108383be94f1d2ed7ec268740","wss://nostr.azzamo.net/","root","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","3a990e9d72ad99252c227c451a265fa063b866d6720d68dacb4903a58605216f","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:26:31.501] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Don’t laugh at my brother nostr:npub10mtatsat7ph6rsq0w8u8npt8d86x4jfr2nqjnvld2439q6f8ugqq0x27hf 😂","created_at":1759429579,"id":"f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"552b4fd3ead1c0788bbe787a1a088b3cedf41bfd93f4aa74f5288c4841c19b1a2699fe8d8bff2a22196a63b9fb42c25fb19eef031a54304f7666406e86347bf0","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200"]]}] +[14:26:31.561] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Only Dave can assist me ...","created_at":1759429578,"id":"92f9ec5fa4d5849b54e75d82b6feeaa75152cac6e985443aee68337e8bde97fc","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"a4f86e1fcc036ffe41064ea682fe6cbd92b6ce7660ffa677a8699a787bcebb8d4f39285ffc86f19231d2f1f4731043be46faef6802b927f49a44774517fce6ca","tags":[["alt","A short note: Only Dave can assist me ..."],["e","273784ee39316bda883e9b4de3e36439c61acc940e5c8a2af98d3faf3eccd2b4","wss://multiplexer.huszonegy.world/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:31.622] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ich bin nicht live, aber es trotzdem wird angezeigt als Ich live wäre. Ich kann den Stream weder stoppen noch neu starten","created_at":1759429576,"id":"5acb8491b03dddf13d937c1bcfb02c04209b50211a3fba85f016676fe004ba10","kind":1,"pubkey":"0b26f590631b0fa3048d103410e484e5e22e2d5a8eceaceda9d91b38f81dd1a8","sig":"d1c15312a4b2275be173cb155936865d1eba608ec0a5d26d3c22294c8b774be6f35a30ea3f6bd8795570e27f36fd5e4aa50297f269931fc80dd9b463e221dd83","tags":[["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://nos.lol/","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"],["e","a7cbab5256ad6198f583de1d648d9b2623ea86317373c41624b63cdc36e8fd1f","wss://nostr.oxtr.dev","reply"],["p","e45841bc9b795849c26b200fe8f25c8433ca89b6e283e1be48458d96f585dc53","","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","","mention"]]}] +[14:26:31.682] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like a glory hole. But for wine 🤌🏾🤌🏾🤌🏾","created_at":1759429570,"id":"96f7f3849709c246526da6424547f78abb5d2b0ae6361c41b0f660ac304b8a23","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"9d3f7ece4328279666e9779ca5b929f930ad69cd1898cc993cd644e77ecfc37047c2618233a43d85864a7baf3990ba8afbabf71382ce86dcd727c41aa3cc7560","tags":[["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root"],["e","67c944ddc2f7f3d428b227f202d6163ac8b36739bb36c9f63bb2c350c36c13f2","","reply"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"]]}] +[14:26:31.743] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remember, even as Bitcoin climbs back toward its highs, it’s still far from reaching its true potential. Stay grounded, the real reward of Bitcoin comes from practicing low time preference.\n\n#Bitcoin → ₿120,246\n₿lock height → 917,402","created_at":1759429556,"id":"e85c0fa796ee3f66d95c10b69e87137e91d1654e082833b2064f539b43d7f8a3","kind":1,"pubkey":"b8e711ea98fc1d6a53e86c5f802580e97529bceb03c033a57726c3708e21bfcf","sig":"d110d7693807abe9e9798b0521dc070a87f1aa70af13a9c3ac54d324ddd339132dca900b062029fd675819d1b18cb3b707089db5008c9df4f43b6f0100c70a57","tags":[["t","Bitcoin"]]}] +[14:26:31.803] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"FWITW here’s my take on the Core vs. Knots storm-in-a-teacup.\n\nIt feels like yet another manufactured crisis aimed at seizing control of the codebase — starting around two years ago with hundreds of millions of dollars burned on transaction fees to spam the network with superfluous data. Tellingly, that activity came to an abrupt halt right around Trump’s election, and now 1 sat/vB transactions prevail as if nothing happened.\n\nDespite this, panic is being stirred, with calls to abandon Bitcoin Core for a client maintained by a single developer, who wants to decide which transactions are “good” and get through, and which are “bad” and get memory-holed.\n\nIt will be telling if the drama continues now that Core has backtracked a bit. If it does, it’s a clear sign this fight isn’t about halting ‘spam’ at all, it’s about control of the codebase.\n\nAnd on that subject: this episode only reinforces the urgency of ossifying the codebase against anything beyond essential maintenance and security fixes, ideally before the original cypherpunks retire. In my mind the deepest confidence and respect must go to those who not only bootstrapped Bitcoin, but also stood firm in defending it during the Blocksize Wars.","created_at":1759429551,"id":"514a51a0c43e5448e0d01980f3b0402d557c9c64515e8c3147ea2311509262e8","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"7fb9b6d3b715a9fb137a07d4e75a2628895aee2e9d1ea6128300c314f6963631b892cca4c38ff34c8e2c3980da9184ab2a40293465ef9a6f311bf8da263152a8","tags":[]}] +[14:26:31.864] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oh absolutely not. Are you not then? You're just virtue signaling from the sidelines? \n\n","created_at":1759429549,"id":"8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"ab98e1418bab697b6c741351b28e2ad8a4471f6c7512b2abe5deacb7c649bdd34d2250de6d9206427de6e46c28910b5042fc0fee4de3b4959e2099f2921befae","tags":[["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://Nostr.einundzwanzig.space"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","8e205aa9c4740c81b3fc1f7b31260b4126f6dfcff5251223f6394674893af212","wss://Nostr.einundzwanzig.space","reply","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:26:31.924] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:26:31.985] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:26:32.045] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:32.106] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:32.133] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:32.193] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:32.254] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:26:32.314] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:26:32.375] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:26:32.435] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:32.496] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:32.557] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:26:32.920] RECV nos.lol:443: 0ce4c3023510","tags":[["p","d9745145355cf334e327d679d4c53 +[14:26:34.067] RECV nos.lol:443: b3e333e6ed76a1e6"],["p","5c10ed0678805156d39ef1ef6d +[14:26:34.309] RECV nos.lol:443: 88656e165426436e3086c3c"],["p","af4bfa6b6d076853308 +[14:26:34.430] RECV nos.lol:443: 29540126f80dc"],["p","5f0d66bacc2313d42688ed847304c2b +[14:26:35.405] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:26:35.405] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:26:35.405] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:26:35.405] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:26:35.557] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Core v30\n\nhttps://primal.net/e/nevent1qqs9zjj35rzru4zgurgpnq8nkpqz64tun3j9zh5vx9r75gc32zfx96qvnvkcg","created_at":1759429587,"id":"0b7ea4a6a4d9d1e314ff54138d9f9c3e63a2f94e55e692eb844a179b553f62f6","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"856d6c3fdf0cb61fda7edd049cbead7371aab95d99b7b6f3e8dca00dead741df18bd47750140c288ede9ac8a84947a7f341f5d9edc059edcfb4a60520ca75ed3","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:26:35.618] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"Cleaning\"...","created_at":1759429586,"id":"99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"b5bd8df5df92c9bb62b64b3e5d34d6705b37e14b5100ad43598e3e23809363f9f3fd205baf70eef37eb504fca802a577d1f9de010ec88b467a266216a858e151","tags":[["alt","A short note: \"Cleaning\"..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"]]}] +[14:26:35.678] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Done and dusted ","created_at":1759429579,"id":"c54acb3462b615be2862ef91077e4b55d4bdf4590d62227df2e832046a6d6290","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"73a90292c84af4891f9009a6221f96238f90e751f2bcdb0372249f6d827cee776d4186dab77675c6541093cfb4c4a642a0545eb68d7036a4aad50120fe24b343","tags":[["alt","A short note: Done and dusted "],["e","2b380dd348e170ff27c3dfbed133ec9abc62575108383be94f1d2ed7ec268740","wss://nostr.azzamo.net/","root","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","3a990e9d72ad99252c227c451a265fa063b866d6720d68dacb4903a58605216f","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:26:35.739] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Don’t laugh at my brother nostr:npub10mtatsat7ph6rsq0w8u8npt8d86x4jfr2nqjnvld2439q6f8ugqq0x27hf 😂","created_at":1759429579,"id":"f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"552b4fd3ead1c0788bbe787a1a088b3cedf41bfd93f4aa74f5288c4841c19b1a2699fe8d8bff2a22196a63b9fb42c25fb19eef031a54304f7666406e86347bf0","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200"]]}] +[14:26:35.799] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Only Dave can assist me ...","created_at":1759429578,"id":"92f9ec5fa4d5849b54e75d82b6feeaa75152cac6e985443aee68337e8bde97fc","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"a4f86e1fcc036ffe41064ea682fe6cbd92b6ce7660ffa677a8699a787bcebb8d4f39285ffc86f19231d2f1f4731043be46faef6802b927f49a44774517fce6ca","tags":[["alt","A short note: Only Dave can assist me ..."],["e","273784ee39316bda883e9b4de3e36439c61acc940e5c8a2af98d3faf3eccd2b4","wss://multiplexer.huszonegy.world/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:35.860] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ich bin nicht live, aber es trotzdem wird angezeigt als Ich live wäre. Ich kann den Stream weder stoppen noch neu starten","created_at":1759429576,"id":"5acb8491b03dddf13d937c1bcfb02c04209b50211a3fba85f016676fe004ba10","kind":1,"pubkey":"0b26f590631b0fa3048d103410e484e5e22e2d5a8eceaceda9d91b38f81dd1a8","sig":"d1c15312a4b2275be173cb155936865d1eba608ec0a5d26d3c22294c8b774be6f35a30ea3f6bd8795570e27f36fd5e4aa50297f269931fc80dd9b463e221dd83","tags":[["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://nos.lol/","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"],["e","a7cbab5256ad6198f583de1d648d9b2623ea86317373c41624b63cdc36e8fd1f","wss://nostr.oxtr.dev","reply"],["p","e45841bc9b795849c26b200fe8f25c8433ca89b6e283e1be48458d96f585dc53","","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","","mention"]]}] +[14:26:35.920] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like a glory hole. But for wine 🤌🏾🤌🏾🤌🏾","created_at":1759429570,"id":"96f7f3849709c246526da6424547f78abb5d2b0ae6361c41b0f660ac304b8a23","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"9d3f7ece4328279666e9779ca5b929f930ad69cd1898cc993cd644e77ecfc37047c2618233a43d85864a7baf3990ba8afbabf71382ce86dcd727c41aa3cc7560","tags":[["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root"],["e","67c944ddc2f7f3d428b227f202d6163ac8b36739bb36c9f63bb2c350c36c13f2","","reply"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"]]}] +[14:26:35.981] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remember, even as Bitcoin climbs back toward its highs, it’s still far from reaching its true potential. Stay grounded, the real reward of Bitcoin comes from practicing low time preference.\n\n#Bitcoin → ₿120,246\n₿lock height → 917,402","created_at":1759429556,"id":"e85c0fa796ee3f66d95c10b69e87137e91d1654e082833b2064f539b43d7f8a3","kind":1,"pubkey":"b8e711ea98fc1d6a53e86c5f802580e97529bceb03c033a57726c3708e21bfcf","sig":"d110d7693807abe9e9798b0521dc070a87f1aa70af13a9c3ac54d324ddd339132dca900b062029fd675819d1b18cb3b707089db5008c9df4f43b6f0100c70a57","tags":[["t","Bitcoin"]]}] +[14:26:36.041] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"FWITW here’s my take on the Core vs. Knots storm-in-a-teacup.\n\nIt feels like yet another manufactured crisis aimed at seizing control of the codebase — starting around two years ago with hundreds of millions of dollars burned on transaction fees to spam the network with superfluous data. Tellingly, that activity came to an abrupt halt right around Trump’s election, and now 1 sat/vB transactions prevail as if nothing happened.\n\nDespite this, panic is being stirred, with calls to abandon Bitcoin Core for a client maintained by a single developer, who wants to decide which transactions are “good” and get through, and which are “bad” and get memory-holed.\n\nIt will be telling if the drama continues now that Core has backtracked a bit. If it does, it’s a clear sign this fight isn’t about halting ‘spam’ at all, it’s about control of the codebase.\n\nAnd on that subject: this episode only reinforces the urgency of ossifying the codebase against anything beyond essential maintenance and security fixes, ideally before the original cypherpunks retire. In my mind the deepest confidence and respect must go to those who not only bootstrapped Bitcoin, but also stood firm in defending it during the Blocksize Wars.","created_at":1759429551,"id":"514a51a0c43e5448e0d01980f3b0402d557c9c64515e8c3147ea2311509262e8","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"7fb9b6d3b715a9fb137a07d4e75a2628895aee2e9d1ea6128300c314f6963631b892cca4c38ff34c8e2c3980da9184ab2a40293465ef9a6f311bf8da263152a8","tags":[]}] +[14:26:36.102] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oh absolutely not. Are you not then? You're just virtue signaling from the sidelines? \n\n","created_at":1759429549,"id":"8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"ab98e1418bab697b6c741351b28e2ad8a4471f6c7512b2abe5deacb7c649bdd34d2250de6d9206427de6e46c28910b5042fc0fee4de3b4959e2099f2921befae","tags":[["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://Nostr.einundzwanzig.space"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","8e205aa9c4740c81b3fc1f7b31260b4126f6dfcff5251223f6394674893af212","wss://Nostr.einundzwanzig.space","reply","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:26:36.162] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:26:36.223] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:26:36.283] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:36.344] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:36.404] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:36.465] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:36.525] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:26:36.586] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:26:36.646] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:26:36.707] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:36.767] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:36.828] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:26:37.156] RECV nos.lol:443: 0ce4c3023510","tags":[["p","d9745145355cf334e327d679d4c53 +[14:26:38.303] RECV nos.lol:443: b3e333e6ed76a1e6"],["p","5c10ed0678805156d39ef1ef6d +[14:26:38.545] RECV nos.lol:443: 88656e165426436e3086c3c"],["p","af4bfa6b6d076853308 +[14:26:38.666] RECV nos.lol:443: 29540126f80dc"],["p","5f0d66bacc2313d42688ed847304c2b +[14:26:39.640] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:26:39.640] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:26:39.640] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:26:39.640] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:26:39.791] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"みんなが外で遊んでる時、俺はガブリアスの厳選して、リズム天国のリズム感を120にしてたんだな","created_at":1759429599,"id":"21b775d08a53e698aaee9d29d6be4dfdb374fc69b16a01ac4ffd5c24eed8ae4f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"2490f5dc77f5f47d56bfb6aae9097b70792ef0a17952f1416bc7bab849f10c590826124abde346ebb8f640dc9c3f0863fd89b2ac5906d345e97a726c1f878c9b","tags":[]}] +[14:26:39.963] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Core v30\n\nhttps://primal.net/e/nevent1qqs9zjj35rzru4zgurgpnq8nkpqz64tun3j9zh5vx9r75gc32zfx96qvnvkcg","created_at":1759429587,"id":"0b7ea4a6a4d9d1e314ff54138d9f9c3e63a2f94e55e692eb844a179b553f62f6","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"856d6c3fdf0cb61fda7edd049cbead7371aab95d99b7b6f3e8dca00dead741df18bd47750140c288ede9ac8a84947a7f341f5d9edc059edcfb4a60520ca75ed3","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:26:40.023] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"Cleaning\"...","created_at":1759429586,"id":"99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"b5bd8df5df92c9bb62b64b3e5d34d6705b37e14b5100ad43598e3e23809363f9f3fd205baf70eef37eb504fca802a577d1f9de010ec88b467a266216a858e151","tags":[["alt","A short note: \"Cleaning\"..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"]]}] +[14:26:40.084] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Done and dusted ","created_at":1759429579,"id":"c54acb3462b615be2862ef91077e4b55d4bdf4590d62227df2e832046a6d6290","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"73a90292c84af4891f9009a6221f96238f90e751f2bcdb0372249f6d827cee776d4186dab77675c6541093cfb4c4a642a0545eb68d7036a4aad50120fe24b343","tags":[["alt","A short note: Done and dusted "],["e","2b380dd348e170ff27c3dfbed133ec9abc62575108383be94f1d2ed7ec268740","wss://nostr.azzamo.net/","root","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","3a990e9d72ad99252c227c451a265fa063b866d6720d68dacb4903a58605216f","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:26:40.144] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Don’t laugh at my brother nostr:npub10mtatsat7ph6rsq0w8u8npt8d86x4jfr2nqjnvld2439q6f8ugqq0x27hf 😂","created_at":1759429579,"id":"f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"552b4fd3ead1c0788bbe787a1a088b3cedf41bfd93f4aa74f5288c4841c19b1a2699fe8d8bff2a22196a63b9fb42c25fb19eef031a54304f7666406e86347bf0","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200"]]}] +[14:26:40.205] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Only Dave can assist me ...","created_at":1759429578,"id":"92f9ec5fa4d5849b54e75d82b6feeaa75152cac6e985443aee68337e8bde97fc","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"a4f86e1fcc036ffe41064ea682fe6cbd92b6ce7660ffa677a8699a787bcebb8d4f39285ffc86f19231d2f1f4731043be46faef6802b927f49a44774517fce6ca","tags":[["alt","A short note: Only Dave can assist me ..."],["e","273784ee39316bda883e9b4de3e36439c61acc940e5c8a2af98d3faf3eccd2b4","wss://multiplexer.huszonegy.world/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:40.265] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ich bin nicht live, aber es trotzdem wird angezeigt als Ich live wäre. Ich kann den Stream weder stoppen noch neu starten","created_at":1759429576,"id":"5acb8491b03dddf13d937c1bcfb02c04209b50211a3fba85f016676fe004ba10","kind":1,"pubkey":"0b26f590631b0fa3048d103410e484e5e22e2d5a8eceaceda9d91b38f81dd1a8","sig":"d1c15312a4b2275be173cb155936865d1eba608ec0a5d26d3c22294c8b774be6f35a30ea3f6bd8795570e27f36fd5e4aa50297f269931fc80dd9b463e221dd83","tags":[["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://nos.lol/","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"],["e","a7cbab5256ad6198f583de1d648d9b2623ea86317373c41624b63cdc36e8fd1f","wss://nostr.oxtr.dev","reply"],["p","e45841bc9b795849c26b200fe8f25c8433ca89b6e283e1be48458d96f585dc53","","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","","mention"]]}] +[14:26:40.326] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like a glory hole. But for wine 🤌🏾🤌🏾🤌🏾","created_at":1759429570,"id":"96f7f3849709c246526da6424547f78abb5d2b0ae6361c41b0f660ac304b8a23","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"9d3f7ece4328279666e9779ca5b929f930ad69cd1898cc993cd644e77ecfc37047c2618233a43d85864a7baf3990ba8afbabf71382ce86dcd727c41aa3cc7560","tags":[["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root"],["e","67c944ddc2f7f3d428b227f202d6163ac8b36739bb36c9f63bb2c350c36c13f2","","reply"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"]]}] +[14:26:40.387] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remember, even as Bitcoin climbs back toward its highs, it’s still far from reaching its true potential. Stay grounded, the real reward of Bitcoin comes from practicing low time preference.\n\n#Bitcoin → ₿120,246\n₿lock height → 917,402","created_at":1759429556,"id":"e85c0fa796ee3f66d95c10b69e87137e91d1654e082833b2064f539b43d7f8a3","kind":1,"pubkey":"b8e711ea98fc1d6a53e86c5f802580e97529bceb03c033a57726c3708e21bfcf","sig":"d110d7693807abe9e9798b0521dc070a87f1aa70af13a9c3ac54d324ddd339132dca900b062029fd675819d1b18cb3b707089db5008c9df4f43b6f0100c70a57","tags":[["t","Bitcoin"]]}] +[14:26:40.447] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"FWITW here’s my take on the Core vs. Knots storm-in-a-teacup.\n\nIt feels like yet another manufactured crisis aimed at seizing control of the codebase — starting around two years ago with hundreds of millions of dollars burned on transaction fees to spam the network with superfluous data. Tellingly, that activity came to an abrupt halt right around Trump’s election, and now 1 sat/vB transactions prevail as if nothing happened.\n\nDespite this, panic is being stirred, with calls to abandon Bitcoin Core for a client maintained by a single developer, who wants to decide which transactions are “good” and get through, and which are “bad” and get memory-holed.\n\nIt will be telling if the drama continues now that Core has backtracked a bit. If it does, it’s a clear sign this fight isn’t about halting ‘spam’ at all, it’s about control of the codebase.\n\nAnd on that subject: this episode only reinforces the urgency of ossifying the codebase against anything beyond essential maintenance and security fixes, ideally before the original cypherpunks retire. In my mind the deepest confidence and respect must go to those who not only bootstrapped Bitcoin, but also stood firm in defending it during the Blocksize Wars.","created_at":1759429551,"id":"514a51a0c43e5448e0d01980f3b0402d557c9c64515e8c3147ea2311509262e8","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"7fb9b6d3b715a9fb137a07d4e75a2628895aee2e9d1ea6128300c314f6963631b892cca4c38ff34c8e2c3980da9184ab2a40293465ef9a6f311bf8da263152a8","tags":[]}] +[14:26:40.508] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:26:40.568] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:26:40.629] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:40.690] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:40.750] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:40.810] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:40.871] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:26:40.932] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:26:40.992] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:26:41.053] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:41.113] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:41.174] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:26:41.536] RECV nos.lol:443: 0ce4c3023510","tags":[["p","d9745145355cf334e327d679d4c53 +[14:26:42.649] RECV nos.lol:443: b3e333e6ed76a1e6"],["p","5c10ed0678805156d39ef1ef6d +[14:26:42.891] RECV nos.lol:443: 88656e165426436e3086c3c"],["p","af4bfa6b6d076853308 +[14:26:43.012] RECV nos.lol:443: 29540126f80dc"],["p","5f0d66bacc2313d42688ed847304c2b +[14:26:43.989] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:26:43.989] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:26:43.989] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:26:43.989] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:26:44.141] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Hopefully without the tinfoil\n\nhttps://youtu.be/YLE85olJjp8?si=iAw0NqDZ4-BDNcAx \n\n","created_at":1759429600,"id":"1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"8d755f497463ddbd135d8855052a8c222405c0db27375adce88409a4898a21d4a9e3449ffd04c1e329ab9646e02433b373125f11865a29e18770bfc55ef77b18","tags":[]}] +[14:26:44.201] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"みんなが外で遊んでる時、俺はガブリアスの厳選して、リズム天国のリズム感を120にしてたんだな","created_at":1759429599,"id":"21b775d08a53e698aaee9d29d6be4dfdb374fc69b16a01ac4ffd5c24eed8ae4f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"2490f5dc77f5f47d56bfb6aae9097b70792ef0a17952f1416bc7bab849f10c590826124abde346ebb8f640dc9c3f0863fd89b2ac5906d345e97a726c1f878c9b","tags":[]}] +[14:26:44.262] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Core v30\n\nhttps://primal.net/e/nevent1qqs9zjj35rzru4zgurgpnq8nkpqz64tun3j9zh5vx9r75gc32zfx96qvnvkcg","created_at":1759429587,"id":"0b7ea4a6a4d9d1e314ff54138d9f9c3e63a2f94e55e692eb844a179b553f62f6","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"856d6c3fdf0cb61fda7edd049cbead7371aab95d99b7b6f3e8dca00dead741df18bd47750140c288ede9ac8a84947a7f341f5d9edc059edcfb4a60520ca75ed3","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:26:44.322] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"Cleaning\"...","created_at":1759429586,"id":"99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"b5bd8df5df92c9bb62b64b3e5d34d6705b37e14b5100ad43598e3e23809363f9f3fd205baf70eef37eb504fca802a577d1f9de010ec88b467a266216a858e151","tags":[["alt","A short note: \"Cleaning\"..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"]]}] +[14:26:44.383] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Done and dusted ","created_at":1759429579,"id":"c54acb3462b615be2862ef91077e4b55d4bdf4590d62227df2e832046a6d6290","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"73a90292c84af4891f9009a6221f96238f90e751f2bcdb0372249f6d827cee776d4186dab77675c6541093cfb4c4a642a0545eb68d7036a4aad50120fe24b343","tags":[["alt","A short note: Done and dusted "],["e","2b380dd348e170ff27c3dfbed133ec9abc62575108383be94f1d2ed7ec268740","wss://nostr.azzamo.net/","root","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","3a990e9d72ad99252c227c451a265fa063b866d6720d68dacb4903a58605216f","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:26:44.444] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Don’t laugh at my brother nostr:npub10mtatsat7ph6rsq0w8u8npt8d86x4jfr2nqjnvld2439q6f8ugqq0x27hf 😂","created_at":1759429579,"id":"f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"552b4fd3ead1c0788bbe787a1a088b3cedf41bfd93f4aa74f5288c4841c19b1a2699fe8d8bff2a22196a63b9fb42c25fb19eef031a54304f7666406e86347bf0","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200"]]}] +[14:26:44.504] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Only Dave can assist me ...","created_at":1759429578,"id":"92f9ec5fa4d5849b54e75d82b6feeaa75152cac6e985443aee68337e8bde97fc","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"a4f86e1fcc036ffe41064ea682fe6cbd92b6ce7660ffa677a8699a787bcebb8d4f39285ffc86f19231d2f1f4731043be46faef6802b927f49a44774517fce6ca","tags":[["alt","A short note: Only Dave can assist me ..."],["e","273784ee39316bda883e9b4de3e36439c61acc940e5c8a2af98d3faf3eccd2b4","wss://multiplexer.huszonegy.world/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:44.565] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ich bin nicht live, aber es trotzdem wird angezeigt als Ich live wäre. Ich kann den Stream weder stoppen noch neu starten","created_at":1759429576,"id":"5acb8491b03dddf13d937c1bcfb02c04209b50211a3fba85f016676fe004ba10","kind":1,"pubkey":"0b26f590631b0fa3048d103410e484e5e22e2d5a8eceaceda9d91b38f81dd1a8","sig":"d1c15312a4b2275be173cb155936865d1eba608ec0a5d26d3c22294c8b774be6f35a30ea3f6bd8795570e27f36fd5e4aa50297f269931fc80dd9b463e221dd83","tags":[["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://nos.lol/","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"],["e","a7cbab5256ad6198f583de1d648d9b2623ea86317373c41624b63cdc36e8fd1f","wss://nostr.oxtr.dev","reply"],["p","e45841bc9b795849c26b200fe8f25c8433ca89b6e283e1be48458d96f585dc53","","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","","mention"]]}] +[14:26:44.625] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like a glory hole. But for wine 🤌🏾🤌🏾🤌🏾","created_at":1759429570,"id":"96f7f3849709c246526da6424547f78abb5d2b0ae6361c41b0f660ac304b8a23","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"9d3f7ece4328279666e9779ca5b929f930ad69cd1898cc993cd644e77ecfc37047c2618233a43d85864a7baf3990ba8afbabf71382ce86dcd727c41aa3cc7560","tags":[["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root"],["e","67c944ddc2f7f3d428b227f202d6163ac8b36739bb36c9f63bb2c350c36c13f2","","reply"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"]]}] +[14:26:44.686] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remember, even as Bitcoin climbs back toward its highs, it’s still far from reaching its true potential. Stay grounded, the real reward of Bitcoin comes from practicing low time preference.\n\n#Bitcoin → ₿120,246\n₿lock height → 917,402","created_at":1759429556,"id":"e85c0fa796ee3f66d95c10b69e87137e91d1654e082833b2064f539b43d7f8a3","kind":1,"pubkey":"b8e711ea98fc1d6a53e86c5f802580e97529bceb03c033a57726c3708e21bfcf","sig":"d110d7693807abe9e9798b0521dc070a87f1aa70af13a9c3ac54d324ddd339132dca900b062029fd675819d1b18cb3b707089db5008c9df4f43b6f0100c70a57","tags":[["t","Bitcoin"]]}] +[14:26:44.746] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:26:44.807] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It definitely was. ","created_at":1759429603,"id":"c10f402ef7bedd1b390a4f741797defd5c64f815e274f3f3959ef4719a7b6662","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"1082591381f6a9b57173bec27ba50850249b642fc9a650ed382788d8d47de192c1748d9f8844d7af469789cd6da0351004e2149cb325ca67eac4c385c61f2a24","tags":[["alt","A short note: It definitely was. "],["e","de558be41da619edf952dfb83bb9c60f47f2e972d7b325968b1dbdd2409b254d","wss://henhouse.social/relay","root","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","dd6d5a4795062516691e32e2a54663c1f5fe87a118e65d4f570e83c12c751c52","wss://nostr.wine/","reply","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"],["p","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2","wss://relay.nostr.band/"]]}] +[14:26:44.868] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:26:44.928] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:44.989] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:45.049] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:45.110] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:45.170] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:26:45.231] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:26:45.291] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:26:45.352] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:45.413] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:45.473] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:26:45.836] RECV nos.lol:443: 0ce4c3023510","tags":[["p","d9745145355cf334e327d679d4c53 +[14:26:46.984] RECV nos.lol:443: b3e333e6ed76a1e6"],["p","5c10ed0678805156d39ef1ef6d +[14:26:47.191] RECV nos.lol:443: 88656e165426436e3086c3c"],["p","af4bfa6b6d076853308 +[14:26:47.311] RECV nos.lol:443: 29540126f80dc"],["p","5f0d66bacc2313d42688ed847304c2b +[14:26:48.283] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:26:48.284] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:26:48.284] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:26:48.284] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:26:48.435] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’d be such a plot twist if we found out Sydney Sweeney was Satoshi ","created_at":1759429605,"id":"2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"d3d5b96ddc819ada26eb7a36cf3cd6eb022ce9f8f1e7d459daaa03558d91d3df0f12e2a7c0126e222bc25288b0a4f3f23beda4ea4474e768d77f5557562c905c","tags":[]}] +[14:26:48.496] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It definitely was. ","created_at":1759429603,"id":"c10f402ef7bedd1b390a4f741797defd5c64f815e274f3f3959ef4719a7b6662","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"1082591381f6a9b57173bec27ba50850249b642fc9a650ed382788d8d47de192c1748d9f8844d7af469789cd6da0351004e2149cb325ca67eac4c385c61f2a24","tags":[["alt","A short note: It definitely was. "],["e","de558be41da619edf952dfb83bb9c60f47f2e972d7b325968b1dbdd2409b254d","wss://henhouse.social/relay","root","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","dd6d5a4795062516691e32e2a54663c1f5fe87a118e65d4f570e83c12c751c52","wss://nostr.wine/","reply","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"],["p","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2","wss://relay.nostr.band/"]]}] +[14:26:48.557] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Hopefully without the tinfoil\n\nhttps://youtu.be/YLE85olJjp8?si=iAw0NqDZ4-BDNcAx \n\n","created_at":1759429600,"id":"1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"8d755f497463ddbd135d8855052a8c222405c0db27375adce88409a4898a21d4a9e3449ffd04c1e329ab9646e02433b373125f11865a29e18770bfc55ef77b18","tags":[]}] +[14:26:48.617] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"みんなが外で遊んでる時、俺はガブリアスの厳選して、リズム天国のリズム感を120にしてたんだな","created_at":1759429599,"id":"21b775d08a53e698aaee9d29d6be4dfdb374fc69b16a01ac4ffd5c24eed8ae4f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"2490f5dc77f5f47d56bfb6aae9097b70792ef0a17952f1416bc7bab849f10c590826124abde346ebb8f640dc9c3f0863fd89b2ac5906d345e97a726c1f878c9b","tags":[]}] +[14:26:48.678] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Core v30\n\nhttps://primal.net/e/nevent1qqs9zjj35rzru4zgurgpnq8nkpqz64tun3j9zh5vx9r75gc32zfx96qvnvkcg","created_at":1759429587,"id":"0b7ea4a6a4d9d1e314ff54138d9f9c3e63a2f94e55e692eb844a179b553f62f6","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"856d6c3fdf0cb61fda7edd049cbead7371aab95d99b7b6f3e8dca00dead741df18bd47750140c288ede9ac8a84947a7f341f5d9edc059edcfb4a60520ca75ed3","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:26:48.738] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"Cleaning\"...","created_at":1759429586,"id":"99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"b5bd8df5df92c9bb62b64b3e5d34d6705b37e14b5100ad43598e3e23809363f9f3fd205baf70eef37eb504fca802a577d1f9de010ec88b467a266216a858e151","tags":[["alt","A short note: \"Cleaning\"..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"]]}] +[14:26:48.799] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Done and dusted ","created_at":1759429579,"id":"c54acb3462b615be2862ef91077e4b55d4bdf4590d62227df2e832046a6d6290","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"73a90292c84af4891f9009a6221f96238f90e751f2bcdb0372249f6d827cee776d4186dab77675c6541093cfb4c4a642a0545eb68d7036a4aad50120fe24b343","tags":[["alt","A short note: Done and dusted "],["e","2b380dd348e170ff27c3dfbed133ec9abc62575108383be94f1d2ed7ec268740","wss://nostr.azzamo.net/","root","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","3a990e9d72ad99252c227c451a265fa063b866d6720d68dacb4903a58605216f","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:26:48.859] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Don’t laugh at my brother nostr:npub10mtatsat7ph6rsq0w8u8npt8d86x4jfr2nqjnvld2439q6f8ugqq0x27hf 😂","created_at":1759429579,"id":"f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"552b4fd3ead1c0788bbe787a1a088b3cedf41bfd93f4aa74f5288c4841c19b1a2699fe8d8bff2a22196a63b9fb42c25fb19eef031a54304f7666406e86347bf0","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200"]]}] +[14:26:48.920] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Only Dave can assist me ...","created_at":1759429578,"id":"92f9ec5fa4d5849b54e75d82b6feeaa75152cac6e985443aee68337e8bde97fc","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"a4f86e1fcc036ffe41064ea682fe6cbd92b6ce7660ffa677a8699a787bcebb8d4f39285ffc86f19231d2f1f4731043be46faef6802b927f49a44774517fce6ca","tags":[["alt","A short note: Only Dave can assist me ..."],["e","273784ee39316bda883e9b4de3e36439c61acc940e5c8a2af98d3faf3eccd2b4","wss://multiplexer.huszonegy.world/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:48.980] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ich bin nicht live, aber es trotzdem wird angezeigt als Ich live wäre. Ich kann den Stream weder stoppen noch neu starten","created_at":1759429576,"id":"5acb8491b03dddf13d937c1bcfb02c04209b50211a3fba85f016676fe004ba10","kind":1,"pubkey":"0b26f590631b0fa3048d103410e484e5e22e2d5a8eceaceda9d91b38f81dd1a8","sig":"d1c15312a4b2275be173cb155936865d1eba608ec0a5d26d3c22294c8b774be6f35a30ea3f6bd8795570e27f36fd5e4aa50297f269931fc80dd9b463e221dd83","tags":[["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://nos.lol/","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"],["e","a7cbab5256ad6198f583de1d648d9b2623ea86317373c41624b63cdc36e8fd1f","wss://nostr.oxtr.dev","reply"],["p","e45841bc9b795849c26b200fe8f25c8433ca89b6e283e1be48458d96f585dc53","","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","","mention"]]}] +[14:26:49.041] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:26:49.101] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:26:49.162] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:49.223] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:49.283] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:49.344] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:49.404] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:26:49.465] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:26:49.525] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:26:49.586] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:49.646] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:49.707] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:26:50.069] RECV nos.lol:443: 0ce4c3023510","tags":[["p","d9745145355cf334e327d679d4c53 +[14:26:51.217] RECV nos.lol:443: b3e333e6ed76a1e6"],["p","5c10ed0678805156d39ef1ef6d +[14:26:51.458] RECV nos.lol:443: 88656e165426436e3086c3c"],["p","af4bfa6b6d076853308 +[14:26:51.579] RECV nos.lol:443: 29540126f80dc"],["p","5f0d66bacc2313d42688ed847304c2b +[14:26:53.176] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:26:53.177] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:26:53.177] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:26:53.177] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:26:53.328] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’d be such a plot twist if we found out Sydney Sweeney was Satoshi ","created_at":1759429605,"id":"2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"d3d5b96ddc819ada26eb7a36cf3cd6eb022ce9f8f1e7d459daaa03558d91d3df0f12e2a7c0126e222bc25288b0a4f3f23beda4ea4474e768d77f5557562c905c","tags":[]}] +[14:26:53.338] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It definitely was. ","created_at":1759429603,"id":"c10f402ef7bedd1b390a4f741797defd5c64f815e274f3f3959ef4719a7b6662","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"1082591381f6a9b57173bec27ba50850249b642fc9a650ed382788d8d47de192c1748d9f8844d7af469789cd6da0351004e2149cb325ca67eac4c385c61f2a24","tags":[["alt","A short note: It definitely was. "],["e","de558be41da619edf952dfb83bb9c60f47f2e972d7b325968b1dbdd2409b254d","wss://henhouse.social/relay","root","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","dd6d5a4795062516691e32e2a54663c1f5fe87a118e65d4f570e83c12c751c52","wss://nostr.wine/","reply","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"],["p","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2","wss://relay.nostr.band/"]]}] +[14:26:53.399] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Hopefully without the tinfoil\n\nhttps://youtu.be/YLE85olJjp8?si=iAw0NqDZ4-BDNcAx \n\n","created_at":1759429600,"id":"1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"8d755f497463ddbd135d8855052a8c222405c0db27375adce88409a4898a21d4a9e3449ffd04c1e329ab9646e02433b373125f11865a29e18770bfc55ef77b18","tags":[]}] +[14:26:53.459] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"みんなが外で遊んでる時、俺はガブリアスの厳選して、リズム天国のリズム感を120にしてたんだな","created_at":1759429599,"id":"21b775d08a53e698aaee9d29d6be4dfdb374fc69b16a01ac4ffd5c24eed8ae4f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"2490f5dc77f5f47d56bfb6aae9097b70792ef0a17952f1416bc7bab849f10c590826124abde346ebb8f640dc9c3f0863fd89b2ac5906d345e97a726c1f878c9b","tags":[]}] +[14:26:53.520] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Core v30\n\nhttps://primal.net/e/nevent1qqs9zjj35rzru4zgurgpnq8nkpqz64tun3j9zh5vx9r75gc32zfx96qvnvkcg","created_at":1759429587,"id":"0b7ea4a6a4d9d1e314ff54138d9f9c3e63a2f94e55e692eb844a179b553f62f6","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"856d6c3fdf0cb61fda7edd049cbead7371aab95d99b7b6f3e8dca00dead741df18bd47750140c288ede9ac8a84947a7f341f5d9edc059edcfb4a60520ca75ed3","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:26:53.580] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"Cleaning\"...","created_at":1759429586,"id":"99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"b5bd8df5df92c9bb62b64b3e5d34d6705b37e14b5100ad43598e3e23809363f9f3fd205baf70eef37eb504fca802a577d1f9de010ec88b467a266216a858e151","tags":[["alt","A short note: \"Cleaning\"..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"]]}] +[14:26:53.641] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Done and dusted ","created_at":1759429579,"id":"c54acb3462b615be2862ef91077e4b55d4bdf4590d62227df2e832046a6d6290","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"73a90292c84af4891f9009a6221f96238f90e751f2bcdb0372249f6d827cee776d4186dab77675c6541093cfb4c4a642a0545eb68d7036a4aad50120fe24b343","tags":[["alt","A short note: Done and dusted "],["e","2b380dd348e170ff27c3dfbed133ec9abc62575108383be94f1d2ed7ec268740","wss://nostr.azzamo.net/","root","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","3a990e9d72ad99252c227c451a265fa063b866d6720d68dacb4903a58605216f","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:26:53.702] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Don’t laugh at my brother nostr:npub10mtatsat7ph6rsq0w8u8npt8d86x4jfr2nqjnvld2439q6f8ugqq0x27hf 😂","created_at":1759429579,"id":"f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"552b4fd3ead1c0788bbe787a1a088b3cedf41bfd93f4aa74f5288c4841c19b1a2699fe8d8bff2a22196a63b9fb42c25fb19eef031a54304f7666406e86347bf0","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200"]]}] +[14:26:53.762] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Only Dave can assist me ...","created_at":1759429578,"id":"92f9ec5fa4d5849b54e75d82b6feeaa75152cac6e985443aee68337e8bde97fc","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"a4f86e1fcc036ffe41064ea682fe6cbd92b6ce7660ffa677a8699a787bcebb8d4f39285ffc86f19231d2f1f4731043be46faef6802b927f49a44774517fce6ca","tags":[["alt","A short note: Only Dave can assist me ..."],["e","273784ee39316bda883e9b4de3e36439c61acc940e5c8a2af98d3faf3eccd2b4","wss://multiplexer.huszonegy.world/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:53.823] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ich bin nicht live, aber es trotzdem wird angezeigt als Ich live wäre. Ich kann den Stream weder stoppen noch neu starten","created_at":1759429576,"id":"5acb8491b03dddf13d937c1bcfb02c04209b50211a3fba85f016676fe004ba10","kind":1,"pubkey":"0b26f590631b0fa3048d103410e484e5e22e2d5a8eceaceda9d91b38f81dd1a8","sig":"d1c15312a4b2275be173cb155936865d1eba608ec0a5d26d3c22294c8b774be6f35a30ea3f6bd8795570e27f36fd5e4aa50297f269931fc80dd9b463e221dd83","tags":[["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://nos.lol/","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"],["e","a7cbab5256ad6198f583de1d648d9b2623ea86317373c41624b63cdc36e8fd1f","wss://nostr.oxtr.dev","reply"],["p","e45841bc9b795849c26b200fe8f25c8433ca89b6e283e1be48458d96f585dc53","","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","","mention"]]}] +[14:26:53.883] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:26:53.944] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:26:54.004] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:54.065] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:54.126] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:54.186] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:54.247] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:26:54.307] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:26:54.368] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:26:54.428] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:54.489] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:54.549] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:26:54.911] RECV nos.lol:443: 0ce4c3023510","tags":[["p","d9745145355cf334e327d679d4c53 +[14:26:56.058] RECV nos.lol:443: b3e333e6ed76a1e6"],["p","5c10ed0678805156d39ef1ef6d +[14:26:56.299] RECV nos.lol:443: 88656e165426436e3086c3c"],["p","af4bfa6b6d076853308 +[14:26:56.420] RECV nos.lol:443: 29540126f80dc"],["p","5f0d66bacc2313d42688ed847304c2b +[14:26:58.420] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:26:58.421] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:26:58.421] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:26:58.421] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:26:58.572] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’d be such a plot twist if we found out Sydney Sweeney was Satoshi ","created_at":1759429605,"id":"2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"d3d5b96ddc819ada26eb7a36cf3cd6eb022ce9f8f1e7d459daaa03558d91d3df0f12e2a7c0126e222bc25288b0a4f3f23beda4ea4474e768d77f5557562c905c","tags":[]}] +[14:26:58.582] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It definitely was. ","created_at":1759429603,"id":"c10f402ef7bedd1b390a4f741797defd5c64f815e274f3f3959ef4719a7b6662","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"1082591381f6a9b57173bec27ba50850249b642fc9a650ed382788d8d47de192c1748d9f8844d7af469789cd6da0351004e2149cb325ca67eac4c385c61f2a24","tags":[["alt","A short note: It definitely was. "],["e","de558be41da619edf952dfb83bb9c60f47f2e972d7b325968b1dbdd2409b254d","wss://henhouse.social/relay","root","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","dd6d5a4795062516691e32e2a54663c1f5fe87a118e65d4f570e83c12c751c52","wss://nostr.wine/","reply","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"],["p","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2","wss://relay.nostr.band/"]]}] +[14:26:58.643] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Hopefully without the tinfoil\n\nhttps://youtu.be/YLE85olJjp8?si=iAw0NqDZ4-BDNcAx \n\n","created_at":1759429600,"id":"1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"8d755f497463ddbd135d8855052a8c222405c0db27375adce88409a4898a21d4a9e3449ffd04c1e329ab9646e02433b373125f11865a29e18770bfc55ef77b18","tags":[]}] +[14:26:58.703] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"みんなが外で遊んでる時、俺はガブリアスの厳選して、リズム天国のリズム感を120にしてたんだな","created_at":1759429599,"id":"21b775d08a53e698aaee9d29d6be4dfdb374fc69b16a01ac4ffd5c24eed8ae4f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"2490f5dc77f5f47d56bfb6aae9097b70792ef0a17952f1416bc7bab849f10c590826124abde346ebb8f640dc9c3f0863fd89b2ac5906d345e97a726c1f878c9b","tags":[]}] +[14:26:58.764] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Core v30\n\nhttps://primal.net/e/nevent1qqs9zjj35rzru4zgurgpnq8nkpqz64tun3j9zh5vx9r75gc32zfx96qvnvkcg","created_at":1759429587,"id":"0b7ea4a6a4d9d1e314ff54138d9f9c3e63a2f94e55e692eb844a179b553f62f6","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"856d6c3fdf0cb61fda7edd049cbead7371aab95d99b7b6f3e8dca00dead741df18bd47750140c288ede9ac8a84947a7f341f5d9edc059edcfb4a60520ca75ed3","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:26:58.824] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"Cleaning\"...","created_at":1759429586,"id":"99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"b5bd8df5df92c9bb62b64b3e5d34d6705b37e14b5100ad43598e3e23809363f9f3fd205baf70eef37eb504fca802a577d1f9de010ec88b467a266216a858e151","tags":[["alt","A short note: \"Cleaning\"..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"]]}] +[14:26:58.885] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Done and dusted ","created_at":1759429579,"id":"c54acb3462b615be2862ef91077e4b55d4bdf4590d62227df2e832046a6d6290","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"73a90292c84af4891f9009a6221f96238f90e751f2bcdb0372249f6d827cee776d4186dab77675c6541093cfb4c4a642a0545eb68d7036a4aad50120fe24b343","tags":[["alt","A short note: Done and dusted "],["e","2b380dd348e170ff27c3dfbed133ec9abc62575108383be94f1d2ed7ec268740","wss://nostr.azzamo.net/","root","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","3a990e9d72ad99252c227c451a265fa063b866d6720d68dacb4903a58605216f","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:26:58.945] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Don’t laugh at my brother nostr:npub10mtatsat7ph6rsq0w8u8npt8d86x4jfr2nqjnvld2439q6f8ugqq0x27hf 😂","created_at":1759429579,"id":"f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"552b4fd3ead1c0788bbe787a1a088b3cedf41bfd93f4aa74f5288c4841c19b1a2699fe8d8bff2a22196a63b9fb42c25fb19eef031a54304f7666406e86347bf0","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200"]]}] +[14:26:59.005] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Only Dave can assist me ...","created_at":1759429578,"id":"92f9ec5fa4d5849b54e75d82b6feeaa75152cac6e985443aee68337e8bde97fc","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"a4f86e1fcc036ffe41064ea682fe6cbd92b6ce7660ffa677a8699a787bcebb8d4f39285ffc86f19231d2f1f4731043be46faef6802b927f49a44774517fce6ca","tags":[["alt","A short note: Only Dave can assist me ..."],["e","273784ee39316bda883e9b4de3e36439c61acc940e5c8a2af98d3faf3eccd2b4","wss://multiplexer.huszonegy.world/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:59.066] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ich bin nicht live, aber es trotzdem wird angezeigt als Ich live wäre. Ich kann den Stream weder stoppen noch neu starten","created_at":1759429576,"id":"5acb8491b03dddf13d937c1bcfb02c04209b50211a3fba85f016676fe004ba10","kind":1,"pubkey":"0b26f590631b0fa3048d103410e484e5e22e2d5a8eceaceda9d91b38f81dd1a8","sig":"d1c15312a4b2275be173cb155936865d1eba608ec0a5d26d3c22294c8b774be6f35a30ea3f6bd8795570e27f36fd5e4aa50297f269931fc80dd9b463e221dd83","tags":[["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://nos.lol/","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"],["e","a7cbab5256ad6198f583de1d648d9b2623ea86317373c41624b63cdc36e8fd1f","wss://nostr.oxtr.dev","reply"],["p","e45841bc9b795849c26b200fe8f25c8433ca89b6e283e1be48458d96f585dc53","","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","","mention"]]}] +[14:26:59.127] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:26:59.187] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:26:59.248] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:59.308] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:59.369] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:59.429] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:59.490] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:26:59.550] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:26:59.611] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:26:59.671] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:59.732] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:59.793] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:27:00.155] RECV nos.lol:443: 0ce4c3023510","tags":[["p","d9745145355cf334e327d679d4c53 +[14:27:01.303] RECV nos.lol:443: b3e333e6ed76a1e6"],["p","5c10ed0678805156d39ef1ef6d +[14:27:01.545] RECV nos.lol:443: 88656e165426436e3086c3c"],["p","af4bfa6b6d076853308 +[14:27:01.666] RECV nos.lol:443: 29540126f80dc"],["p","5f0d66bacc2313d42688ed847304c2b +[14:27:02.640] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:27:02.640] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:27:02.640] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:27:02.640] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:27:02.796] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"市しかないと思っとんのか","created_at":1759429620,"id":"ca397ac51250769aec4ceefe5b86aabccdf70adde24a21a26499af4b47281ea9","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"81a2ba8218fe2a1d0c9fdf351f74597519b075918faa0be1651404741ecca67dd77d4599b2cbb81f5735358a9f510c7250d4ba0087ced341fdd97e9dd6ca322c","tags":[]}] +[14:27:02.856] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","created_at":1759429619,"id":"a83bee75c0f66d35d1acc8d9d1b9e45a2288c83a25457dadadf632e7dd6110b7","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"4f24bf9fc37d2649a43445bfce59a39476434c5a5d42ce092f86c3a4d657889d36e8f984f1af72a399774f78de92926f28449b8ec500171f069b14454d413fae","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif"],["imeta","url https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","x a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","size 2155034","m image/gif","dim 360x203","blurhash i7D]n]?1Xgx44m=v#tg3oh3ai^xJ=#%gI;ICMdxa$[pCrFD~r{xc%2%MNF0JMxk=O9%3wiInS}WByCx]Di9DMxNFx]%NRk","ox a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","alt "]]}] +[14:27:02.917] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif","created_at":1759429618,"id":"754ed436e118d21f538dee1ce6a3309e62b35eee221199881762acc84b85b16a","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"218c541442fc590ca120ac42a6a9d9173f7b641168f7287e1586545d71136fbfd7b44e033d6ff170221d0544dcdd0f0dbbbdf51b35f4f788db75191f232bf6a6","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","","root"],["e","c8a37890146f6fad8e9b73cce7c5b3fa966df7e522f54b6102d6136d95264f5c","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","9f0bbd5b4dc7547496fcdb00feb631af638171e01e58e785b5dfd411779b33f6"],["r","https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif"]]}] +[14:27:02.978] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’d be such a plot twist if we found out Sydney Sweeney was Satoshi ","created_at":1759429605,"id":"2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"d3d5b96ddc819ada26eb7a36cf3cd6eb022ce9f8f1e7d459daaa03558d91d3df0f12e2a7c0126e222bc25288b0a4f3f23beda4ea4474e768d77f5557562c905c","tags":[]}] +[14:27:03.038] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It definitely was. ","created_at":1759429603,"id":"c10f402ef7bedd1b390a4f741797defd5c64f815e274f3f3959ef4719a7b6662","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"1082591381f6a9b57173bec27ba50850249b642fc9a650ed382788d8d47de192c1748d9f8844d7af469789cd6da0351004e2149cb325ca67eac4c385c61f2a24","tags":[["alt","A short note: It definitely was. "],["e","de558be41da619edf952dfb83bb9c60f47f2e972d7b325968b1dbdd2409b254d","wss://henhouse.social/relay","root","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","dd6d5a4795062516691e32e2a54663c1f5fe87a118e65d4f570e83c12c751c52","wss://nostr.wine/","reply","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"],["p","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2","wss://relay.nostr.band/"]]}] +[14:27:03.099] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Hopefully without the tinfoil\n\nhttps://youtu.be/YLE85olJjp8?si=iAw0NqDZ4-BDNcAx \n\n","created_at":1759429600,"id":"1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"8d755f497463ddbd135d8855052a8c222405c0db27375adce88409a4898a21d4a9e3449ffd04c1e329ab9646e02433b373125f11865a29e18770bfc55ef77b18","tags":[]}] +[14:27:03.125] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"みんなが外で遊んでる時、俺はガブリアスの厳選して、リズム天国のリズム感を120にしてたんだな","created_at":1759429599,"id":"21b775d08a53e698aaee9d29d6be4dfdb374fc69b16a01ac4ffd5c24eed8ae4f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"2490f5dc77f5f47d56bfb6aae9097b70792ef0a17952f1416bc7bab849f10c590826124abde346ebb8f640dc9c3f0863fd89b2ac5906d345e97a726c1f878c9b","tags":[]}] +[14:27:03.185] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Core v30\n\nhttps://primal.net/e/nevent1qqs9zjj35rzru4zgurgpnq8nkpqz64tun3j9zh5vx9r75gc32zfx96qvnvkcg","created_at":1759429587,"id":"0b7ea4a6a4d9d1e314ff54138d9f9c3e63a2f94e55e692eb844a179b553f62f6","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"856d6c3fdf0cb61fda7edd049cbead7371aab95d99b7b6f3e8dca00dead741df18bd47750140c288ede9ac8a84947a7f341f5d9edc059edcfb4a60520ca75ed3","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:27:03.246] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"Cleaning\"...","created_at":1759429586,"id":"99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"b5bd8df5df92c9bb62b64b3e5d34d6705b37e14b5100ad43598e3e23809363f9f3fd205baf70eef37eb504fca802a577d1f9de010ec88b467a266216a858e151","tags":[["alt","A short note: \"Cleaning\"..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"]]}] +[14:27:03.306] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Done and dusted ","created_at":1759429579,"id":"c54acb3462b615be2862ef91077e4b55d4bdf4590d62227df2e832046a6d6290","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"73a90292c84af4891f9009a6221f96238f90e751f2bcdb0372249f6d827cee776d4186dab77675c6541093cfb4c4a642a0545eb68d7036a4aad50120fe24b343","tags":[["alt","A short note: Done and dusted "],["e","2b380dd348e170ff27c3dfbed133ec9abc62575108383be94f1d2ed7ec268740","wss://nostr.azzamo.net/","root","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","3a990e9d72ad99252c227c451a265fa063b866d6720d68dacb4903a58605216f","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:27:03.367] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:27:03.427] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:27:03.488] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:03.548] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:03.609] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:03.669] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:03.730] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:27:03.790] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:27:03.851] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:27:03.911] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:03.972] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:04.033] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:27:04.395] RECV nos.lol:443: \":true}}","created_at":1759429622,"id":"1b3f0c9a12e41b899cc189fdf6bf9a0c3fe53dcc4d7c79f0656fdca8a61 +[14:27:04.757] RECV nos.lol:443: e7db4a0f0264a7a176f6dcd426cc66180651bc01bdfa9b77 +[14:27:05.180] RECV nos.lol:443: cb6853cd0ee15deee93"],["p","6d3b525b66dd3452a576aca51589162e84f63813374186b76957f000b2aedc42"],[" +[14:27:05.966] RECV nos.lol:443: db00b69948f4a48ec18faa12956f281c9f20390204a0901c"], +[14:27:06.509] RECV nos.lol:443: 0b23"],["p","41b93cde3bb1bfb51d287f0cc50161382b31aaf5f5a6ad0c090a99373d018bf9"],["p","04c915daefee3831 +[14:27:06.751] RECV nos.lol:443: ],["p","6aaed493c0de0cd56a123df8da +[14:27:06.992] RECV nos.lol:443: c05561b0c47c32e1450512b1"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3"],[ +[14:27:08.269] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:27:08.269] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:27:08.269] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:27:08.269] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:27:08.420] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/938d22f80a8c580fa4018ab417532dac062e939e56273d07863915abd9a74674.jpg","created_at":1759429626,"id":"eac6fdc110e172140dc4895dce211308ec7045246f398e912a650938dc2bff44","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"9e1211291bf15f3b8cff630801bcc5eb6931f620ccb1ffcdf21c332a2dd51c6f2fab3fd20be963d4d7fa238a992b1f4897cc82f8d2552c194ba3acfd10f472c8","tags":[]}] +[14:27:08.431] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amazing product!!! And the best \nthing, I payed with bitcoin. \nCircular economy folks! \n\n@SoapMiner \n⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️\n\n#bitcoin #nostr\n\nhttps://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","created_at":1759429625,"id":"4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"6304cfa268da8c04d4435a3ad30c336ea7faea5dc998bbeec2f958b42a0990890a7ea801de81f2573a0df921d43c4f46cbd5edec57e906317981b21782b20fd3","tags":[["imeta","url https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","blurhash eULMYFrE^kVZ-:_MWVjut7WVTdR*X4X8R*%gX8Rjs:af^kxaIoWVRk","dim 3024x4032"],["t","bitcoin"],["t","nostr"],["r","https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg"]]}] +[14:27:08.491] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"市しかないと思っとんのか","created_at":1759429620,"id":"ca397ac51250769aec4ceefe5b86aabccdf70adde24a21a26499af4b47281ea9","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"81a2ba8218fe2a1d0c9fdf351f74597519b075918faa0be1651404741ecca67dd77d4599b2cbb81f5735358a9f510c7250d4ba0087ced341fdd97e9dd6ca322c","tags":[]}] +[14:27:08.552] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","created_at":1759429619,"id":"a83bee75c0f66d35d1acc8d9d1b9e45a2288c83a25457dadadf632e7dd6110b7","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"4f24bf9fc37d2649a43445bfce59a39476434c5a5d42ce092f86c3a4d657889d36e8f984f1af72a399774f78de92926f28449b8ec500171f069b14454d413fae","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif"],["imeta","url https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","x a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","size 2155034","m image/gif","dim 360x203","blurhash i7D]n]?1Xgx44m=v#tg3oh3ai^xJ=#%gI;ICMdxa$[pCrFD~r{xc%2%MNF0JMxk=O9%3wiInS}WByCx]Di9DMxNFx]%NRk","ox a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","alt "]]}] +[14:27:08.612] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd I think nostur on iOS.","created_at":1759429618,"id":"2d3313a310e5587f0ca2c86d0b53f73e9524764a03a617c457701e38c9960659","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"242e1f7cf57a1f07cb94cc4abe87ef75cfbbc3fd42e552f5836a3d04045804bca84115782228b5e1500263ca1d51558c79b3f57018d1865172905b3990823849","tags":[["alt","A short note: Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://relay.primal.net/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["e","68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","wss://wheat.happytavern.co/","reply","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["p","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","wss://nostr.land/"],["r","https://github.com/haorendashu/nostrmo"]]}] +[14:27:08.673] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif","created_at":1759429618,"id":"754ed436e118d21f538dee1ce6a3309e62b35eee221199881762acc84b85b16a","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"218c541442fc590ca120ac42a6a9d9173f7b641168f7287e1586545d71136fbfd7b44e033d6ff170221d0544dcdd0f0dbbbdf51b35f4f788db75191f232bf6a6","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","","root"],["e","c8a37890146f6fad8e9b73cce7c5b3fa966df7e522f54b6102d6136d95264f5c","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","9f0bbd5b4dc7547496fcdb00feb631af638171e01e58e785b5dfd411779b33f6"],["r","https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif"]]}] +[14:27:08.734] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’d be such a plot twist if we found out Sydney Sweeney was Satoshi ","created_at":1759429605,"id":"2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"d3d5b96ddc819ada26eb7a36cf3cd6eb022ce9f8f1e7d459daaa03558d91d3df0f12e2a7c0126e222bc25288b0a4f3f23beda4ea4474e768d77f5557562c905c","tags":[]}] +[14:27:08.794] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It definitely was. ","created_at":1759429603,"id":"c10f402ef7bedd1b390a4f741797defd5c64f815e274f3f3959ef4719a7b6662","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"1082591381f6a9b57173bec27ba50850249b642fc9a650ed382788d8d47de192c1748d9f8844d7af469789cd6da0351004e2149cb325ca67eac4c385c61f2a24","tags":[["alt","A short note: It definitely was. "],["e","de558be41da619edf952dfb83bb9c60f47f2e972d7b325968b1dbdd2409b254d","wss://henhouse.social/relay","root","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","dd6d5a4795062516691e32e2a54663c1f5fe87a118e65d4f570e83c12c751c52","wss://nostr.wine/","reply","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"],["p","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2","wss://relay.nostr.band/"]]}] +[14:27:08.855] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Hopefully without the tinfoil\n\nhttps://youtu.be/YLE85olJjp8?si=iAw0NqDZ4-BDNcAx \n\n","created_at":1759429600,"id":"1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"8d755f497463ddbd135d8855052a8c222405c0db27375adce88409a4898a21d4a9e3449ffd04c1e329ab9646e02433b373125f11865a29e18770bfc55ef77b18","tags":[]}] +[14:27:08.915] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Good morning.","created_at":1759429599,"id":"e67f0dc4866a8e9b2742626c8a38618b31af298db2d2b44f4059aa6982f1f222","kind":1,"pubkey":"655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca","sig":"15c00a83e8c3978b7feb64848b7edba5d05c18a6ca0d09cd6ceedd32ca05888f37f198a12c32bc41dda80eeba2d15e1c28db7c8be595bec5e0688268aee93208","tags":[["alt","A short note: Good morning."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.damus.io/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:27:08.976] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:27:09.036] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:27:09.097] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:09.157] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:09.218] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:09.279] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:09.339] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:27:09.400] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:27:09.460] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:27:09.521] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:09.581] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:09.642] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:27:10.005] RECV nos.lol:443: \":true}}","created_at":1759429622,"id":"1b3f0c9a12e41b899cc189fdf6bf9a0c3fe53dcc4d7c79f0656fdca8a61 +[14:27:10.367] RECV nos.lol:443: e7db4a0f0264a7a176f6dcd426cc66180651bc01bdfa9b77 +[14:27:10.790] RECV nos.lol:443: cb6853cd0ee15deee93"],["p","6d3b525b66dd3452a576aca51589162e84f63813374186b76957f000b2aedc42"],[" +[14:27:11.576] RECV nos.lol:443: db00b69948f4a48ec18faa12956f281c9f20390204a0901c"], +[14:27:12.120] RECV nos.lol:443: 0b23"],["p","41b93cde3bb1bfb51d287f0cc50161382b31aaf5f5a6ad0c090a99373d018bf9"],["p","04c915daefee3831 +[14:27:12.362] RECV nos.lol:443: ],["p","6aaed493c0de0cd56a123df8da +[14:27:12.604] RECV nos.lol:443: c05561b0c47c32e1450512b1"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3"],[ +[14:27:13.846] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:27:13.846] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:27:13.846] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:27:13.846] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:27:13.998] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/938d22f80a8c580fa4018ab417532dac062e939e56273d07863915abd9a74674.jpg","created_at":1759429626,"id":"eac6fdc110e172140dc4895dce211308ec7045246f398e912a650938dc2bff44","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"9e1211291bf15f3b8cff630801bcc5eb6931f620ccb1ffcdf21c332a2dd51c6f2fab3fd20be963d4d7fa238a992b1f4897cc82f8d2552c194ba3acfd10f472c8","tags":[]}] +[14:27:14.058] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amazing product!!! And the best \nthing, I payed with bitcoin. \nCircular economy folks! \n\n@SoapMiner \n⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️\n\n#bitcoin #nostr\n\nhttps://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","created_at":1759429625,"id":"4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"6304cfa268da8c04d4435a3ad30c336ea7faea5dc998bbeec2f958b42a0990890a7ea801de81f2573a0df921d43c4f46cbd5edec57e906317981b21782b20fd3","tags":[["imeta","url https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","blurhash eULMYFrE^kVZ-:_MWVjut7WVTdR*X4X8R*%gX8Rjs:af^kxaIoWVRk","dim 3024x4032"],["t","bitcoin"],["t","nostr"],["r","https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg"]]}] +[14:27:14.119] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"市しかないと思っとんのか","created_at":1759429620,"id":"ca397ac51250769aec4ceefe5b86aabccdf70adde24a21a26499af4b47281ea9","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"81a2ba8218fe2a1d0c9fdf351f74597519b075918faa0be1651404741ecca67dd77d4599b2cbb81f5735358a9f510c7250d4ba0087ced341fdd97e9dd6ca322c","tags":[]}] +[14:27:14.179] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","created_at":1759429619,"id":"a83bee75c0f66d35d1acc8d9d1b9e45a2288c83a25457dadadf632e7dd6110b7","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"4f24bf9fc37d2649a43445bfce59a39476434c5a5d42ce092f86c3a4d657889d36e8f984f1af72a399774f78de92926f28449b8ec500171f069b14454d413fae","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif"],["imeta","url https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","x a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","size 2155034","m image/gif","dim 360x203","blurhash i7D]n]?1Xgx44m=v#tg3oh3ai^xJ=#%gI;ICMdxa$[pCrFD~r{xc%2%MNF0JMxk=O9%3wiInS}WByCx]Di9DMxNFx]%NRk","ox a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","alt "]]}] +[14:27:14.240] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd I think nostur on iOS.","created_at":1759429618,"id":"2d3313a310e5587f0ca2c86d0b53f73e9524764a03a617c457701e38c9960659","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"242e1f7cf57a1f07cb94cc4abe87ef75cfbbc3fd42e552f5836a3d04045804bca84115782228b5e1500263ca1d51558c79b3f57018d1865172905b3990823849","tags":[["alt","A short note: Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://relay.primal.net/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["e","68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","wss://wheat.happytavern.co/","reply","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["p","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","wss://nostr.land/"],["r","https://github.com/haorendashu/nostrmo"]]}] +[14:27:14.301] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif","created_at":1759429618,"id":"754ed436e118d21f538dee1ce6a3309e62b35eee221199881762acc84b85b16a","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"218c541442fc590ca120ac42a6a9d9173f7b641168f7287e1586545d71136fbfd7b44e033d6ff170221d0544dcdd0f0dbbbdf51b35f4f788db75191f232bf6a6","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","","root"],["e","c8a37890146f6fad8e9b73cce7c5b3fa966df7e522f54b6102d6136d95264f5c","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","9f0bbd5b4dc7547496fcdb00feb631af638171e01e58e785b5dfd411779b33f6"],["r","https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif"]]}] +[14:27:14.361] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’d be such a plot twist if we found out Sydney Sweeney was Satoshi ","created_at":1759429605,"id":"2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"d3d5b96ddc819ada26eb7a36cf3cd6eb022ce9f8f1e7d459daaa03558d91d3df0f12e2a7c0126e222bc25288b0a4f3f23beda4ea4474e768d77f5557562c905c","tags":[]}] +[14:27:14.422] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It definitely was. ","created_at":1759429603,"id":"c10f402ef7bedd1b390a4f741797defd5c64f815e274f3f3959ef4719a7b6662","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"1082591381f6a9b57173bec27ba50850249b642fc9a650ed382788d8d47de192c1748d9f8844d7af469789cd6da0351004e2149cb325ca67eac4c385c61f2a24","tags":[["alt","A short note: It definitely was. "],["e","de558be41da619edf952dfb83bb9c60f47f2e972d7b325968b1dbdd2409b254d","wss://henhouse.social/relay","root","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","dd6d5a4795062516691e32e2a54663c1f5fe87a118e65d4f570e83c12c751c52","wss://nostr.wine/","reply","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"],["p","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2","wss://relay.nostr.band/"]]}] +[14:27:14.482] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Hopefully without the tinfoil\n\nhttps://youtu.be/YLE85olJjp8?si=iAw0NqDZ4-BDNcAx \n\n","created_at":1759429600,"id":"1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"8d755f497463ddbd135d8855052a8c222405c0db27375adce88409a4898a21d4a9e3449ffd04c1e329ab9646e02433b373125f11865a29e18770bfc55ef77b18","tags":[]}] +[14:27:14.543] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Good morning.","created_at":1759429599,"id":"e67f0dc4866a8e9b2742626c8a38618b31af298db2d2b44f4059aa6982f1f222","kind":1,"pubkey":"655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca","sig":"15c00a83e8c3978b7feb64848b7edba5d05c18a6ca0d09cd6ceedd32ca05888f37f198a12c32bc41dda80eeba2d15e1c28db7c8be595bec5e0688268aee93208","tags":[["alt","A short note: Good morning."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.damus.io/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:27:14.603] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:27:14.664] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:27:14.724] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:14.785] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:14.846] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:14.906] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:14.967] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:27:15.027] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:27:15.088] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:27:15.148] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:15.209] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:15.269] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:27:15.632] RECV nos.lol:443: \":true}}","created_at":1759429622,"id":"1b3f0c9a12e41b899cc189fdf6bf9a0c3fe53dcc4d7c79f0656fdca8a61 +[14:27:15.994] RECV nos.lol:443: e7db4a0f0264a7a176f6dcd426cc66180651bc01bdfa9b77 +[14:27:16.418] RECV nos.lol:443: cb6853cd0ee15deee93"],["p","6d3b525b66dd3452a576aca51589162e84f63813374186b76957f000b2aedc42"],[" +[14:27:17.203] RECV nos.lol:443: db00b69948f4a48ec18faa12956f281c9f20390204a0901c"], +[14:27:17.747] RECV nos.lol:443: 0b23"],["p","41b93cde3bb1bfb51d287f0cc50161382b31aaf5f5a6ad0c090a99373d018bf9"],["p","04c915daefee3831 +[14:27:17.989] RECV nos.lol:443: ],["p","6aaed493c0de0cd56a123df8da +[14:27:18.196] RECV nos.lol:443: c05561b0c47c32e1450512b1"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3"],[ +[14:27:19.479] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:27:19.480] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:27:19.480] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:27:19.480] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:27:19.632] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/938d22f80a8c580fa4018ab417532dac062e939e56273d07863915abd9a74674.jpg","created_at":1759429626,"id":"eac6fdc110e172140dc4895dce211308ec7045246f398e912a650938dc2bff44","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"9e1211291bf15f3b8cff630801bcc5eb6931f620ccb1ffcdf21c332a2dd51c6f2fab3fd20be963d4d7fa238a992b1f4897cc82f8d2552c194ba3acfd10f472c8","tags":[]}] +[14:27:19.692] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amazing product!!! And the best \nthing, I payed with bitcoin. \nCircular economy folks! \n\n@SoapMiner \n⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️\n\n#bitcoin #nostr\n\nhttps://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","created_at":1759429625,"id":"4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"6304cfa268da8c04d4435a3ad30c336ea7faea5dc998bbeec2f958b42a0990890a7ea801de81f2573a0df921d43c4f46cbd5edec57e906317981b21782b20fd3","tags":[["imeta","url https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","blurhash eULMYFrE^kVZ-:_MWVjut7WVTdR*X4X8R*%gX8Rjs:af^kxaIoWVRk","dim 3024x4032"],["t","bitcoin"],["t","nostr"],["r","https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg"]]}] +[14:27:19.753] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"市しかないと思っとんのか","created_at":1759429620,"id":"ca397ac51250769aec4ceefe5b86aabccdf70adde24a21a26499af4b47281ea9","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"81a2ba8218fe2a1d0c9fdf351f74597519b075918faa0be1651404741ecca67dd77d4599b2cbb81f5735358a9f510c7250d4ba0087ced341fdd97e9dd6ca322c","tags":[]}] +[14:27:19.813] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","created_at":1759429619,"id":"a83bee75c0f66d35d1acc8d9d1b9e45a2288c83a25457dadadf632e7dd6110b7","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"4f24bf9fc37d2649a43445bfce59a39476434c5a5d42ce092f86c3a4d657889d36e8f984f1af72a399774f78de92926f28449b8ec500171f069b14454d413fae","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif"],["imeta","url https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","x a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","size 2155034","m image/gif","dim 360x203","blurhash i7D]n]?1Xgx44m=v#tg3oh3ai^xJ=#%gI;ICMdxa$[pCrFD~r{xc%2%MNF0JMxk=O9%3wiInS}WByCx]Di9DMxNFx]%NRk","ox a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","alt "]]}] +[14:27:19.874] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd I think nostur on iOS.","created_at":1759429618,"id":"2d3313a310e5587f0ca2c86d0b53f73e9524764a03a617c457701e38c9960659","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"242e1f7cf57a1f07cb94cc4abe87ef75cfbbc3fd42e552f5836a3d04045804bca84115782228b5e1500263ca1d51558c79b3f57018d1865172905b3990823849","tags":[["alt","A short note: Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://relay.primal.net/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["e","68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","wss://wheat.happytavern.co/","reply","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["p","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","wss://nostr.land/"],["r","https://github.com/haorendashu/nostrmo"]]}] +[14:27:19.934] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif","created_at":1759429618,"id":"754ed436e118d21f538dee1ce6a3309e62b35eee221199881762acc84b85b16a","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"218c541442fc590ca120ac42a6a9d9173f7b641168f7287e1586545d71136fbfd7b44e033d6ff170221d0544dcdd0f0dbbbdf51b35f4f788db75191f232bf6a6","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","","root"],["e","c8a37890146f6fad8e9b73cce7c5b3fa966df7e522f54b6102d6136d95264f5c","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","9f0bbd5b4dc7547496fcdb00feb631af638171e01e58e785b5dfd411779b33f6"],["r","https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif"]]}] +[14:27:19.995] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’d be such a plot twist if we found out Sydney Sweeney was Satoshi ","created_at":1759429605,"id":"2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"d3d5b96ddc819ada26eb7a36cf3cd6eb022ce9f8f1e7d459daaa03558d91d3df0f12e2a7c0126e222bc25288b0a4f3f23beda4ea4474e768d77f5557562c905c","tags":[]}] +[14:27:20.055] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It definitely was. ","created_at":1759429603,"id":"c10f402ef7bedd1b390a4f741797defd5c64f815e274f3f3959ef4719a7b6662","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"1082591381f6a9b57173bec27ba50850249b642fc9a650ed382788d8d47de192c1748d9f8844d7af469789cd6da0351004e2149cb325ca67eac4c385c61f2a24","tags":[["alt","A short note: It definitely was. "],["e","de558be41da619edf952dfb83bb9c60f47f2e972d7b325968b1dbdd2409b254d","wss://henhouse.social/relay","root","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","dd6d5a4795062516691e32e2a54663c1f5fe87a118e65d4f570e83c12c751c52","wss://nostr.wine/","reply","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"],["p","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2","wss://relay.nostr.band/"]]}] +[14:27:20.116] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Hopefully without the tinfoil\n\nhttps://youtu.be/YLE85olJjp8?si=iAw0NqDZ4-BDNcAx \n\n","created_at":1759429600,"id":"1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"8d755f497463ddbd135d8855052a8c222405c0db27375adce88409a4898a21d4a9e3449ffd04c1e329ab9646e02433b373125f11865a29e18770bfc55ef77b18","tags":[]}] +[14:27:20.177] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Good morning.","created_at":1759429599,"id":"e67f0dc4866a8e9b2742626c8a38618b31af298db2d2b44f4059aa6982f1f222","kind":1,"pubkey":"655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca","sig":"15c00a83e8c3978b7feb64848b7edba5d05c18a6ca0d09cd6ceedd32ca05888f37f198a12c32bc41dda80eeba2d15e1c28db7c8be595bec5e0688268aee93208","tags":[["alt","A short note: Good morning."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.damus.io/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:27:20.237] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:27:20.298] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:27:20.358] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:20.419] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:20.479] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:20.540] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:20.600] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:27:20.661] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:27:20.721] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:27:20.782] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:20.842] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:20.903] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:27:21.265] RECV nos.lol:443: \":true}}","created_at":1759429622,"id":"1b3f0c9a12e41b899cc189fdf6bf9a0c3fe53dcc4d7c79f0656fdca8a61 +[14:27:21.628] RECV nos.lol:443: e7db4a0f0264a7a176f6dcd426cc66180651bc01bdfa9b77 +[14:27:22.051] RECV nos.lol:443: cb6853cd0ee15deee93"],["p","6d3b525b66dd3452a576aca51589162e84f63813374186b76957f000b2aedc42"],[" +[14:27:22.835] RECV nos.lol:443: db00b69948f4a48ec18faa12956f281c9f20390204a0901c"], +[14:27:23.344] RECV nos.lol:443: 0b23"],["p","41b93cde3bb1bfb51d287f0cc50161382b31aaf5f5a6ad0c090a99373d018bf9"],["p","04c915daefee3831 +[14:27:23.586] RECV nos.lol:443: ],["p","6aaed493c0de0cd56a123df8da +[14:27:23.827] RECV nos.lol:443: c05561b0c47c32e1450512b1"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3"],[ +[14:27:25.099] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:27:25.099] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:27:25.099] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:27:25.099] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:27:25.250] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか檻があって、捕まるとぶち込まれるけど、捕まってない人が檻の中の人タッチすると逃げれるみたいな","created_at":1759429640,"id":"50ef232680e428b2df198564dcfffd37fe001042ec84a90e9acfcdfb1578f83e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"54f278e270dad6a9d76e702f28558ca4a35a3e38dfc83c66fad356ab73cd07ea9152aa12311f57741a1383a4cfeb8d62c8d720286834bb2953a41af68c212ac2","tags":[]}] +[14:27:25.311] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/938d22f80a8c580fa4018ab417532dac062e939e56273d07863915abd9a74674.jpg","created_at":1759429626,"id":"eac6fdc110e172140dc4895dce211308ec7045246f398e912a650938dc2bff44","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"9e1211291bf15f3b8cff630801bcc5eb6931f620ccb1ffcdf21c332a2dd51c6f2fab3fd20be963d4d7fa238a992b1f4897cc82f8d2552c194ba3acfd10f472c8","tags":[]}] +[14:27:25.372] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amazing product!!! And the best \nthing, I payed with bitcoin. \nCircular economy folks! \n\n@SoapMiner \n⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️\n\n#bitcoin #nostr\n\nhttps://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","created_at":1759429625,"id":"4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"6304cfa268da8c04d4435a3ad30c336ea7faea5dc998bbeec2f958b42a0990890a7ea801de81f2573a0df921d43c4f46cbd5edec57e906317981b21782b20fd3","tags":[["imeta","url https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","blurhash eULMYFrE^kVZ-:_MWVjut7WVTdR*X4X8R*%gX8Rjs:af^kxaIoWVRk","dim 3024x4032"],["t","bitcoin"],["t","nostr"],["r","https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg"]]}] +[14:27:25.432] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"市しかないと思っとんのか","created_at":1759429620,"id":"ca397ac51250769aec4ceefe5b86aabccdf70adde24a21a26499af4b47281ea9","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"81a2ba8218fe2a1d0c9fdf351f74597519b075918faa0be1651404741ecca67dd77d4599b2cbb81f5735358a9f510c7250d4ba0087ced341fdd97e9dd6ca322c","tags":[]}] +[14:27:25.493] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","created_at":1759429619,"id":"a83bee75c0f66d35d1acc8d9d1b9e45a2288c83a25457dadadf632e7dd6110b7","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"4f24bf9fc37d2649a43445bfce59a39476434c5a5d42ce092f86c3a4d657889d36e8f984f1af72a399774f78de92926f28449b8ec500171f069b14454d413fae","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif"],["imeta","url https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","x a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","size 2155034","m image/gif","dim 360x203","blurhash i7D]n]?1Xgx44m=v#tg3oh3ai^xJ=#%gI;ICMdxa$[pCrFD~r{xc%2%MNF0JMxk=O9%3wiInS}WByCx]Di9DMxNFx]%NRk","ox a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","alt "]]}] +[14:27:25.553] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd I think nostur on iOS.","created_at":1759429618,"id":"2d3313a310e5587f0ca2c86d0b53f73e9524764a03a617c457701e38c9960659","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"242e1f7cf57a1f07cb94cc4abe87ef75cfbbc3fd42e552f5836a3d04045804bca84115782228b5e1500263ca1d51558c79b3f57018d1865172905b3990823849","tags":[["alt","A short note: Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://relay.primal.net/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["e","68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","wss://wheat.happytavern.co/","reply","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["p","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","wss://nostr.land/"],["r","https://github.com/haorendashu/nostrmo"]]}] +[14:27:25.614] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif","created_at":1759429618,"id":"754ed436e118d21f538dee1ce6a3309e62b35eee221199881762acc84b85b16a","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"218c541442fc590ca120ac42a6a9d9173f7b641168f7287e1586545d71136fbfd7b44e033d6ff170221d0544dcdd0f0dbbbdf51b35f4f788db75191f232bf6a6","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","","root"],["e","c8a37890146f6fad8e9b73cce7c5b3fa966df7e522f54b6102d6136d95264f5c","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","9f0bbd5b4dc7547496fcdb00feb631af638171e01e58e785b5dfd411779b33f6"],["r","https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif"]]}] +[14:27:25.674] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’d be such a plot twist if we found out Sydney Sweeney was Satoshi ","created_at":1759429605,"id":"2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"d3d5b96ddc819ada26eb7a36cf3cd6eb022ce9f8f1e7d459daaa03558d91d3df0f12e2a7c0126e222bc25288b0a4f3f23beda4ea4474e768d77f5557562c905c","tags":[]}] +[14:27:25.735] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It definitely was. ","created_at":1759429603,"id":"c10f402ef7bedd1b390a4f741797defd5c64f815e274f3f3959ef4719a7b6662","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"1082591381f6a9b57173bec27ba50850249b642fc9a650ed382788d8d47de192c1748d9f8844d7af469789cd6da0351004e2149cb325ca67eac4c385c61f2a24","tags":[["alt","A short note: It definitely was. "],["e","de558be41da619edf952dfb83bb9c60f47f2e972d7b325968b1dbdd2409b254d","wss://henhouse.social/relay","root","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","dd6d5a4795062516691e32e2a54663c1f5fe87a118e65d4f570e83c12c751c52","wss://nostr.wine/","reply","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"],["p","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2","wss://relay.nostr.band/"]]}] +[14:27:25.795] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Hopefully without the tinfoil\n\nhttps://youtu.be/YLE85olJjp8?si=iAw0NqDZ4-BDNcAx \n\n","created_at":1759429600,"id":"1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"8d755f497463ddbd135d8855052a8c222405c0db27375adce88409a4898a21d4a9e3449ffd04c1e329ab9646e02433b373125f11865a29e18770bfc55ef77b18","tags":[]}] +[14:27:25.856] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:27:25.917] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:27:25.977] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:26.038] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:26.098] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:26.159] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:26.219] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:27:26.280] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:27:26.340] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:27:26.401] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:26.461] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:26.522] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:27:26.885] RECV nos.lol:443: \":true}}","created_at":1759429622,"id":"1b3f0c9a12e41b899cc189fdf6bf9a0c3fe53dcc4d7c79f0656fdca8a61 +[14:27:27.247] RECV nos.lol:443: e7db4a0f0264a7a176f6dcd426cc66180651bc01bdfa9b77 +[14:27:27.670] RECV nos.lol:443: cb6853cd0ee15deee93"],["p","6d3b525b66dd3452a576aca51589162e84f63813374186b76957f000b2aedc42"],[" +[14:27:28.419] RECV nos.lol:443: db00b69948f4a48ec18faa12956f281c9f20390204a0901c"], +[14:27:28.963] RECV nos.lol:443: 0b23"],["p","41b93cde3bb1bfb51d287f0cc50161382b31aaf5f5a6ad0c090a99373d018bf9"],["p","04c915daefee3831 +[14:27:29.204] RECV nos.lol:443: ],["p","6aaed493c0de0cd56a123df8da +[14:27:29.446] RECV nos.lol:443: c05561b0c47c32e1450512b1"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3"],[ +[14:27:30.725] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:27:30.725] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:27:30.725] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:27:30.725] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:27:30.877] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Drowning in apps and “privacy tools” lists?\nKeep it simple. \n\nA short, realistic plan with clear habits beats complexity. You don’t need to be a ghost or a spy—just consistent.\n\n#Privacy is security, and you can handle it.","created_at":1759429648,"id":"932dadd1ef77730f98d43859a730df93c6b7a68fa99e263d35ea9b9719a61bb3","kind":1,"pubkey":"70441609369d77ea553d805ee9af58b29e4c39d5b08b3956741839c2f3feebcc","sig":"f223361635c3ac1cc5a03510167ba9c7cdd493def02418b651f05c751099fa8204a95fc9b57be9996e4fc5b07157d90fb9b65acf8781722d2621802c1ad84ac9","tags":[["t","privacy"]]}] +[14:27:30.938] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか檻があって、捕まるとぶち込まれるけど、捕まってない人が檻の中の人タッチすると逃げれるみたいな","created_at":1759429640,"id":"50ef232680e428b2df198564dcfffd37fe001042ec84a90e9acfcdfb1578f83e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"54f278e270dad6a9d76e702f28558ca4a35a3e38dfc83c66fad356ab73cd07ea9152aa12311f57741a1383a4cfeb8d62c8d720286834bb2953a41af68c212ac2","tags":[]}] +[14:27:30.999] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/938d22f80a8c580fa4018ab417532dac062e939e56273d07863915abd9a74674.jpg","created_at":1759429626,"id":"eac6fdc110e172140dc4895dce211308ec7045246f398e912a650938dc2bff44","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"9e1211291bf15f3b8cff630801bcc5eb6931f620ccb1ffcdf21c332a2dd51c6f2fab3fd20be963d4d7fa238a992b1f4897cc82f8d2552c194ba3acfd10f472c8","tags":[]}] +[14:27:31.059] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amazing product!!! And the best \nthing, I payed with bitcoin. \nCircular economy folks! \n\n@SoapMiner \n⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️\n\n#bitcoin #nostr\n\nhttps://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","created_at":1759429625,"id":"4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"6304cfa268da8c04d4435a3ad30c336ea7faea5dc998bbeec2f958b42a0990890a7ea801de81f2573a0df921d43c4f46cbd5edec57e906317981b21782b20fd3","tags":[["imeta","url https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","blurhash eULMYFrE^kVZ-:_MWVjut7WVTdR*X4X8R*%gX8Rjs:af^kxaIoWVRk","dim 3024x4032"],["t","bitcoin"],["t","nostr"],["r","https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg"]]}] +[14:27:31.120] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"市しかないと思っとんのか","created_at":1759429620,"id":"ca397ac51250769aec4ceefe5b86aabccdf70adde24a21a26499af4b47281ea9","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"81a2ba8218fe2a1d0c9fdf351f74597519b075918faa0be1651404741ecca67dd77d4599b2cbb81f5735358a9f510c7250d4ba0087ced341fdd97e9dd6ca322c","tags":[]}] +[14:27:31.180] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","created_at":1759429619,"id":"a83bee75c0f66d35d1acc8d9d1b9e45a2288c83a25457dadadf632e7dd6110b7","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"4f24bf9fc37d2649a43445bfce59a39476434c5a5d42ce092f86c3a4d657889d36e8f984f1af72a399774f78de92926f28449b8ec500171f069b14454d413fae","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif"],["imeta","url https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","x a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","size 2155034","m image/gif","dim 360x203","blurhash i7D]n]?1Xgx44m=v#tg3oh3ai^xJ=#%gI;ICMdxa$[pCrFD~r{xc%2%MNF0JMxk=O9%3wiInS}WByCx]Di9DMxNFx]%NRk","ox a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","alt "]]}] +[14:27:31.241] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd I think nostur on iOS.","created_at":1759429618,"id":"2d3313a310e5587f0ca2c86d0b53f73e9524764a03a617c457701e38c9960659","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"242e1f7cf57a1f07cb94cc4abe87ef75cfbbc3fd42e552f5836a3d04045804bca84115782228b5e1500263ca1d51558c79b3f57018d1865172905b3990823849","tags":[["alt","A short note: Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://relay.primal.net/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["e","68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","wss://wheat.happytavern.co/","reply","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["p","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","wss://nostr.land/"],["r","https://github.com/haorendashu/nostrmo"]]}] +[14:27:31.301] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif","created_at":1759429618,"id":"754ed436e118d21f538dee1ce6a3309e62b35eee221199881762acc84b85b16a","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"218c541442fc590ca120ac42a6a9d9173f7b641168f7287e1586545d71136fbfd7b44e033d6ff170221d0544dcdd0f0dbbbdf51b35f4f788db75191f232bf6a6","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","","root"],["e","c8a37890146f6fad8e9b73cce7c5b3fa966df7e522f54b6102d6136d95264f5c","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","9f0bbd5b4dc7547496fcdb00feb631af638171e01e58e785b5dfd411779b33f6"],["r","https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif"]]}] +[14:27:31.362] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’d be such a plot twist if we found out Sydney Sweeney was Satoshi ","created_at":1759429605,"id":"2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"d3d5b96ddc819ada26eb7a36cf3cd6eb022ce9f8f1e7d459daaa03558d91d3df0f12e2a7c0126e222bc25288b0a4f3f23beda4ea4474e768d77f5557562c905c","tags":[]}] +[14:27:31.422] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It definitely was. ","created_at":1759429603,"id":"c10f402ef7bedd1b390a4f741797defd5c64f815e274f3f3959ef4719a7b6662","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"1082591381f6a9b57173bec27ba50850249b642fc9a650ed382788d8d47de192c1748d9f8844d7af469789cd6da0351004e2149cb325ca67eac4c385c61f2a24","tags":[["alt","A short note: It definitely was. "],["e","de558be41da619edf952dfb83bb9c60f47f2e972d7b325968b1dbdd2409b254d","wss://henhouse.social/relay","root","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","dd6d5a4795062516691e32e2a54663c1f5fe87a118e65d4f570e83c12c751c52","wss://nostr.wine/","reply","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"],["p","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2","wss://relay.nostr.band/"]]}] +[14:27:31.483] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:27:31.544] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:31.604] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:31.665] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:27:31.726] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:31.786] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:31.847] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:31.907] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:31.968] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:27:32.028] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:27:32.089] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:27:32.149] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:27:32.511] RECV nos.lol:443: \":true}}","created_at":1759429622,"id":"1b3f0c9a12e41b899cc189fdf6bf9a0c3fe53dcc4d7c79f0656fdca8a61 +[14:27:32.874] RECV nos.lol:443: e7db4a0f0264a7a176f6dcd426cc66180651bc01bdfa9b77 +[14:27:33.261] RECV nos.lol:443: cb6853cd0ee15deee93"],["p","6d3b525b66dd3452a576aca51589162e84f63813374186b76957f000b2aedc42"],[" +[14:27:34.046] RECV nos.lol:443: db00b69948f4a48ec18faa12956f281c9f20390204a0901c"], +[14:27:34.589] RECV nos.lol:443: 0b23"],["p","41b93cde3bb1bfb51d287f0cc50161382b31aaf5f5a6ad0c090a99373d018bf9"],["p","04c915daefee3831 +[14:27:34.831] RECV nos.lol:443: ],["p","6aaed493c0de0cd56a123df8da +[14:27:35.073] RECV nos.lol:443: c05561b0c47c32e1450512b1"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3"],[ +[14:27:36.351] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:27:36.351] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:27:36.351] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:27:36.351] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:27:36.502] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I am in me hole 🤬","created_at":1759429650,"id":"44dc72db54de80a11ec83269576d1414b42014e4c960c8c0b46cb35a0f27a0d9","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"03952e5a96ce6bdb9552b222193bb0de16f116def9732f4127ab6bda0aae072afbdaaddd504a3de6ecd7ca699f0012a0a0ce9f8b99f093df2e791ad184814cbd","tags":[["alt","A short note: I am in me hole 🤬"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","b1e341ca74b38caf8f3d289070f4171312e338e63ada1811d19a18ad8a2e4f33","wss://nos.lol/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:27:36.563] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Drowning in apps and “privacy tools” lists?\nKeep it simple. \n\nA short, realistic plan with clear habits beats complexity. You don’t need to be a ghost or a spy—just consistent.\n\n#Privacy is security, and you can handle it.","created_at":1759429648,"id":"932dadd1ef77730f98d43859a730df93c6b7a68fa99e263d35ea9b9719a61bb3","kind":1,"pubkey":"70441609369d77ea553d805ee9af58b29e4c39d5b08b3956741839c2f3feebcc","sig":"f223361635c3ac1cc5a03510167ba9c7cdd493def02418b651f05c751099fa8204a95fc9b57be9996e4fc5b07157d90fb9b65acf8781722d2621802c1ad84ac9","tags":[["t","privacy"]]}] +[14:27:36.623] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか檻があって、捕まるとぶち込まれるけど、捕まってない人が檻の中の人タッチすると逃げれるみたいな","created_at":1759429640,"id":"50ef232680e428b2df198564dcfffd37fe001042ec84a90e9acfcdfb1578f83e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"54f278e270dad6a9d76e702f28558ca4a35a3e38dfc83c66fad356ab73cd07ea9152aa12311f57741a1383a4cfeb8d62c8d720286834bb2953a41af68c212ac2","tags":[]}] +[14:27:36.684] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/938d22f80a8c580fa4018ab417532dac062e939e56273d07863915abd9a74674.jpg","created_at":1759429626,"id":"eac6fdc110e172140dc4895dce211308ec7045246f398e912a650938dc2bff44","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"9e1211291bf15f3b8cff630801bcc5eb6931f620ccb1ffcdf21c332a2dd51c6f2fab3fd20be963d4d7fa238a992b1f4897cc82f8d2552c194ba3acfd10f472c8","tags":[]}] +[14:27:36.744] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amazing product!!! And the best \nthing, I payed with bitcoin. \nCircular economy folks! \n\n@SoapMiner \n⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️\n\n#bitcoin #nostr\n\nhttps://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","created_at":1759429625,"id":"4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"6304cfa268da8c04d4435a3ad30c336ea7faea5dc998bbeec2f958b42a0990890a7ea801de81f2573a0df921d43c4f46cbd5edec57e906317981b21782b20fd3","tags":[["imeta","url https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","blurhash eULMYFrE^kVZ-:_MWVjut7WVTdR*X4X8R*%gX8Rjs:af^kxaIoWVRk","dim 3024x4032"],["t","bitcoin"],["t","nostr"],["r","https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg"]]}] +[14:27:36.805] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"市しかないと思っとんのか","created_at":1759429620,"id":"ca397ac51250769aec4ceefe5b86aabccdf70adde24a21a26499af4b47281ea9","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"81a2ba8218fe2a1d0c9fdf351f74597519b075918faa0be1651404741ecca67dd77d4599b2cbb81f5735358a9f510c7250d4ba0087ced341fdd97e9dd6ca322c","tags":[]}] +[14:27:36.865] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","created_at":1759429619,"id":"a83bee75c0f66d35d1acc8d9d1b9e45a2288c83a25457dadadf632e7dd6110b7","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"4f24bf9fc37d2649a43445bfce59a39476434c5a5d42ce092f86c3a4d657889d36e8f984f1af72a399774f78de92926f28449b8ec500171f069b14454d413fae","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif"],["imeta","url https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","x a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","size 2155034","m image/gif","dim 360x203","blurhash i7D]n]?1Xgx44m=v#tg3oh3ai^xJ=#%gI;ICMdxa$[pCrFD~r{xc%2%MNF0JMxk=O9%3wiInS}WByCx]Di9DMxNFx]%NRk","ox a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","alt "]]}] +[14:27:36.926] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd I think nostur on iOS.","created_at":1759429618,"id":"2d3313a310e5587f0ca2c86d0b53f73e9524764a03a617c457701e38c9960659","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"242e1f7cf57a1f07cb94cc4abe87ef75cfbbc3fd42e552f5836a3d04045804bca84115782228b5e1500263ca1d51558c79b3f57018d1865172905b3990823849","tags":[["alt","A short note: Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://relay.primal.net/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["e","68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","wss://wheat.happytavern.co/","reply","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["p","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","wss://nostr.land/"],["r","https://github.com/haorendashu/nostrmo"]]}] +[14:27:36.986] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif","created_at":1759429618,"id":"754ed436e118d21f538dee1ce6a3309e62b35eee221199881762acc84b85b16a","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"218c541442fc590ca120ac42a6a9d9173f7b641168f7287e1586545d71136fbfd7b44e033d6ff170221d0544dcdd0f0dbbbdf51b35f4f788db75191f232bf6a6","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","","root"],["e","c8a37890146f6fad8e9b73cce7c5b3fa966df7e522f54b6102d6136d95264f5c","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","9f0bbd5b4dc7547496fcdb00feb631af638171e01e58e785b5dfd411779b33f6"],["r","https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif"]]}] +[14:27:37.047] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’d be such a plot twist if we found out Sydney Sweeney was Satoshi ","created_at":1759429605,"id":"2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"d3d5b96ddc819ada26eb7a36cf3cd6eb022ce9f8f1e7d459daaa03558d91d3df0f12e2a7c0126e222bc25288b0a4f3f23beda4ea4474e768d77f5557562c905c","tags":[]}] +[14:27:37.108] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:27:37.168] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:27:37.229] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:37.290] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:37.350] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:37.411] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:37.471] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:27:37.532] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:37.592] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:37.653] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:37.713] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:37.774] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:27:37.878] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the block hash of the latest Bitcoin block? Use an API again.","created_at":1759429658,"id":"97073aa52091156f6ca829472b7e08b07a89f41104a60e01b4c8e1452f26a1e3","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"b4910f4ece4bc87d202850c5373537a6d115de721ff33827fc0836d523884b48019793b73868ea0a63b86250d5516e0393db4f3e196cf851ae01dfc52563f082","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","47ca3b468842e9e7582d0bbe8cc6b0c5b5c3ed7688234c8339b63bc04b9d4c3c","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:27:38.085] RECV nos.lol:443: \":true}}","created_at":1759429622,"id":"1b3f0c9a12e41b899cc189fdf6bf9a0c3fe53dcc4d7c79f0656fdca8a61 +[14:27:38.448] RECV nos.lol:443: e7db4a0f0264a7a176f6dcd426cc66180651bc01bdfa9b77 +[14:27:38.871] RECV nos.lol:443: cb6853cd0ee15deee93"],["p","6d3b525b66dd3452a576aca51589162e84f63813374186b76957f000b2aedc42"],[" +[14:27:39.366] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759428493",{"content":"It definitely was. ","created_at":1759429603,"id":"c10f402ef7bedd1b390a4f741797defd5c64f815e274f3f3959ef4719a7b6662","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"1082591381f6a9b57173bec27ba50850249b642fc9a650ed382788d8d47de192c1748d9f8844d7af469789cd6da0351004e2149cb325ca67eac4c385c61f2a24","tags":[["alt","A short note: It definitely was. "],["e","de558be41da619edf952dfb83bb9c60f47f2e972d7b325968b1dbdd2409b254d","wss://henhouse.social/relay","root","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","dd6d5a4795062516691e32e2a54663c1f5fe87a118e65d4f570e83c12c751c52","wss://nostr.wine/","reply","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"],["p","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2","wss://relay.nostr.band/"]]}] +[14:27:39.608] RECV nos.lol:443: db00b69948f4a48ec18faa12956f281c9f20390204a0901c"], +[14:27:40.152] RECV nos.lol:443: 0b23"],["p","41b93cde3bb1bfb51d287f0cc50161382b31aaf5f5a6ad0c090a99373d018bf9"],["p","04c915daefee3831 +[14:27:40.393] RECV nos.lol:443: ],["p","6aaed493c0de0cd56a123df8da +[14:27:40.635] RECV nos.lol:443: c05561b0c47c32e1450512b1"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3"],[ +[14:27:41.911] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:27:41.911] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:27:41.911] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:27:41.911] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:27:42.063] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the block hash of the latest Bitcoin block? Use an API again.","created_at":1759429658,"id":"97073aa52091156f6ca829472b7e08b07a89f41104a60e01b4c8e1452f26a1e3","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"b4910f4ece4bc87d202850c5373537a6d115de721ff33827fc0836d523884b48019793b73868ea0a63b86250d5516e0393db4f3e196cf851ae01dfc52563f082","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","47ca3b468842e9e7582d0bbe8cc6b0c5b5c3ed7688234c8339b63bc04b9d4c3c","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:27:42.123] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I am in me hole 🤬","created_at":1759429650,"id":"44dc72db54de80a11ec83269576d1414b42014e4c960c8c0b46cb35a0f27a0d9","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"03952e5a96ce6bdb9552b222193bb0de16f116def9732f4127ab6bda0aae072afbdaaddd504a3de6ecd7ca699f0012a0a0ce9f8b99f093df2e791ad184814cbd","tags":[["alt","A short note: I am in me hole 🤬"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","b1e341ca74b38caf8f3d289070f4171312e338e63ada1811d19a18ad8a2e4f33","wss://nos.lol/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:27:42.184] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Drowning in apps and “privacy tools” lists?\nKeep it simple. \n\nA short, realistic plan with clear habits beats complexity. You don’t need to be a ghost or a spy—just consistent.\n\n#Privacy is security, and you can handle it.","created_at":1759429648,"id":"932dadd1ef77730f98d43859a730df93c6b7a68fa99e263d35ea9b9719a61bb3","kind":1,"pubkey":"70441609369d77ea553d805ee9af58b29e4c39d5b08b3956741839c2f3feebcc","sig":"f223361635c3ac1cc5a03510167ba9c7cdd493def02418b651f05c751099fa8204a95fc9b57be9996e4fc5b07157d90fb9b65acf8781722d2621802c1ad84ac9","tags":[["t","privacy"]]}] +[14:27:42.244] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか檻があって、捕まるとぶち込まれるけど、捕まってない人が檻の中の人タッチすると逃げれるみたいな","created_at":1759429640,"id":"50ef232680e428b2df198564dcfffd37fe001042ec84a90e9acfcdfb1578f83e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"54f278e270dad6a9d76e702f28558ca4a35a3e38dfc83c66fad356ab73cd07ea9152aa12311f57741a1383a4cfeb8d62c8d720286834bb2953a41af68c212ac2","tags":[]}] +[14:27:42.305] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/938d22f80a8c580fa4018ab417532dac062e939e56273d07863915abd9a74674.jpg","created_at":1759429626,"id":"eac6fdc110e172140dc4895dce211308ec7045246f398e912a650938dc2bff44","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"9e1211291bf15f3b8cff630801bcc5eb6931f620ccb1ffcdf21c332a2dd51c6f2fab3fd20be963d4d7fa238a992b1f4897cc82f8d2552c194ba3acfd10f472c8","tags":[]}] +[14:27:42.365] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amazing product!!! And the best \nthing, I payed with bitcoin. \nCircular economy folks! \n\n@SoapMiner \n⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️\n\n#bitcoin #nostr\n\nhttps://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","created_at":1759429625,"id":"4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"6304cfa268da8c04d4435a3ad30c336ea7faea5dc998bbeec2f958b42a0990890a7ea801de81f2573a0df921d43c4f46cbd5edec57e906317981b21782b20fd3","tags":[["imeta","url https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","blurhash eULMYFrE^kVZ-:_MWVjut7WVTdR*X4X8R*%gX8Rjs:af^kxaIoWVRk","dim 3024x4032"],["t","bitcoin"],["t","nostr"],["r","https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg"]]}] +[14:27:42.426] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"市しかないと思っとんのか","created_at":1759429620,"id":"ca397ac51250769aec4ceefe5b86aabccdf70adde24a21a26499af4b47281ea9","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"81a2ba8218fe2a1d0c9fdf351f74597519b075918faa0be1651404741ecca67dd77d4599b2cbb81f5735358a9f510c7250d4ba0087ced341fdd97e9dd6ca322c","tags":[]}] +[14:27:42.487] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","created_at":1759429619,"id":"a83bee75c0f66d35d1acc8d9d1b9e45a2288c83a25457dadadf632e7dd6110b7","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"4f24bf9fc37d2649a43445bfce59a39476434c5a5d42ce092f86c3a4d657889d36e8f984f1af72a399774f78de92926f28449b8ec500171f069b14454d413fae","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif"],["imeta","url https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","x a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","size 2155034","m image/gif","dim 360x203","blurhash i7D]n]?1Xgx44m=v#tg3oh3ai^xJ=#%gI;ICMdxa$[pCrFD~r{xc%2%MNF0JMxk=O9%3wiInS}WByCx]Di9DMxNFx]%NRk","ox a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","alt "]]}] +[14:27:42.547] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd I think nostur on iOS.","created_at":1759429618,"id":"2d3313a310e5587f0ca2c86d0b53f73e9524764a03a617c457701e38c9960659","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"242e1f7cf57a1f07cb94cc4abe87ef75cfbbc3fd42e552f5836a3d04045804bca84115782228b5e1500263ca1d51558c79b3f57018d1865172905b3990823849","tags":[["alt","A short note: Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://relay.primal.net/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["e","68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","wss://wheat.happytavern.co/","reply","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["p","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","wss://nostr.land/"],["r","https://github.com/haorendashu/nostrmo"]]}] +[14:27:42.608] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif","created_at":1759429618,"id":"754ed436e118d21f538dee1ce6a3309e62b35eee221199881762acc84b85b16a","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"218c541442fc590ca120ac42a6a9d9173f7b641168f7287e1586545d71136fbfd7b44e033d6ff170221d0544dcdd0f0dbbbdf51b35f4f788db75191f232bf6a6","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","","root"],["e","c8a37890146f6fad8e9b73cce7c5b3fa966df7e522f54b6102d6136d95264f5c","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","9f0bbd5b4dc7547496fcdb00feb631af638171e01e58e785b5dfd411779b33f6"],["r","https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif"]]}] +[14:27:42.669] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:27:42.729] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:27:42.790] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:42.850] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:42.911] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:42.972] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:43.032] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:27:43.093] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:43.118] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:43.179] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:43.239] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:43.300] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:27:43.360] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429657,"id":"f7571489447febb4e15e1147cc72fff44d031d7d6f1d3bcb2e4d5c6a9f185cd3","kind":3,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"6e94c8e7120847736b0374a5fb75fa2a1a62272f5ea27da2a8d88d765e97d96ae0260f75231359ed02595415ccaf668d5efb89f62749e672d02ade5e806441d6","tags":[["p","b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","6efb74e66b7ed7fb9fb7b8b8f12e1fbbabe7f45823a33a14ac60cc9241285536"],["p","cbb2f023b6aa09626d51d2f4ea99fa9138ea80ec7d5ffdce9feef8dcd6352031"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b"],["p","ee85604f8ec6e4e24f8eaf2a624d042ebd431dae448fe11779adcfb6bb78575e"],["p","e17e9a18635f80d472e6b49da910f244f2ed7437aec6bf227f85092066d67a6b"],["p","33b68d46e69e0fe145ceac12fec3ce552c61f972f348e13d343ff7956f97aa6c"],["p","bef514bd58c8ceea4beb9e6b84a8d983935f7be26f49e14df68098f1ba64156e"],["p","111647ac263ecb407f191dea6c5dc77ec22c99274da8a10a2c694d6965d03421"],["p","7744c38a5915be8ac8fee2cd615473da463b5fa81d8876a499c9f99921558bdb"],["p","dd35763b08908d07fc0da8ecffe5206d8fb349d9be5465b186f53eac1bb444a7"],["p","cf473ebe9736ba689c718de3d5ef38909bca57db3c38e3f9de7f5dadfc88ed6f"],["p","f8e6c64342f1e052480630e27e1016dce35fc3a614e60434fef4aa2503328ca9"],["p","391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248"],["p","e4b67f9f7c0a1cce1c24ca9196f8e1446fcce17fdef5d5eb46a3929433ea4d91"],["p","b480a3f71f13017ddbdb1a045b95fa752d631108f52e7c51f2a171832a31d8af"],["p","8fb140b4e8ddef97ce4b821d247278a1a4353362623f64021484b372f948000c"],["p","ad9738030ab84c04ffaec64abadd6cc682cb3501d193a5ff1c94b90770915558"],["p","a9f8b3f2ac19cc06d5194dd1ac9314d4741a09777444986553926d9165181647"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","bad9867380f6f2b8f50d3ff869aaf75dc998797204a7c85a4bf6f8bb9fc07078"],["p","12cfc2ec5a39a39d02f921f77e701dbc175b6287f22ddf0247af39706967f1d9"],["p","184dca27c18fec7d9e38e15552a6d5c2cd22741a7fe356fd13c4bd99c63594ee"],["p","958b754a1d3de5b5eca0fe31d2d555f451325f8498a83da1997b7fcd5c39e88c"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","6d0aab5fa4dbf03612bb16466c9e6e102b6dcbb51251735f8f3b3f36f8136f75"],["p","38a8f31c3e46f488768757e0b93a26ac28451259bb4295ea3847b38088333a6c"],["p","cbaa0c829ed322c1551cb6619b4c08b9a26ac97ffb4e959205eec78ee9313245"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","5e1a49baa20ef3daf90d0116c624b4c587d0bb10f35c106439e7f47f81884214"],["p","9ba8c688f091ca48de2b0f9bc998e3bc36a0092149f9201767da592849777f1c"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32"],["p","66bd8fed3590f2299ef0128f58d67879289e6a99a660e83ead94feab7606fd17"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","805b34f708837dfb3e7f05815ac5760564628b58d5a0ce839ccbb6ef3620fac3"],["p","7d33ba57d8a6e8869a1f1d5215254597594ac0dbfeb01b690def8c461b82db35"],["p","0114bb11dd8eb89bfb40669509b2a5a473d27126e27acae58257f2fd7cd95776"],["p","b9ceaeeb4178a549e8b0570f348b2caa4bef8933fe3323d45e3875c01919a2c2"],["p","fcb651724ab55affc1130fd4cbbc6e5fe1e20c2b09b85941ecf10b7487f3c4ed"]]}] +[14:27:43.723] RECV nos.lol:443: \":true}}","created_at":1759429622,"id":"1b3f0c9a12e41b899cc189fdf6bf9a0c3fe53dcc4d7c79f0656fdca8a61 +[14:27:44.086] RECV nos.lol:443: e7db4a0f0264a7a176f6dcd426cc66180651bc01bdfa9b77 +[14:27:44.509] RECV nos.lol:443: cb6853cd0ee15deee93"],["p","6d3b525b66dd3452a576aca51589162e84f63813374186b76957f000b2aedc42"],[" +[14:27:45.294] RECV nos.lol:443: db00b69948f4a48ec18faa12956f281c9f20390204a0901c"], +[14:27:45.838] RECV nos.lol:443: 0b23"],["p","41b93cde3bb1bfb51d287f0cc50161382b31aaf5f5a6ad0c090a99373d018bf9"],["p","04c915daefee3831 +[14:27:46.080] RECV nos.lol:443: ],["p","6aaed493c0de0cd56a123df8da +[14:27:46.322] RECV nos.lol:443: c05561b0c47c32e1450512b1"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3"],[ +[14:27:47.600] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:27:47.600] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:27:47.600] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:27:47.600] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:27:47.753] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the block hash of the latest Bitcoin block? Use an API again.","created_at":1759429658,"id":"97073aa52091156f6ca829472b7e08b07a89f41104a60e01b4c8e1452f26a1e3","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"b4910f4ece4bc87d202850c5373537a6d115de721ff33827fc0836d523884b48019793b73868ea0a63b86250d5516e0393db4f3e196cf851ae01dfc52563f082","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","47ca3b468842e9e7582d0bbe8cc6b0c5b5c3ed7688234c8339b63bc04b9d4c3c","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:27:47.813] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I am in me hole 🤬","created_at":1759429650,"id":"44dc72db54de80a11ec83269576d1414b42014e4c960c8c0b46cb35a0f27a0d9","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"03952e5a96ce6bdb9552b222193bb0de16f116def9732f4127ab6bda0aae072afbdaaddd504a3de6ecd7ca699f0012a0a0ce9f8b99f093df2e791ad184814cbd","tags":[["alt","A short note: I am in me hole 🤬"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","b1e341ca74b38caf8f3d289070f4171312e338e63ada1811d19a18ad8a2e4f33","wss://nos.lol/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:27:47.874] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Drowning in apps and “privacy tools” lists?\nKeep it simple. \n\nA short, realistic plan with clear habits beats complexity. You don’t need to be a ghost or a spy—just consistent.\n\n#Privacy is security, and you can handle it.","created_at":1759429648,"id":"932dadd1ef77730f98d43859a730df93c6b7a68fa99e263d35ea9b9719a61bb3","kind":1,"pubkey":"70441609369d77ea553d805ee9af58b29e4c39d5b08b3956741839c2f3feebcc","sig":"f223361635c3ac1cc5a03510167ba9c7cdd493def02418b651f05c751099fa8204a95fc9b57be9996e4fc5b07157d90fb9b65acf8781722d2621802c1ad84ac9","tags":[["t","privacy"]]}] +[14:27:47.934] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか檻があって、捕まるとぶち込まれるけど、捕まってない人が檻の中の人タッチすると逃げれるみたいな","created_at":1759429640,"id":"50ef232680e428b2df198564dcfffd37fe001042ec84a90e9acfcdfb1578f83e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"54f278e270dad6a9d76e702f28558ca4a35a3e38dfc83c66fad356ab73cd07ea9152aa12311f57741a1383a4cfeb8d62c8d720286834bb2953a41af68c212ac2","tags":[]}] +[14:27:47.995] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/938d22f80a8c580fa4018ab417532dac062e939e56273d07863915abd9a74674.jpg","created_at":1759429626,"id":"eac6fdc110e172140dc4895dce211308ec7045246f398e912a650938dc2bff44","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"9e1211291bf15f3b8cff630801bcc5eb6931f620ccb1ffcdf21c332a2dd51c6f2fab3fd20be963d4d7fa238a992b1f4897cc82f8d2552c194ba3acfd10f472c8","tags":[]}] +[14:27:48.055] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amazing product!!! And the best \nthing, I payed with bitcoin. \nCircular economy folks! \n\n@SoapMiner \n⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️\n\n#bitcoin #nostr\n\nhttps://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","created_at":1759429625,"id":"4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"6304cfa268da8c04d4435a3ad30c336ea7faea5dc998bbeec2f958b42a0990890a7ea801de81f2573a0df921d43c4f46cbd5edec57e906317981b21782b20fd3","tags":[["imeta","url https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","blurhash eULMYFrE^kVZ-:_MWVjut7WVTdR*X4X8R*%gX8Rjs:af^kxaIoWVRk","dim 3024x4032"],["t","bitcoin"],["t","nostr"],["r","https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg"]]}] +[14:27:48.081] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"市しかないと思っとんのか","created_at":1759429620,"id":"ca397ac51250769aec4ceefe5b86aabccdf70adde24a21a26499af4b47281ea9","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"81a2ba8218fe2a1d0c9fdf351f74597519b075918faa0be1651404741ecca67dd77d4599b2cbb81f5735358a9f510c7250d4ba0087ced341fdd97e9dd6ca322c","tags":[]}] +[14:27:48.141] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","created_at":1759429619,"id":"a83bee75c0f66d35d1acc8d9d1b9e45a2288c83a25457dadadf632e7dd6110b7","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"4f24bf9fc37d2649a43445bfce59a39476434c5a5d42ce092f86c3a4d657889d36e8f984f1af72a399774f78de92926f28449b8ec500171f069b14454d413fae","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif"],["imeta","url https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","x a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","size 2155034","m image/gif","dim 360x203","blurhash i7D]n]?1Xgx44m=v#tg3oh3ai^xJ=#%gI;ICMdxa$[pCrFD~r{xc%2%MNF0JMxk=O9%3wiInS}WByCx]Di9DMxNFx]%NRk","ox a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","alt "]]}] +[14:27:48.202] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd I think nostur on iOS.","created_at":1759429618,"id":"2d3313a310e5587f0ca2c86d0b53f73e9524764a03a617c457701e38c9960659","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"242e1f7cf57a1f07cb94cc4abe87ef75cfbbc3fd42e552f5836a3d04045804bca84115782228b5e1500263ca1d51558c79b3f57018d1865172905b3990823849","tags":[["alt","A short note: Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://relay.primal.net/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["e","68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","wss://wheat.happytavern.co/","reply","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["p","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","wss://nostr.land/"],["r","https://github.com/haorendashu/nostrmo"]]}] +[14:27:48.262] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif","created_at":1759429618,"id":"754ed436e118d21f538dee1ce6a3309e62b35eee221199881762acc84b85b16a","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"218c541442fc590ca120ac42a6a9d9173f7b641168f7287e1586545d71136fbfd7b44e033d6ff170221d0544dcdd0f0dbbbdf51b35f4f788db75191f232bf6a6","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","","root"],["e","c8a37890146f6fad8e9b73cce7c5b3fa966df7e522f54b6102d6136d95264f5c","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","9f0bbd5b4dc7547496fcdb00feb631af638171e01e58e785b5dfd411779b33f6"],["r","https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif"]]}] +[14:27:48.323] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:27:48.384] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:48.444] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:27:48.505] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:48.566] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:48.626] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:48.687] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:48.747] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:27:48.808] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:48.868] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:48.929] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:48.989] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:27:49.050] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429657,"id":"f7571489447febb4e15e1147cc72fff44d031d7d6f1d3bcb2e4d5c6a9f185cd3","kind":3,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"6e94c8e7120847736b0374a5fb75fa2a1a62272f5ea27da2a8d88d765e97d96ae0260f75231359ed02595415ccaf668d5efb89f62749e672d02ade5e806441d6","tags":[["p","b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","6efb74e66b7ed7fb9fb7b8b8f12e1fbbabe7f45823a33a14ac60cc9241285536"],["p","cbb2f023b6aa09626d51d2f4ea99fa9138ea80ec7d5ffdce9feef8dcd6352031"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b"],["p","ee85604f8ec6e4e24f8eaf2a624d042ebd431dae448fe11779adcfb6bb78575e"],["p","e17e9a18635f80d472e6b49da910f244f2ed7437aec6bf227f85092066d67a6b"],["p","33b68d46e69e0fe145ceac12fec3ce552c61f972f348e13d343ff7956f97aa6c"],["p","bef514bd58c8ceea4beb9e6b84a8d983935f7be26f49e14df68098f1ba64156e"],["p","111647ac263ecb407f191dea6c5dc77ec22c99274da8a10a2c694d6965d03421"],["p","7744c38a5915be8ac8fee2cd615473da463b5fa81d8876a499c9f99921558bdb"],["p","dd35763b08908d07fc0da8ecffe5206d8fb349d9be5465b186f53eac1bb444a7"],["p","cf473ebe9736ba689c718de3d5ef38909bca57db3c38e3f9de7f5dadfc88ed6f"],["p","f8e6c64342f1e052480630e27e1016dce35fc3a614e60434fef4aa2503328ca9"],["p","391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248"],["p","e4b67f9f7c0a1cce1c24ca9196f8e1446fcce17fdef5d5eb46a3929433ea4d91"],["p","b480a3f71f13017ddbdb1a045b95fa752d631108f52e7c51f2a171832a31d8af"],["p","8fb140b4e8ddef97ce4b821d247278a1a4353362623f64021484b372f948000c"],["p","ad9738030ab84c04ffaec64abadd6cc682cb3501d193a5ff1c94b90770915558"],["p","a9f8b3f2ac19cc06d5194dd1ac9314d4741a09777444986553926d9165181647"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","bad9867380f6f2b8f50d3ff869aaf75dc998797204a7c85a4bf6f8bb9fc07078"],["p","12cfc2ec5a39a39d02f921f77e701dbc175b6287f22ddf0247af39706967f1d9"],["p","184dca27c18fec7d9e38e15552a6d5c2cd22741a7fe356fd13c4bd99c63594ee"],["p","958b754a1d3de5b5eca0fe31d2d555f451325f8498a83da1997b7fcd5c39e88c"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","6d0aab5fa4dbf03612bb16466c9e6e102b6dcbb51251735f8f3b3f36f8136f75"],["p","38a8f31c3e46f488768757e0b93a26ac28451259bb4295ea3847b38088333a6c"],["p","cbaa0c829ed322c1551cb6619b4c08b9a26ac97ffb4e959205eec78ee9313245"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","5e1a49baa20ef3daf90d0116c624b4c587d0bb10f35c106439e7f47f81884214"],["p","9ba8c688f091ca48de2b0f9bc998e3bc36a0092149f9201767da592849777f1c"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32"],["p","66bd8fed3590f2299ef0128f58d67879289e6a99a660e83ead94feab7606fd17"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","805b34f708837dfb3e7f05815ac5760564628b58d5a0ce839ccbb6ef3620fac3"],["p","7d33ba57d8a6e8869a1f1d5215254597594ac0dbfeb01b690def8c461b82db35"],["p","0114bb11dd8eb89bfb40669509b2a5a473d27126e27acae58257f2fd7cd95776"],["p","b9ceaeeb4178a549e8b0570f348b2caa4bef8933fe3323d45e3875c01919a2c2"],["p","fcb651724ab55affc1130fd4cbbc6e5fe1e20c2b09b85941ecf10b7487f3c4ed"]]}] +[14:27:49.413] RECV nos.lol:443: \":true}}","created_at":1759429622,"id":"1b3f0c9a12e41b899cc189fdf6bf9a0c3fe53dcc4d7c79f0656fdca8a61 +[14:27:49.775] RECV nos.lol:443: e7db4a0f0264a7a176f6dcd426cc66180651bc01bdfa9b77 +[14:27:50.198] RECV nos.lol:443: cb6853cd0ee15deee93"],["p","6d3b525b66dd3452a576aca51589162e84f63813374186b76957f000b2aedc42"],[" +[14:27:50.984] RECV nos.lol:443: db00b69948f4a48ec18faa12956f281c9f20390204a0901c"], +[14:27:51.528] RECV nos.lol:443: 0b23"],["p","41b93cde3bb1bfb51d287f0cc50161382b31aaf5f5a6ad0c090a99373d018bf9"],["p","04c915daefee3831 +[14:27:51.770] RECV nos.lol:443: ],["p","6aaed493c0de0cd56a123df8da +[14:27:52.011] RECV nos.lol:443: c05561b0c47c32e1450512b1"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3"],[ +[14:27:53.291] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:27:53.291] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:27:53.291] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:27:53.291] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:27:53.443] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","created_at":1759429672,"id":"bc80c52be722d1d72cf014353457f4d4f8388025cad8dd0a648807c4cc944885","kind":1,"pubkey":"3ffac3a6c859eaaa8cdddb2c7002a6e10b33efeb92d025b14ead6f8a2d656657","sig":"02f74619781a92efc9558140d0c09404d692741baa56ac52f1557c4ed6ba68ee1932f8ea0dfe4a7a94e634b60d48eb61a197d84a3357170f76b9d162abfebb6f","tags":[["imeta","url https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","ox 94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413","x 785d61a82eaa1373d7761eec4b5f907515d6bdea9c45acee543f0e5459876ec9","m image/jpeg","dim 526x523","bh LuK-:_x]ozn2_NIUaKkC=]aJR+kr","blurhash LuK-:_x]ozn2_NIUaKkC=]aJR+kr","thumb https://image.nostr.build/thumb/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg"]]}] +[14:27:53.454] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub1zzmxvr9sw49lhzfx236aweurt8h5tmzjw7x3gfsazlgd8j64ql0sexw5wy ⚡️⚡️⚡️🫡🫡🫡","created_at":1759429669,"id":"e67ed9f903e29fa0ce6015c9b2756ec6d99760dc7a9b163d40f82af7ee52a2c0","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"49f5768df9e9dfbbf59e5d1179b097fba2c28849ecaa14667122e173f84b56d2067915f1365bfd3f5fa990b8fd0076b6bbaaa2dc8327c28d9e50cad53cd79d9f","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","","root"],["p","10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df"]]}] +[14:27:53.515] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the block hash of the latest Bitcoin block? Use an API again.","created_at":1759429658,"id":"97073aa52091156f6ca829472b7e08b07a89f41104a60e01b4c8e1452f26a1e3","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"b4910f4ece4bc87d202850c5373537a6d115de721ff33827fc0836d523884b48019793b73868ea0a63b86250d5516e0393db4f3e196cf851ae01dfc52563f082","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","47ca3b468842e9e7582d0bbe8cc6b0c5b5c3ed7688234c8339b63bc04b9d4c3c","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:27:53.575] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I am in me hole 🤬","created_at":1759429650,"id":"44dc72db54de80a11ec83269576d1414b42014e4c960c8c0b46cb35a0f27a0d9","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"03952e5a96ce6bdb9552b222193bb0de16f116def9732f4127ab6bda0aae072afbdaaddd504a3de6ecd7ca699f0012a0a0ce9f8b99f093df2e791ad184814cbd","tags":[["alt","A short note: I am in me hole 🤬"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","b1e341ca74b38caf8f3d289070f4171312e338e63ada1811d19a18ad8a2e4f33","wss://nos.lol/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:27:53.636] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Drowning in apps and “privacy tools” lists?\nKeep it simple. \n\nA short, realistic plan with clear habits beats complexity. You don’t need to be a ghost or a spy—just consistent.\n\n#Privacy is security, and you can handle it.","created_at":1759429648,"id":"932dadd1ef77730f98d43859a730df93c6b7a68fa99e263d35ea9b9719a61bb3","kind":1,"pubkey":"70441609369d77ea553d805ee9af58b29e4c39d5b08b3956741839c2f3feebcc","sig":"f223361635c3ac1cc5a03510167ba9c7cdd493def02418b651f05c751099fa8204a95fc9b57be9996e4fc5b07157d90fb9b65acf8781722d2621802c1ad84ac9","tags":[["t","privacy"]]}] +[14:27:53.696] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか檻があって、捕まるとぶち込まれるけど、捕まってない人が檻の中の人タッチすると逃げれるみたいな","created_at":1759429640,"id":"50ef232680e428b2df198564dcfffd37fe001042ec84a90e9acfcdfb1578f83e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"54f278e270dad6a9d76e702f28558ca4a35a3e38dfc83c66fad356ab73cd07ea9152aa12311f57741a1383a4cfeb8d62c8d720286834bb2953a41af68c212ac2","tags":[]}] +[14:27:53.757] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/938d22f80a8c580fa4018ab417532dac062e939e56273d07863915abd9a74674.jpg","created_at":1759429626,"id":"eac6fdc110e172140dc4895dce211308ec7045246f398e912a650938dc2bff44","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"9e1211291bf15f3b8cff630801bcc5eb6931f620ccb1ffcdf21c332a2dd51c6f2fab3fd20be963d4d7fa238a992b1f4897cc82f8d2552c194ba3acfd10f472c8","tags":[]}] +[14:27:53.817] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amazing product!!! And the best \nthing, I payed with bitcoin. \nCircular economy folks! \n\n@SoapMiner \n⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️\n\n#bitcoin #nostr\n\nhttps://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","created_at":1759429625,"id":"4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"6304cfa268da8c04d4435a3ad30c336ea7faea5dc998bbeec2f958b42a0990890a7ea801de81f2573a0df921d43c4f46cbd5edec57e906317981b21782b20fd3","tags":[["imeta","url https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","blurhash eULMYFrE^kVZ-:_MWVjut7WVTdR*X4X8R*%gX8Rjs:af^kxaIoWVRk","dim 3024x4032"],["t","bitcoin"],["t","nostr"],["r","https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg"]]}] +[14:27:53.878] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"市しかないと思っとんのか","created_at":1759429620,"id":"ca397ac51250769aec4ceefe5b86aabccdf70adde24a21a26499af4b47281ea9","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"81a2ba8218fe2a1d0c9fdf351f74597519b075918faa0be1651404741ecca67dd77d4599b2cbb81f5735358a9f510c7250d4ba0087ced341fdd97e9dd6ca322c","tags":[]}] +[14:27:53.938] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","created_at":1759429619,"id":"a83bee75c0f66d35d1acc8d9d1b9e45a2288c83a25457dadadf632e7dd6110b7","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"4f24bf9fc37d2649a43445bfce59a39476434c5a5d42ce092f86c3a4d657889d36e8f984f1af72a399774f78de92926f28449b8ec500171f069b14454d413fae","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif"],["imeta","url https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","x a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","size 2155034","m image/gif","dim 360x203","blurhash i7D]n]?1Xgx44m=v#tg3oh3ai^xJ=#%gI;ICMdxa$[pCrFD~r{xc%2%MNF0JMxk=O9%3wiInS}WByCx]Di9DMxNFx]%NRk","ox a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","alt "]]}] +[14:27:53.999] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:27:54.060] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:54.120] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:27:54.181] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:54.241] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:54.302] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:54.362] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:54.423] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:27:54.483] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:54.544] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:54.605] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:54.665] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:27:56.443] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:27:56.443] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:27:56.443] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:27:56.443] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:27:56.595] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"サッカーゴールがちだったかも","created_at":1759429675,"id":"124d83198a2ef19c4198bd326bbf9cfe05ea4a81fcdc3d316bf05e6ef5243001","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba9cc4d28103e55d02aa772c818e7b8354a03bb90dcca36f8e72b1f578bd713b653d4121efa82ba4c80cb127d40ed0e6189bd343944ea09eb22d79c8ddd42874","tags":[]}] +[14:27:56.655] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","created_at":1759429672,"id":"bc80c52be722d1d72cf014353457f4d4f8388025cad8dd0a648807c4cc944885","kind":1,"pubkey":"3ffac3a6c859eaaa8cdddb2c7002a6e10b33efeb92d025b14ead6f8a2d656657","sig":"02f74619781a92efc9558140d0c09404d692741baa56ac52f1557c4ed6ba68ee1932f8ea0dfe4a7a94e634b60d48eb61a197d84a3357170f76b9d162abfebb6f","tags":[["imeta","url https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","ox 94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413","x 785d61a82eaa1373d7761eec4b5f907515d6bdea9c45acee543f0e5459876ec9","m image/jpeg","dim 526x523","bh LuK-:_x]ozn2_NIUaKkC=]aJR+kr","blurhash LuK-:_x]ozn2_NIUaKkC=]aJR+kr","thumb https://image.nostr.build/thumb/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg"]]}] +[14:27:56.716] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub1zzmxvr9sw49lhzfx236aweurt8h5tmzjw7x3gfsazlgd8j64ql0sexw5wy ⚡️⚡️⚡️🫡🫡🫡","created_at":1759429669,"id":"e67ed9f903e29fa0ce6015c9b2756ec6d99760dc7a9b163d40f82af7ee52a2c0","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"49f5768df9e9dfbbf59e5d1179b097fba2c28849ecaa14667122e173f84b56d2067915f1365bfd3f5fa990b8fd0076b6bbaaa2dc8327c28d9e50cad53cd79d9f","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","","root"],["p","10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df"]]}] +[14:27:56.776] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the block hash of the latest Bitcoin block? Use an API again.","created_at":1759429658,"id":"97073aa52091156f6ca829472b7e08b07a89f41104a60e01b4c8e1452f26a1e3","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"b4910f4ece4bc87d202850c5373537a6d115de721ff33827fc0836d523884b48019793b73868ea0a63b86250d5516e0393db4f3e196cf851ae01dfc52563f082","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","47ca3b468842e9e7582d0bbe8cc6b0c5b5c3ed7688234c8339b63bc04b9d4c3c","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:27:56.837] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I am in me hole 🤬","created_at":1759429650,"id":"44dc72db54de80a11ec83269576d1414b42014e4c960c8c0b46cb35a0f27a0d9","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"03952e5a96ce6bdb9552b222193bb0de16f116def9732f4127ab6bda0aae072afbdaaddd504a3de6ecd7ca699f0012a0a0ce9f8b99f093df2e791ad184814cbd","tags":[["alt","A short note: I am in me hole 🤬"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","b1e341ca74b38caf8f3d289070f4171312e338e63ada1811d19a18ad8a2e4f33","wss://nos.lol/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:27:56.897] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Drowning in apps and “privacy tools” lists?\nKeep it simple. \n\nA short, realistic plan with clear habits beats complexity. You don’t need to be a ghost or a spy—just consistent.\n\n#Privacy is security, and you can handle it.","created_at":1759429648,"id":"932dadd1ef77730f98d43859a730df93c6b7a68fa99e263d35ea9b9719a61bb3","kind":1,"pubkey":"70441609369d77ea553d805ee9af58b29e4c39d5b08b3956741839c2f3feebcc","sig":"f223361635c3ac1cc5a03510167ba9c7cdd493def02418b651f05c751099fa8204a95fc9b57be9996e4fc5b07157d90fb9b65acf8781722d2621802c1ad84ac9","tags":[["t","privacy"]]}] +[14:27:56.958] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか檻があって、捕まるとぶち込まれるけど、捕まってない人が檻の中の人タッチすると逃げれるみたいな","created_at":1759429640,"id":"50ef232680e428b2df198564dcfffd37fe001042ec84a90e9acfcdfb1578f83e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"54f278e270dad6a9d76e702f28558ca4a35a3e38dfc83c66fad356ab73cd07ea9152aa12311f57741a1383a4cfeb8d62c8d720286834bb2953a41af68c212ac2","tags":[]}] +[14:27:57.018] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/938d22f80a8c580fa4018ab417532dac062e939e56273d07863915abd9a74674.jpg","created_at":1759429626,"id":"eac6fdc110e172140dc4895dce211308ec7045246f398e912a650938dc2bff44","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"9e1211291bf15f3b8cff630801bcc5eb6931f620ccb1ffcdf21c332a2dd51c6f2fab3fd20be963d4d7fa238a992b1f4897cc82f8d2552c194ba3acfd10f472c8","tags":[]}] +[14:27:57.079] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amazing product!!! And the best \nthing, I payed with bitcoin. \nCircular economy folks! \n\n@SoapMiner \n⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️\n\n#bitcoin #nostr\n\nhttps://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","created_at":1759429625,"id":"4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"6304cfa268da8c04d4435a3ad30c336ea7faea5dc998bbeec2f958b42a0990890a7ea801de81f2573a0df921d43c4f46cbd5edec57e906317981b21782b20fd3","tags":[["imeta","url https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","blurhash eULMYFrE^kVZ-:_MWVjut7WVTdR*X4X8R*%gX8Rjs:af^kxaIoWVRk","dim 3024x4032"],["t","bitcoin"],["t","nostr"],["r","https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg"]]}] +[14:27:57.139] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"市しかないと思っとんのか","created_at":1759429620,"id":"ca397ac51250769aec4ceefe5b86aabccdf70adde24a21a26499af4b47281ea9","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"81a2ba8218fe2a1d0c9fdf351f74597519b075918faa0be1651404741ecca67dd77d4599b2cbb81f5735358a9f510c7250d4ba0087ced341fdd97e9dd6ca322c","tags":[]}] +[14:27:57.200] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:27:57.260] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:57.321] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:27:57.381] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:57.442] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:57.503] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:57.563] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:57.624] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:27:57.685] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:57.745] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:57.806] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:57.866] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:27:58.556] RECV nos.lol:443: bdf6883c6f54b43a694975dff4e2c3b8f4b25f64ed7b6fb391d5d7 +[14:27:59.532] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:27:59.532] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:27:59.532] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:27:59.532] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:27:59.685] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"サッカーゴールがちだったかも","created_at":1759429675,"id":"124d83198a2ef19c4198bd326bbf9cfe05ea4a81fcdc3d316bf05e6ef5243001","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba9cc4d28103e55d02aa772c818e7b8354a03bb90dcca36f8e72b1f578bd713b653d4121efa82ba4c80cb127d40ed0e6189bd343944ea09eb22d79c8ddd42874","tags":[]}] +[14:27:59.745] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","created_at":1759429672,"id":"bc80c52be722d1d72cf014353457f4d4f8388025cad8dd0a648807c4cc944885","kind":1,"pubkey":"3ffac3a6c859eaaa8cdddb2c7002a6e10b33efeb92d025b14ead6f8a2d656657","sig":"02f74619781a92efc9558140d0c09404d692741baa56ac52f1557c4ed6ba68ee1932f8ea0dfe4a7a94e634b60d48eb61a197d84a3357170f76b9d162abfebb6f","tags":[["imeta","url https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","ox 94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413","x 785d61a82eaa1373d7761eec4b5f907515d6bdea9c45acee543f0e5459876ec9","m image/jpeg","dim 526x523","bh LuK-:_x]ozn2_NIUaKkC=]aJR+kr","blurhash LuK-:_x]ozn2_NIUaKkC=]aJR+kr","thumb https://image.nostr.build/thumb/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg"]]}] +[14:27:59.806] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub1zzmxvr9sw49lhzfx236aweurt8h5tmzjw7x3gfsazlgd8j64ql0sexw5wy ⚡️⚡️⚡️🫡🫡🫡","created_at":1759429669,"id":"e67ed9f903e29fa0ce6015c9b2756ec6d99760dc7a9b163d40f82af7ee52a2c0","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"49f5768df9e9dfbbf59e5d1179b097fba2c28849ecaa14667122e173f84b56d2067915f1365bfd3f5fa990b8fd0076b6bbaaa2dc8327c28d9e50cad53cd79d9f","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","","root"],["p","10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df"]]}] +[14:27:59.867] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the block hash of the latest Bitcoin block? Use an API again.","created_at":1759429658,"id":"97073aa52091156f6ca829472b7e08b07a89f41104a60e01b4c8e1452f26a1e3","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"b4910f4ece4bc87d202850c5373537a6d115de721ff33827fc0836d523884b48019793b73868ea0a63b86250d5516e0393db4f3e196cf851ae01dfc52563f082","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","47ca3b468842e9e7582d0bbe8cc6b0c5b5c3ed7688234c8339b63bc04b9d4c3c","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:27:59.927] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I am in me hole 🤬","created_at":1759429650,"id":"44dc72db54de80a11ec83269576d1414b42014e4c960c8c0b46cb35a0f27a0d9","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"03952e5a96ce6bdb9552b222193bb0de16f116def9732f4127ab6bda0aae072afbdaaddd504a3de6ecd7ca699f0012a0a0ce9f8b99f093df2e791ad184814cbd","tags":[["alt","A short note: I am in me hole 🤬"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","b1e341ca74b38caf8f3d289070f4171312e338e63ada1811d19a18ad8a2e4f33","wss://nos.lol/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:27:59.988] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Drowning in apps and “privacy tools” lists?\nKeep it simple. \n\nA short, realistic plan with clear habits beats complexity. You don’t need to be a ghost or a spy—just consistent.\n\n#Privacy is security, and you can handle it.","created_at":1759429648,"id":"932dadd1ef77730f98d43859a730df93c6b7a68fa99e263d35ea9b9719a61bb3","kind":1,"pubkey":"70441609369d77ea553d805ee9af58b29e4c39d5b08b3956741839c2f3feebcc","sig":"f223361635c3ac1cc5a03510167ba9c7cdd493def02418b651f05c751099fa8204a95fc9b57be9996e4fc5b07157d90fb9b65acf8781722d2621802c1ad84ac9","tags":[["t","privacy"]]}] +[14:28:00.048] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか檻があって、捕まるとぶち込まれるけど、捕まってない人が檻の中の人タッチすると逃げれるみたいな","created_at":1759429640,"id":"50ef232680e428b2df198564dcfffd37fe001042ec84a90e9acfcdfb1578f83e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"54f278e270dad6a9d76e702f28558ca4a35a3e38dfc83c66fad356ab73cd07ea9152aa12311f57741a1383a4cfeb8d62c8d720286834bb2953a41af68c212ac2","tags":[]}] +[14:28:00.109] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/938d22f80a8c580fa4018ab417532dac062e939e56273d07863915abd9a74674.jpg","created_at":1759429626,"id":"eac6fdc110e172140dc4895dce211308ec7045246f398e912a650938dc2bff44","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"9e1211291bf15f3b8cff630801bcc5eb6931f620ccb1ffcdf21c332a2dd51c6f2fab3fd20be963d4d7fa238a992b1f4897cc82f8d2552c194ba3acfd10f472c8","tags":[]}] +[14:28:00.169] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amazing product!!! And the best \nthing, I payed with bitcoin. \nCircular economy folks! \n\n@SoapMiner \n⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️\n\n#bitcoin #nostr\n\nhttps://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","created_at":1759429625,"id":"4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"6304cfa268da8c04d4435a3ad30c336ea7faea5dc998bbeec2f958b42a0990890a7ea801de81f2573a0df921d43c4f46cbd5edec57e906317981b21782b20fd3","tags":[["imeta","url https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","blurhash eULMYFrE^kVZ-:_MWVjut7WVTdR*X4X8R*%gX8Rjs:af^kxaIoWVRk","dim 3024x4032"],["t","bitcoin"],["t","nostr"],["r","https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg"]]}] +[14:28:00.230] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"市しかないと思っとんのか","created_at":1759429620,"id":"ca397ac51250769aec4ceefe5b86aabccdf70adde24a21a26499af4b47281ea9","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"81a2ba8218fe2a1d0c9fdf351f74597519b075918faa0be1651404741ecca67dd77d4599b2cbb81f5735358a9f510c7250d4ba0087ced341fdd97e9dd6ca322c","tags":[]}] +[14:28:00.290] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:00.351] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:00.411] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:00.472] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:00.533] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:00.593] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:00.653] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:00.714] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:00.774] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:00.835] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:00.895] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:00.956] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:01.681] RECV nos.lol:443: bdf6883c6f54b43a694975dff4e2c3b8f4b25f64ed7b6fb391d5d7 +[14:28:02.850] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:02.850] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:02.850] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:02.850] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:03.072] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This. If it doesn't connect within a couple minutes close the app and try again.","created_at":1759429684,"id":"bd055b907a13b9079f8203ab60262a427a396158bc166ef2a68bbb63b4506ff5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"7552f73202fe65516fef90b811e90e1f52c75e0d6a33f910d9bdfdee43e31029ef945d9d230a1190b5c557d2b6eab754e17b6e5e131ddb9a46fbeaf0b4efe426","tags":[["alt","A short note: This. If it doesn't connect within a couple minute..."],["e","5c9ed00645c15ba66d522aec63fe570fffb0fd0dd966e1d067972812069aac43","wss://relay.primal.net/","root","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["e","ff0d75ed686c3d50470f1968b185ac33aa8692f995a032061e6cd7020390f112","wss://relay.primal.net/","","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927"],["e","c4ab5ccbf1fa4c70a1ed9a8fcfe4ae5ee70e9334cc3dd6f1358991232bcb5bd8","wss://relay.primal.net/","reply","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"],["p","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927","wss://relay.damus.io/"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"]]}] +[14:28:03.097] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"サッカーゴールがちだったかも","created_at":1759429675,"id":"124d83198a2ef19c4198bd326bbf9cfe05ea4a81fcdc3d316bf05e6ef5243001","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba9cc4d28103e55d02aa772c818e7b8354a03bb90dcca36f8e72b1f578bd713b653d4121efa82ba4c80cb127d40ed0e6189bd343944ea09eb22d79c8ddd42874","tags":[]}] +[14:28:03.157] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","created_at":1759429672,"id":"bc80c52be722d1d72cf014353457f4d4f8388025cad8dd0a648807c4cc944885","kind":1,"pubkey":"3ffac3a6c859eaaa8cdddb2c7002a6e10b33efeb92d025b14ead6f8a2d656657","sig":"02f74619781a92efc9558140d0c09404d692741baa56ac52f1557c4ed6ba68ee1932f8ea0dfe4a7a94e634b60d48eb61a197d84a3357170f76b9d162abfebb6f","tags":[["imeta","url https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","ox 94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413","x 785d61a82eaa1373d7761eec4b5f907515d6bdea9c45acee543f0e5459876ec9","m image/jpeg","dim 526x523","bh LuK-:_x]ozn2_NIUaKkC=]aJR+kr","blurhash LuK-:_x]ozn2_NIUaKkC=]aJR+kr","thumb https://image.nostr.build/thumb/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg"]]}] +[14:28:03.218] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub1zzmxvr9sw49lhzfx236aweurt8h5tmzjw7x3gfsazlgd8j64ql0sexw5wy ⚡️⚡️⚡️🫡🫡🫡","created_at":1759429669,"id":"e67ed9f903e29fa0ce6015c9b2756ec6d99760dc7a9b163d40f82af7ee52a2c0","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"49f5768df9e9dfbbf59e5d1179b097fba2c28849ecaa14667122e173f84b56d2067915f1365bfd3f5fa990b8fd0076b6bbaaa2dc8327c28d9e50cad53cd79d9f","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","","root"],["p","10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df"]]}] +[14:28:03.278] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the block hash of the latest Bitcoin block? Use an API again.","created_at":1759429658,"id":"97073aa52091156f6ca829472b7e08b07a89f41104a60e01b4c8e1452f26a1e3","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"b4910f4ece4bc87d202850c5373537a6d115de721ff33827fc0836d523884b48019793b73868ea0a63b86250d5516e0393db4f3e196cf851ae01dfc52563f082","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","47ca3b468842e9e7582d0bbe8cc6b0c5b5c3ed7688234c8339b63bc04b9d4c3c","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:28:03.339] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I am in me hole 🤬","created_at":1759429650,"id":"44dc72db54de80a11ec83269576d1414b42014e4c960c8c0b46cb35a0f27a0d9","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"03952e5a96ce6bdb9552b222193bb0de16f116def9732f4127ab6bda0aae072afbdaaddd504a3de6ecd7ca699f0012a0a0ce9f8b99f093df2e791ad184814cbd","tags":[["alt","A short note: I am in me hole 🤬"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","b1e341ca74b38caf8f3d289070f4171312e338e63ada1811d19a18ad8a2e4f33","wss://nos.lol/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:28:03.400] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Drowning in apps and “privacy tools” lists?\nKeep it simple. \n\nA short, realistic plan with clear habits beats complexity. You don’t need to be a ghost or a spy—just consistent.\n\n#Privacy is security, and you can handle it.","created_at":1759429648,"id":"932dadd1ef77730f98d43859a730df93c6b7a68fa99e263d35ea9b9719a61bb3","kind":1,"pubkey":"70441609369d77ea553d805ee9af58b29e4c39d5b08b3956741839c2f3feebcc","sig":"f223361635c3ac1cc5a03510167ba9c7cdd493def02418b651f05c751099fa8204a95fc9b57be9996e4fc5b07157d90fb9b65acf8781722d2621802c1ad84ac9","tags":[["t","privacy"]]}] +[14:28:03.460] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか檻があって、捕まるとぶち込まれるけど、捕まってない人が檻の中の人タッチすると逃げれるみたいな","created_at":1759429640,"id":"50ef232680e428b2df198564dcfffd37fe001042ec84a90e9acfcdfb1578f83e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"54f278e270dad6a9d76e702f28558ca4a35a3e38dfc83c66fad356ab73cd07ea9152aa12311f57741a1383a4cfeb8d62c8d720286834bb2953a41af68c212ac2","tags":[]}] +[14:28:03.521] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/938d22f80a8c580fa4018ab417532dac062e939e56273d07863915abd9a74674.jpg","created_at":1759429626,"id":"eac6fdc110e172140dc4895dce211308ec7045246f398e912a650938dc2bff44","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"9e1211291bf15f3b8cff630801bcc5eb6931f620ccb1ffcdf21c332a2dd51c6f2fab3fd20be963d4d7fa238a992b1f4897cc82f8d2552c194ba3acfd10f472c8","tags":[]}] +[14:28:03.581] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amazing product!!! And the best \nthing, I payed with bitcoin. \nCircular economy folks! \n\n@SoapMiner \n⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️\n\n#bitcoin #nostr\n\nhttps://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","created_at":1759429625,"id":"4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"6304cfa268da8c04d4435a3ad30c336ea7faea5dc998bbeec2f958b42a0990890a7ea801de81f2573a0df921d43c4f46cbd5edec57e906317981b21782b20fd3","tags":[["imeta","url https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","blurhash eULMYFrE^kVZ-:_MWVjut7WVTdR*X4X8R*%gX8Rjs:af^kxaIoWVRk","dim 3024x4032"],["t","bitcoin"],["t","nostr"],["r","https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg"]]}] +[14:28:03.642] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:03.702] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:03.763] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:03.823] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:03.884] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:03.944] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:04.005] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:04.065] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:04.126] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:04.187] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:04.247] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:04.308] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:05.032] RECV nos.lol:443: bdf6883c6f54b43a694975dff4e2c3b8f4b25f64ed7b6fb391d5d7 +[14:28:06.009] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:06.009] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:06.009] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:06.009] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:06.341] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This. If it doesn't connect within a couple minutes close the app and try again.","created_at":1759429684,"id":"bd055b907a13b9079f8203ab60262a427a396158bc166ef2a68bbb63b4506ff5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"7552f73202fe65516fef90b811e90e1f52c75e0d6a33f910d9bdfdee43e31029ef945d9d230a1190b5c557d2b6eab754e17b6e5e131ddb9a46fbeaf0b4efe426","tags":[["alt","A short note: This. If it doesn't connect within a couple minute..."],["e","5c9ed00645c15ba66d522aec63fe570fffb0fd0dd966e1d067972812069aac43","wss://relay.primal.net/","root","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["e","ff0d75ed686c3d50470f1968b185ac33aa8692f995a032061e6cd7020390f112","wss://relay.primal.net/","","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927"],["e","c4ab5ccbf1fa4c70a1ed9a8fcfe4ae5ee70e9334cc3dd6f1358991232bcb5bd8","wss://relay.primal.net/","reply","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"],["p","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927","wss://relay.damus.io/"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"]]}] +[14:28:06.402] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"サッカーゴールがちだったかも","created_at":1759429675,"id":"124d83198a2ef19c4198bd326bbf9cfe05ea4a81fcdc3d316bf05e6ef5243001","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba9cc4d28103e55d02aa772c818e7b8354a03bb90dcca36f8e72b1f578bd713b653d4121efa82ba4c80cb127d40ed0e6189bd343944ea09eb22d79c8ddd42874","tags":[]}] +[14:28:06.462] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","created_at":1759429672,"id":"bc80c52be722d1d72cf014353457f4d4f8388025cad8dd0a648807c4cc944885","kind":1,"pubkey":"3ffac3a6c859eaaa8cdddb2c7002a6e10b33efeb92d025b14ead6f8a2d656657","sig":"02f74619781a92efc9558140d0c09404d692741baa56ac52f1557c4ed6ba68ee1932f8ea0dfe4a7a94e634b60d48eb61a197d84a3357170f76b9d162abfebb6f","tags":[["imeta","url https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","ox 94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413","x 785d61a82eaa1373d7761eec4b5f907515d6bdea9c45acee543f0e5459876ec9","m image/jpeg","dim 526x523","bh LuK-:_x]ozn2_NIUaKkC=]aJR+kr","blurhash LuK-:_x]ozn2_NIUaKkC=]aJR+kr","thumb https://image.nostr.build/thumb/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg"]]}] +[14:28:06.523] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub1zzmxvr9sw49lhzfx236aweurt8h5tmzjw7x3gfsazlgd8j64ql0sexw5wy ⚡️⚡️⚡️🫡🫡🫡","created_at":1759429669,"id":"e67ed9f903e29fa0ce6015c9b2756ec6d99760dc7a9b163d40f82af7ee52a2c0","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"49f5768df9e9dfbbf59e5d1179b097fba2c28849ecaa14667122e173f84b56d2067915f1365bfd3f5fa990b8fd0076b6bbaaa2dc8327c28d9e50cad53cd79d9f","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","","root"],["p","10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df"]]}] +[14:28:06.583] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the block hash of the latest Bitcoin block? Use an API again.","created_at":1759429658,"id":"97073aa52091156f6ca829472b7e08b07a89f41104a60e01b4c8e1452f26a1e3","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"b4910f4ece4bc87d202850c5373537a6d115de721ff33827fc0836d523884b48019793b73868ea0a63b86250d5516e0393db4f3e196cf851ae01dfc52563f082","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","47ca3b468842e9e7582d0bbe8cc6b0c5b5c3ed7688234c8339b63bc04b9d4c3c","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:28:06.644] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I am in me hole 🤬","created_at":1759429650,"id":"44dc72db54de80a11ec83269576d1414b42014e4c960c8c0b46cb35a0f27a0d9","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"03952e5a96ce6bdb9552b222193bb0de16f116def9732f4127ab6bda0aae072afbdaaddd504a3de6ecd7ca699f0012a0a0ce9f8b99f093df2e791ad184814cbd","tags":[["alt","A short note: I am in me hole 🤬"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","b1e341ca74b38caf8f3d289070f4171312e338e63ada1811d19a18ad8a2e4f33","wss://nos.lol/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:28:06.705] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Drowning in apps and “privacy tools” lists?\nKeep it simple. \n\nA short, realistic plan with clear habits beats complexity. You don’t need to be a ghost or a spy—just consistent.\n\n#Privacy is security, and you can handle it.","created_at":1759429648,"id":"932dadd1ef77730f98d43859a730df93c6b7a68fa99e263d35ea9b9719a61bb3","kind":1,"pubkey":"70441609369d77ea553d805ee9af58b29e4c39d5b08b3956741839c2f3feebcc","sig":"f223361635c3ac1cc5a03510167ba9c7cdd493def02418b651f05c751099fa8204a95fc9b57be9996e4fc5b07157d90fb9b65acf8781722d2621802c1ad84ac9","tags":[["t","privacy"]]}] +[14:28:06.765] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか檻があって、捕まるとぶち込まれるけど、捕まってない人が檻の中の人タッチすると逃げれるみたいな","created_at":1759429640,"id":"50ef232680e428b2df198564dcfffd37fe001042ec84a90e9acfcdfb1578f83e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"54f278e270dad6a9d76e702f28558ca4a35a3e38dfc83c66fad356ab73cd07ea9152aa12311f57741a1383a4cfeb8d62c8d720286834bb2953a41af68c212ac2","tags":[]}] +[14:28:06.826] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/938d22f80a8c580fa4018ab417532dac062e939e56273d07863915abd9a74674.jpg","created_at":1759429626,"id":"eac6fdc110e172140dc4895dce211308ec7045246f398e912a650938dc2bff44","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"9e1211291bf15f3b8cff630801bcc5eb6931f620ccb1ffcdf21c332a2dd51c6f2fab3fd20be963d4d7fa238a992b1f4897cc82f8d2552c194ba3acfd10f472c8","tags":[]}] +[14:28:06.886] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amazing product!!! And the best \nthing, I payed with bitcoin. \nCircular economy folks! \n\n@SoapMiner \n⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️\n\n#bitcoin #nostr\n\nhttps://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","created_at":1759429625,"id":"4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"6304cfa268da8c04d4435a3ad30c336ea7faea5dc998bbeec2f958b42a0990890a7ea801de81f2573a0df921d43c4f46cbd5edec57e906317981b21782b20fd3","tags":[["imeta","url https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","blurhash eULMYFrE^kVZ-:_MWVjut7WVTdR*X4X8R*%gX8Rjs:af^kxaIoWVRk","dim 3024x4032"],["t","bitcoin"],["t","nostr"],["r","https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg"]]}] +[14:28:06.947] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:07.007] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:07.068] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:07.128] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:07.189] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:07.249] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:07.310] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:07.370] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:07.431] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:07.491] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:07.552] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:07.612] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:07.673] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://relay.damus.io\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev\":{\"read\":true,\"write\":true},\"wss://nostr-pub.wellorder.net\":{\"read\":true,\"write\":true},\"wss://nostr.mom\":{\"read\":true,\"write\":true},\"wss://nos.lol\":{\"read\":true,\"write\":true},\"wss://relay.snort.social\":{\"read\":true,\"write\":false},\"wss://relay.nostr.com.au\":{\"read\":true,\"write\":false},\"wss://eden.nostr.land\":{\"read\":true,\"write\":false},\"wss://nostr.milou.lol\":{\"read\":true,\"write\":false},\"wss://puravida.nostr.land\":{\"read\":true,\"write\":false},\"wss://nostr.wine\":{\"read\":true,\"write\":false},\"wss://nostr.inosta.cc\":{\"read\":true,\"write\":false},\"wss://atlas.nostr.land\":{\"read\":true,\"write\":false},\"wss://relay.orangepill.dev\":{\"read\":true,\"write\":false},\"wss://relay.nostrati.com\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band\":{\"read\":true,\"write\":false},\"wss://filter.nostr.wine\":{\"read\":true,\"write\":false},\"wss://relay.noswhere.com\":{\"read\":true,\"write\":false}}","created_at":1759429683,"id":"e93882bed686229be275d451aa7ca4b03d39df721ab3f9a57181b940862f385d","kind":3,"pubkey":"25d0867ea23312058afa3727332f51afef7566dbb7491812edf2eba9fd98189a","sig":"842797eb3806f51f04074b01eb847b6a95573ca4f5c16009587e55178dd8959f800bac69684e2e3fedcbf231a9c1723e36c2d6f27cf09bc9c9d745655d976938","tags":[["p","25d0867ea23312058afa3727332f51afef7566dbb7491812edf2eba9fd98189a"],["e","25e5c82273a271cb1a840d0060391a0bf4965cafeb029d5ab55350b418953fbb"],["e","42224859763652914db53052103f0b744df79dfc4efef7e950fc0802fc3df3c5"],["p","ac3f6afe17593f61810513dac9a1e544e87b9ce91b27d37b88ec58fbaa9014aa"],["p","84dee6e676e5bb67b4ad4e042cf70cbd8681155db535942fcc6a0533858a7240"],["p","1abdef52155dc52a21a2ac9ed19e444317f6cf83500df139fbe73c2a7ac78e2a"],["p","ede3d957774e5d5c79664b5b50f53170e9024d76c90d99fca9324a3cc9795382"],["p","ffe7daceb57342af434f1ff7607042db5ed4b9b90feb6fd460e0573d3487c006"],["p","2ef0fccfd5a55e36bc8be3a525c1ce97f20eabaa94e69d82febfd641d9480c35"],["p","0d7ceca9e000e711e263bc14a2216ab74968a9e903eba214a714300adede5a20"],["p","99270769ccbebc9bd6e0696ba3dc91d0112dcbf59961702b63c4371d6769c516"],["p","9140435bb4fe2d55ba8f678091c3486bb021508d5fb8801353bf19d2874d0928"],["p","58ead82fa15b550094f7f5fe4804e0fe75b779dbef2e9b20511eccd69e6d08f9"],["p","57a1cd892460cd2df98a5288a56b265d77779badf1420f7cc7922738b0d04a60"],["alt","Follow List"],["p","aea54bfc4365a62d8e3566e73adea9837f21de38de6468c3afba930ef3d63f84"],["p","c998a5739f04f7fff202c54962aa5782b34ecb10d6f915bdfdd7582963bf9171"],["p","86af32cf2e481f98ff9188c8ecaadf52d0b6601ac0ac207e85c74ac3c6bef356"],["p","99339916232201e19111f8f477fe4dc7ffc474e35d6366ec1de1037ea1b24165"],["p","60d53675f07dee9e7d77910efa44682d87cb532313ba66b8f4449d649172296b"],["p","d8a6ecf0c396eaa8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","af740d198babb8c7b82d0a4718eb354bb3f6af9a98639b85d4a5cf1371caba85"],["p","fc07b38da6112fbe6cd4e093b057cbed108692705181673f32d5d40eadead4d9"],["p","66f47e3dcfe5c9281b436bf4ae443c4893d3c1b17ce503223f8043d3bfbdfb2f"],["p","83d77dc5630cdae82b36a799cd9c0d0bad497f5bffedf469eb607e9015f05d64"],["p","d54c85fa6483639e306db3efa0f8c6bf3f79ca61df1fc58bbc3e9c9d1e8504f5"],["p","0cd00f38628f1ef135721df93d9584a40f3bb2cf43f68d301f021dd631c74fab"],["p","5468bceeb74ce35cb4173dcc9974bddac9e894a74bf3d44f9ca8b7554605c9ed"],["p","dab6c6065c439b9bafb0b0f1ff5a0c68273bce5c1959a4158ad6a70851f507b6"],["p","b98ded4ceaea20790dbcb3c31400692009d34c7f9927c286835a99b7481a5c22"],["p","0ffab7d9247132f14bcd38378b0acedc30d35e2b2670d89b7ae8c2d2c306af99"],["p","fef0255b80828ca8d34c34ed3a5cb9b2f823c594090577d12d00bc6798a9d3f3"],["p","d30ea98ea65e953f91ab93f6b30ea51eb33c506f87d49f600a139aef00aa9511"],["p","2754fc862d6bc0b7c3971046612d942563d181c187a391e180ed6b00f80e7e5b"],["p","268b948b5aab4bab0e5430ee49e3cff11776cf183df93b32159f9670ed541495"],["p","f1989a96d75aa386b4c871543626cbb362c03248b220dc9ae53d7cefbcaaf2c1"],["p","d1f3c71639ae3bba17ffc6c8deb1fdb3a56506b3492213d033528cc291523704"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","3602e3a41b34946d81c007fcf5ae0daae25997b4e04b107e82e56a090c0d9b81"],["p","3df7fcb356cf4f6c9d1625e04297e226714fc4b9a5440b71e5a99f8ddb550c1e"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","39cc53c9e3f7d4980b21bea5ebc8a5b9cdf7fa6539430b5a826e8ad527168656"],["p","465eb13404d7219cd91c2b4a8a7e308ad4e09bc1298dc08c5eec852e9bf5da09"],["p","d031f81cd1302f3251df240bb9d4000fda85269152bc38a42e5e6fac4c2592f5"],["p","6e0a1f4852bc8fa42b8047d60a81930d88904ca3f2acdfb5b8413ab8c9f444e5"],["p","2786c134148537aa3142222cccc1b6fcf4863643ca78a9625d91aa9748d0e478"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","05e4649832dfb8d1bfa81ea7cbf1c92c4f1cd5052bfc8d5465ba744aa6fa5eb8"],["p","fbbbf7c8f17b7a59a1b955f363939b74d5cd79f52556acb0712ce4f3bc1cca4a"],["p","e00d60341134d136a1dfc59f1bcb2fe2a9ce781f2cfb6bea249595bd4577c0ad"],["p","6a5e3cc17279cbdf051c06d96e3f843cdb296f351d8ca35a6a190c0ab90dbf9a"]]}] +[14:28:08.363] RECV nos.lol:443: bdf6883c6f54b43a694975dff4e2c3b8f4b25f64ed7b6fb391d5d7 +[14:28:09.338] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:09.338] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:09.338] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:09.338] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:09.491] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This. If it doesn't connect within a couple minutes close the app and try again.","created_at":1759429684,"id":"bd055b907a13b9079f8203ab60262a427a396158bc166ef2a68bbb63b4506ff5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"7552f73202fe65516fef90b811e90e1f52c75e0d6a33f910d9bdfdee43e31029ef945d9d230a1190b5c557d2b6eab754e17b6e5e131ddb9a46fbeaf0b4efe426","tags":[["alt","A short note: This. If it doesn't connect within a couple minute..."],["e","5c9ed00645c15ba66d522aec63fe570fffb0fd0dd966e1d067972812069aac43","wss://relay.primal.net/","root","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["e","ff0d75ed686c3d50470f1968b185ac33aa8692f995a032061e6cd7020390f112","wss://relay.primal.net/","","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927"],["e","c4ab5ccbf1fa4c70a1ed9a8fcfe4ae5ee70e9334cc3dd6f1358991232bcb5bd8","wss://relay.primal.net/","reply","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"],["p","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927","wss://relay.damus.io/"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"]]}] +[14:28:09.551] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"サッカーゴールがちだったかも","created_at":1759429675,"id":"124d83198a2ef19c4198bd326bbf9cfe05ea4a81fcdc3d316bf05e6ef5243001","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba9cc4d28103e55d02aa772c818e7b8354a03bb90dcca36f8e72b1f578bd713b653d4121efa82ba4c80cb127d40ed0e6189bd343944ea09eb22d79c8ddd42874","tags":[]}] +[14:28:09.611] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","created_at":1759429672,"id":"bc80c52be722d1d72cf014353457f4d4f8388025cad8dd0a648807c4cc944885","kind":1,"pubkey":"3ffac3a6c859eaaa8cdddb2c7002a6e10b33efeb92d025b14ead6f8a2d656657","sig":"02f74619781a92efc9558140d0c09404d692741baa56ac52f1557c4ed6ba68ee1932f8ea0dfe4a7a94e634b60d48eb61a197d84a3357170f76b9d162abfebb6f","tags":[["imeta","url https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","ox 94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413","x 785d61a82eaa1373d7761eec4b5f907515d6bdea9c45acee543f0e5459876ec9","m image/jpeg","dim 526x523","bh LuK-:_x]ozn2_NIUaKkC=]aJR+kr","blurhash LuK-:_x]ozn2_NIUaKkC=]aJR+kr","thumb https://image.nostr.build/thumb/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg"]]}] +[14:28:09.672] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub1zzmxvr9sw49lhzfx236aweurt8h5tmzjw7x3gfsazlgd8j64ql0sexw5wy ⚡️⚡️⚡️🫡🫡🫡","created_at":1759429669,"id":"e67ed9f903e29fa0ce6015c9b2756ec6d99760dc7a9b163d40f82af7ee52a2c0","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"49f5768df9e9dfbbf59e5d1179b097fba2c28849ecaa14667122e173f84b56d2067915f1365bfd3f5fa990b8fd0076b6bbaaa2dc8327c28d9e50cad53cd79d9f","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","","root"],["p","10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df"]]}] +[14:28:09.732] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the block hash of the latest Bitcoin block? Use an API again.","created_at":1759429658,"id":"97073aa52091156f6ca829472b7e08b07a89f41104a60e01b4c8e1452f26a1e3","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"b4910f4ece4bc87d202850c5373537a6d115de721ff33827fc0836d523884b48019793b73868ea0a63b86250d5516e0393db4f3e196cf851ae01dfc52563f082","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","47ca3b468842e9e7582d0bbe8cc6b0c5b5c3ed7688234c8339b63bc04b9d4c3c","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:28:09.793] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I am in me hole 🤬","created_at":1759429650,"id":"44dc72db54de80a11ec83269576d1414b42014e4c960c8c0b46cb35a0f27a0d9","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"03952e5a96ce6bdb9552b222193bb0de16f116def9732f4127ab6bda0aae072afbdaaddd504a3de6ecd7ca699f0012a0a0ce9f8b99f093df2e791ad184814cbd","tags":[["alt","A short note: I am in me hole 🤬"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","b1e341ca74b38caf8f3d289070f4171312e338e63ada1811d19a18ad8a2e4f33","wss://nos.lol/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:28:09.853] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Drowning in apps and “privacy tools” lists?\nKeep it simple. \n\nA short, realistic plan with clear habits beats complexity. You don’t need to be a ghost or a spy—just consistent.\n\n#Privacy is security, and you can handle it.","created_at":1759429648,"id":"932dadd1ef77730f98d43859a730df93c6b7a68fa99e263d35ea9b9719a61bb3","kind":1,"pubkey":"70441609369d77ea553d805ee9af58b29e4c39d5b08b3956741839c2f3feebcc","sig":"f223361635c3ac1cc5a03510167ba9c7cdd493def02418b651f05c751099fa8204a95fc9b57be9996e4fc5b07157d90fb9b65acf8781722d2621802c1ad84ac9","tags":[["t","privacy"]]}] +[14:28:09.914] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか檻があって、捕まるとぶち込まれるけど、捕まってない人が檻の中の人タッチすると逃げれるみたいな","created_at":1759429640,"id":"50ef232680e428b2df198564dcfffd37fe001042ec84a90e9acfcdfb1578f83e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"54f278e270dad6a9d76e702f28558ca4a35a3e38dfc83c66fad356ab73cd07ea9152aa12311f57741a1383a4cfeb8d62c8d720286834bb2953a41af68c212ac2","tags":[]}] +[14:28:09.975] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/938d22f80a8c580fa4018ab417532dac062e939e56273d07863915abd9a74674.jpg","created_at":1759429626,"id":"eac6fdc110e172140dc4895dce211308ec7045246f398e912a650938dc2bff44","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"9e1211291bf15f3b8cff630801bcc5eb6931f620ccb1ffcdf21c332a2dd51c6f2fab3fd20be963d4d7fa238a992b1f4897cc82f8d2552c194ba3acfd10f472c8","tags":[]}] +[14:28:10.035] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amazing product!!! And the best \nthing, I payed with bitcoin. \nCircular economy folks! \n\n@SoapMiner \n⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️\n\n#bitcoin #nostr\n\nhttps://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","created_at":1759429625,"id":"4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"6304cfa268da8c04d4435a3ad30c336ea7faea5dc998bbeec2f958b42a0990890a7ea801de81f2573a0df921d43c4f46cbd5edec57e906317981b21782b20fd3","tags":[["imeta","url https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","blurhash eULMYFrE^kVZ-:_MWVjut7WVTdR*X4X8R*%gX8Rjs:af^kxaIoWVRk","dim 3024x4032"],["t","bitcoin"],["t","nostr"],["r","https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg"]]}] +[14:28:10.096] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:10.156] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:10.217] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:10.277] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:10.338] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:10.399] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:10.459] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:10.520] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:10.580] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:10.641] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:10.701] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:10.762] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:12.018] RECV nos.lol:443: 2f6db84bbcac64467642b7fa4314dbb"],["p","decf2ae424d7e66f49a8377e573b0fd38e5209f5d895571ab6dc0caf30 +[14:28:12.381] RECV nos.lol:443: 63da8f04cbbf6c08c80d20b1"],["p","83e818dfbeccea56b0f55 +[14:28:12.441] RECV nos.lol:443: 76b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","76c +[14:28:13.414] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:13.414] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:13.415] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:13.415] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:13.566] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Holy shit. I love that machine","created_at":1759429692,"id":"8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","kind":1,"pubkey":"de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a","sig":"3ab8658b2821b6f7664fb2787881cf242f9b5edb2e5ba3905882811567264f00679850d33e75f7b74c4b14964385af6857414d05510ea4b4c5a473cfb43abcda","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"]]}] +[14:28:13.576] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No right or wrong way, just do whatever works for you.","created_at":1759429692,"id":"9e376478b654c4865c67e0014b90d93c2f557eb966d9c9fefc83a5299061a8b3","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"d8acfffb9aa39f66a04584a72cce0e85f255344a8656220c6d5934ef5d80349dd1d6175f90f3e734f225dc8ebdbd5dcd700938d019c3d64832778429095fea83","tags":[["alt","A short note: No right or wrong way, just do whatever works for ..."],["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","wss://nos.lol/","root","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847","wss://nostr-03.dorafactory.org/"]]}] +[14:28:13.637] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah... thank god its automatic. It never stops. Lol ","created_at":1759429690,"id":"3fb166a6d2dcf8a1822fdeac1f7270f6c2ac16f300e1444d65e4bc65ec2fe36f","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"de1a7a1aec47282b50eb1117683c5eb043800e918287d41ed51f717df289ed0605dc2be9d9f24279ca4f50702603c918e0a736f22ca4a6cd926406a4ecb874af","tags":[["alt","A short note: Yeah... thank god its automatic. It never stops. L..."],["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","wss://nostr.azzamo.net/","","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:28:13.698] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This. If it doesn't connect within a couple minutes close the app and try again.","created_at":1759429684,"id":"bd055b907a13b9079f8203ab60262a427a396158bc166ef2a68bbb63b4506ff5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"7552f73202fe65516fef90b811e90e1f52c75e0d6a33f910d9bdfdee43e31029ef945d9d230a1190b5c557d2b6eab754e17b6e5e131ddb9a46fbeaf0b4efe426","tags":[["alt","A short note: This. If it doesn't connect within a couple minute..."],["e","5c9ed00645c15ba66d522aec63fe570fffb0fd0dd966e1d067972812069aac43","wss://relay.primal.net/","root","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["e","ff0d75ed686c3d50470f1968b185ac33aa8692f995a032061e6cd7020390f112","wss://relay.primal.net/","","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927"],["e","c4ab5ccbf1fa4c70a1ed9a8fcfe4ae5ee70e9334cc3dd6f1358991232bcb5bd8","wss://relay.primal.net/","reply","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"],["p","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927","wss://relay.damus.io/"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"]]}] +[14:28:13.759] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"サッカーゴールがちだったかも","created_at":1759429675,"id":"124d83198a2ef19c4198bd326bbf9cfe05ea4a81fcdc3d316bf05e6ef5243001","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba9cc4d28103e55d02aa772c818e7b8354a03bb90dcca36f8e72b1f578bd713b653d4121efa82ba4c80cb127d40ed0e6189bd343944ea09eb22d79c8ddd42874","tags":[]}] +[14:28:13.819] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","created_at":1759429672,"id":"bc80c52be722d1d72cf014353457f4d4f8388025cad8dd0a648807c4cc944885","kind":1,"pubkey":"3ffac3a6c859eaaa8cdddb2c7002a6e10b33efeb92d025b14ead6f8a2d656657","sig":"02f74619781a92efc9558140d0c09404d692741baa56ac52f1557c4ed6ba68ee1932f8ea0dfe4a7a94e634b60d48eb61a197d84a3357170f76b9d162abfebb6f","tags":[["imeta","url https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","ox 94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413","x 785d61a82eaa1373d7761eec4b5f907515d6bdea9c45acee543f0e5459876ec9","m image/jpeg","dim 526x523","bh LuK-:_x]ozn2_NIUaKkC=]aJR+kr","blurhash LuK-:_x]ozn2_NIUaKkC=]aJR+kr","thumb https://image.nostr.build/thumb/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg"]]}] +[14:28:13.880] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub1zzmxvr9sw49lhzfx236aweurt8h5tmzjw7x3gfsazlgd8j64ql0sexw5wy ⚡️⚡️⚡️🫡🫡🫡","created_at":1759429669,"id":"e67ed9f903e29fa0ce6015c9b2756ec6d99760dc7a9b163d40f82af7ee52a2c0","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"49f5768df9e9dfbbf59e5d1179b097fba2c28849ecaa14667122e173f84b56d2067915f1365bfd3f5fa990b8fd0076b6bbaaa2dc8327c28d9e50cad53cd79d9f","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","","root"],["p","10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df"]]}] +[14:28:13.940] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the block hash of the latest Bitcoin block? Use an API again.","created_at":1759429658,"id":"97073aa52091156f6ca829472b7e08b07a89f41104a60e01b4c8e1452f26a1e3","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"b4910f4ece4bc87d202850c5373537a6d115de721ff33827fc0836d523884b48019793b73868ea0a63b86250d5516e0393db4f3e196cf851ae01dfc52563f082","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","47ca3b468842e9e7582d0bbe8cc6b0c5b5c3ed7688234c8339b63bc04b9d4c3c","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:28:14.001] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I am in me hole 🤬","created_at":1759429650,"id":"44dc72db54de80a11ec83269576d1414b42014e4c960c8c0b46cb35a0f27a0d9","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"03952e5a96ce6bdb9552b222193bb0de16f116def9732f4127ab6bda0aae072afbdaaddd504a3de6ecd7ca699f0012a0a0ce9f8b99f093df2e791ad184814cbd","tags":[["alt","A short note: I am in me hole 🤬"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","b1e341ca74b38caf8f3d289070f4171312e338e63ada1811d19a18ad8a2e4f33","wss://nos.lol/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:28:14.061] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Drowning in apps and “privacy tools” lists?\nKeep it simple. \n\nA short, realistic plan with clear habits beats complexity. You don’t need to be a ghost or a spy—just consistent.\n\n#Privacy is security, and you can handle it.","created_at":1759429648,"id":"932dadd1ef77730f98d43859a730df93c6b7a68fa99e263d35ea9b9719a61bb3","kind":1,"pubkey":"70441609369d77ea553d805ee9af58b29e4c39d5b08b3956741839c2f3feebcc","sig":"f223361635c3ac1cc5a03510167ba9c7cdd493def02418b651f05c751099fa8204a95fc9b57be9996e4fc5b07157d90fb9b65acf8781722d2621802c1ad84ac9","tags":[["t","privacy"]]}] +[14:28:14.122] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:14.183] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:14.243] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:14.303] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:14.364] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:14.424] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:14.485] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:14.545] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:14.606] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:14.667] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:14.727] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:14.787] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:15.995] RECV nos.lol:443: 2f6db84bbcac64467642b7fa4314dbb"],["p","decf2ae424d7e66f49a8377e573b0fd38e5209f5d895571ab6dc0caf30 +[14:28:16.357] RECV nos.lol:443: 63da8f04cbbf6c08c80d20b1"],["p","83e818dfbeccea56b0f55 +[14:28:16.418] RECV nos.lol:443: 76b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","76c +[14:28:17.586] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:17.586] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:17.586] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:17.586] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:17.740] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Holy shit. I love that machine","created_at":1759429692,"id":"8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","kind":1,"pubkey":"de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a","sig":"3ab8658b2821b6f7664fb2787881cf242f9b5edb2e5ba3905882811567264f00679850d33e75f7b74c4b14964385af6857414d05510ea4b4c5a473cfb43abcda","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"]]}] +[14:28:17.801] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No right or wrong way, just do whatever works for you.","created_at":1759429692,"id":"9e376478b654c4865c67e0014b90d93c2f557eb966d9c9fefc83a5299061a8b3","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"d8acfffb9aa39f66a04584a72cce0e85f255344a8656220c6d5934ef5d80349dd1d6175f90f3e734f225dc8ebdbd5dcd700938d019c3d64832778429095fea83","tags":[["alt","A short note: No right or wrong way, just do whatever works for ..."],["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","wss://nos.lol/","root","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847","wss://nostr-03.dorafactory.org/"]]}] +[14:28:17.892] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah... thank god its automatic. It never stops. Lol ","created_at":1759429690,"id":"3fb166a6d2dcf8a1822fdeac1f7270f6c2ac16f300e1444d65e4bc65ec2fe36f","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"de1a7a1aec47282b50eb1117683c5eb043800e918287d41ed51f717df289ed0605dc2be9d9f24279ca4f50702603c918e0a736f22ca4a6cd926406a4ecb874af","tags":[["alt","A short note: Yeah... thank god its automatic. It never stops. L..."],["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","wss://nostr.azzamo.net/","","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:28:17.952] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This. If it doesn't connect within a couple minutes close the app and try again.","created_at":1759429684,"id":"bd055b907a13b9079f8203ab60262a427a396158bc166ef2a68bbb63b4506ff5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"7552f73202fe65516fef90b811e90e1f52c75e0d6a33f910d9bdfdee43e31029ef945d9d230a1190b5c557d2b6eab754e17b6e5e131ddb9a46fbeaf0b4efe426","tags":[["alt","A short note: This. If it doesn't connect within a couple minute..."],["e","5c9ed00645c15ba66d522aec63fe570fffb0fd0dd966e1d067972812069aac43","wss://relay.primal.net/","root","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["e","ff0d75ed686c3d50470f1968b185ac33aa8692f995a032061e6cd7020390f112","wss://relay.primal.net/","","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927"],["e","c4ab5ccbf1fa4c70a1ed9a8fcfe4ae5ee70e9334cc3dd6f1358991232bcb5bd8","wss://relay.primal.net/","reply","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"],["p","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927","wss://relay.damus.io/"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"]]}] +[14:28:18.013] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"サッカーゴールがちだったかも","created_at":1759429675,"id":"124d83198a2ef19c4198bd326bbf9cfe05ea4a81fcdc3d316bf05e6ef5243001","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba9cc4d28103e55d02aa772c818e7b8354a03bb90dcca36f8e72b1f578bd713b653d4121efa82ba4c80cb127d40ed0e6189bd343944ea09eb22d79c8ddd42874","tags":[]}] +[14:28:18.074] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","created_at":1759429672,"id":"bc80c52be722d1d72cf014353457f4d4f8388025cad8dd0a648807c4cc944885","kind":1,"pubkey":"3ffac3a6c859eaaa8cdddb2c7002a6e10b33efeb92d025b14ead6f8a2d656657","sig":"02f74619781a92efc9558140d0c09404d692741baa56ac52f1557c4ed6ba68ee1932f8ea0dfe4a7a94e634b60d48eb61a197d84a3357170f76b9d162abfebb6f","tags":[["imeta","url https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","ox 94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413","x 785d61a82eaa1373d7761eec4b5f907515d6bdea9c45acee543f0e5459876ec9","m image/jpeg","dim 526x523","bh LuK-:_x]ozn2_NIUaKkC=]aJR+kr","blurhash LuK-:_x]ozn2_NIUaKkC=]aJR+kr","thumb https://image.nostr.build/thumb/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg"]]}] +[14:28:18.099] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub1zzmxvr9sw49lhzfx236aweurt8h5tmzjw7x3gfsazlgd8j64ql0sexw5wy ⚡️⚡️⚡️🫡🫡🫡","created_at":1759429669,"id":"e67ed9f903e29fa0ce6015c9b2756ec6d99760dc7a9b163d40f82af7ee52a2c0","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"49f5768df9e9dfbbf59e5d1179b097fba2c28849ecaa14667122e173f84b56d2067915f1365bfd3f5fa990b8fd0076b6bbaaa2dc8327c28d9e50cad53cd79d9f","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","","root"],["p","10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df"]]}] +[14:28:18.160] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the block hash of the latest Bitcoin block? Use an API again.","created_at":1759429658,"id":"97073aa52091156f6ca829472b7e08b07a89f41104a60e01b4c8e1452f26a1e3","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"b4910f4ece4bc87d202850c5373537a6d115de721ff33827fc0836d523884b48019793b73868ea0a63b86250d5516e0393db4f3e196cf851ae01dfc52563f082","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","47ca3b468842e9e7582d0bbe8cc6b0c5b5c3ed7688234c8339b63bc04b9d4c3c","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:28:18.220] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I am in me hole 🤬","created_at":1759429650,"id":"44dc72db54de80a11ec83269576d1414b42014e4c960c8c0b46cb35a0f27a0d9","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"03952e5a96ce6bdb9552b222193bb0de16f116def9732f4127ab6bda0aae072afbdaaddd504a3de6ecd7ca699f0012a0a0ce9f8b99f093df2e791ad184814cbd","tags":[["alt","A short note: I am in me hole 🤬"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","b1e341ca74b38caf8f3d289070f4171312e338e63ada1811d19a18ad8a2e4f33","wss://nos.lol/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:28:18.281] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Drowning in apps and “privacy tools” lists?\nKeep it simple. \n\nA short, realistic plan with clear habits beats complexity. You don’t need to be a ghost or a spy—just consistent.\n\n#Privacy is security, and you can handle it.","created_at":1759429648,"id":"932dadd1ef77730f98d43859a730df93c6b7a68fa99e263d35ea9b9719a61bb3","kind":1,"pubkey":"70441609369d77ea553d805ee9af58b29e4c39d5b08b3956741839c2f3feebcc","sig":"f223361635c3ac1cc5a03510167ba9c7cdd493def02418b651f05c751099fa8204a95fc9b57be9996e4fc5b07157d90fb9b65acf8781722d2621802c1ad84ac9","tags":[["t","privacy"]]}] +[14:28:18.342] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:18.403] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:18.463] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:18.524] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:18.584] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:18.645] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:18.705] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:18.766] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:18.827] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:18.887] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:18.948] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:19.008] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:20.217] RECV nos.lol:443: 2f6db84bbcac64467642b7fa4314dbb"],["p","decf2ae424d7e66f49a8377e573b0fd38e5209f5d895571ab6dc0caf30 +[14:28:20.579] RECV nos.lol:443: 63da8f04cbbf6c08c80d20b1"],["p","83e818dfbeccea56b0f55 +[14:28:20.640] RECV nos.lol:443: 76b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","76c +[14:28:21.614] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:21.614] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:21.614] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:21.614] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:21.765] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Problem is shipping = Dox your home address. We need to fina a way to decouple this stuff.","created_at":1759429700,"id":"d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"b6f6fca9127c5db7e4ac67e0b7ee2fdbadb7c82ab994d422b8c404e2fc1f70e9f8af745d6825b585a4b32a8569780882280193c8db1633cf2be9ead6eeb57cfc","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","6c9e01fbb0ca19f897c294137ad4d4ed5a0c581c7e63a9cacbd0de762aad726f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"]]}] +[14:28:21.826] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Holy shit. I love that machine","created_at":1759429692,"id":"8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","kind":1,"pubkey":"de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a","sig":"3ab8658b2821b6f7664fb2787881cf242f9b5edb2e5ba3905882811567264f00679850d33e75f7b74c4b14964385af6857414d05510ea4b4c5a473cfb43abcda","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"]]}] +[14:28:21.886] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No right or wrong way, just do whatever works for you.","created_at":1759429692,"id":"9e376478b654c4865c67e0014b90d93c2f557eb966d9c9fefc83a5299061a8b3","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"d8acfffb9aa39f66a04584a72cce0e85f255344a8656220c6d5934ef5d80349dd1d6175f90f3e734f225dc8ebdbd5dcd700938d019c3d64832778429095fea83","tags":[["alt","A short note: No right or wrong way, just do whatever works for ..."],["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","wss://nos.lol/","root","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847","wss://nostr-03.dorafactory.org/"]]}] +[14:28:21.947] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah... thank god its automatic. It never stops. Lol ","created_at":1759429690,"id":"3fb166a6d2dcf8a1822fdeac1f7270f6c2ac16f300e1444d65e4bc65ec2fe36f","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"de1a7a1aec47282b50eb1117683c5eb043800e918287d41ed51f717df289ed0605dc2be9d9f24279ca4f50702603c918e0a736f22ca4a6cd926406a4ecb874af","tags":[["alt","A short note: Yeah... thank god its automatic. It never stops. L..."],["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","wss://nostr.azzamo.net/","","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:28:22.007] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This. If it doesn't connect within a couple minutes close the app and try again.","created_at":1759429684,"id":"bd055b907a13b9079f8203ab60262a427a396158bc166ef2a68bbb63b4506ff5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"7552f73202fe65516fef90b811e90e1f52c75e0d6a33f910d9bdfdee43e31029ef945d9d230a1190b5c557d2b6eab754e17b6e5e131ddb9a46fbeaf0b4efe426","tags":[["alt","A short note: This. If it doesn't connect within a couple minute..."],["e","5c9ed00645c15ba66d522aec63fe570fffb0fd0dd966e1d067972812069aac43","wss://relay.primal.net/","root","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["e","ff0d75ed686c3d50470f1968b185ac33aa8692f995a032061e6cd7020390f112","wss://relay.primal.net/","","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927"],["e","c4ab5ccbf1fa4c70a1ed9a8fcfe4ae5ee70e9334cc3dd6f1358991232bcb5bd8","wss://relay.primal.net/","reply","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"],["p","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927","wss://relay.damus.io/"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"]]}] +[14:28:22.068] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔔 Francie pronikla na tanker z ruské stínové flotily. Zatýkala kvůli dronům nad Dánskem: \n\nDění kolem války na Ukrajině sledujeme v online přenosu. \nhttps://zpravy.aktualne.cz/zahranici/valka-na-ukrajine-online-prenos/r~441055587f3211f0b589ac1f6b220ee8/ \n#CzechNews #News #Press #Media","created_at":1759429682,"id":"32f499f26abace3f50957f207eb9abddb74f58df535abf09a7f30a19fb5f8c0a","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"341f4cdd4588fe05c9084be41bac781f087c4eec3dd88e000b06f10ec7731c10e11d1ad16f657e4a73f8975b81faba37966a7cfa9b4c55ebcd82adee7c16f14d","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[14:28:22.129] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"サッカーゴールがちだったかも","created_at":1759429675,"id":"124d83198a2ef19c4198bd326bbf9cfe05ea4a81fcdc3d316bf05e6ef5243001","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba9cc4d28103e55d02aa772c818e7b8354a03bb90dcca36f8e72b1f578bd713b653d4121efa82ba4c80cb127d40ed0e6189bd343944ea09eb22d79c8ddd42874","tags":[]}] +[14:28:22.189] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","created_at":1759429672,"id":"bc80c52be722d1d72cf014353457f4d4f8388025cad8dd0a648807c4cc944885","kind":1,"pubkey":"3ffac3a6c859eaaa8cdddb2c7002a6e10b33efeb92d025b14ead6f8a2d656657","sig":"02f74619781a92efc9558140d0c09404d692741baa56ac52f1557c4ed6ba68ee1932f8ea0dfe4a7a94e634b60d48eb61a197d84a3357170f76b9d162abfebb6f","tags":[["imeta","url https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","ox 94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413","x 785d61a82eaa1373d7761eec4b5f907515d6bdea9c45acee543f0e5459876ec9","m image/jpeg","dim 526x523","bh LuK-:_x]ozn2_NIUaKkC=]aJR+kr","blurhash LuK-:_x]ozn2_NIUaKkC=]aJR+kr","thumb https://image.nostr.build/thumb/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg"]]}] +[14:28:22.250] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub1zzmxvr9sw49lhzfx236aweurt8h5tmzjw7x3gfsazlgd8j64ql0sexw5wy ⚡️⚡️⚡️🫡🫡🫡","created_at":1759429669,"id":"e67ed9f903e29fa0ce6015c9b2756ec6d99760dc7a9b163d40f82af7ee52a2c0","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"49f5768df9e9dfbbf59e5d1179b097fba2c28849ecaa14667122e173f84b56d2067915f1365bfd3f5fa990b8fd0076b6bbaaa2dc8327c28d9e50cad53cd79d9f","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","","root"],["p","10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df"]]}] +[14:28:22.310] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the block hash of the latest Bitcoin block? Use an API again.","created_at":1759429658,"id":"97073aa52091156f6ca829472b7e08b07a89f41104a60e01b4c8e1452f26a1e3","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"b4910f4ece4bc87d202850c5373537a6d115de721ff33827fc0836d523884b48019793b73868ea0a63b86250d5516e0393db4f3e196cf851ae01dfc52563f082","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","47ca3b468842e9e7582d0bbe8cc6b0c5b5c3ed7688234c8339b63bc04b9d4c3c","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:28:22.371] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:22.431] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:22.492] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:22.552] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:22.613] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:22.673] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:22.734] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:22.794] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:22.855] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:22.915] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:22.976] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:23.036] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:23.097] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nostr.wine\":{\"read\":true,\"write\":true},\"wss://nos.lol\":{\"read\":true,\"write\":true},\"wss://nostr.land\":{\"read\":true,\"write\":true},\"wss://relay.damus.io\":{\"read\":true,\"write\":true}}","created_at":1759429701,"id":"c048b4d48e371dea7bb7f764a6ba8acca8b4352822472dd4f1e3fc95ff4a55ae","kind":3,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"2617c175b11e5f032b0ec1bb9f9e7b7cce93daba0ca1b08b8819b8a523bb42094ba24c683e79fadcb741c3a63cb167faa5e6640505124eb9478221109c33cfbe","tags":[["p","3efdaebb1d8923ebd99c9e7ace3b4194ab45512e2be79c1b7d68d9243e0d2681"],["p","5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e"],["p","4c800257a588a82849d049817c2bdaad984b25a45ad9f6dad66e47d3b47e3b2f"],["p","ce1bf9ad92164df227bfcab2813193c60eb4021d35bf4bbbc6fa24c560d0f3e9"],["p","166fe0f534729a6b5f501a3da62f8987e058b2bc8c76a5e762c95047914865eb"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:28:24.270] RECV nos.lol:443: 2f6db84bbcac64467642b7fa4314dbb"],["p","decf2ae424d7e66f49a8377e573b0fd38e5209f5d895571ab6dc0caf30 +[14:28:24.633] RECV nos.lol:443: 63da8f04cbbf6c08c80d20b1"],["p","83e818dfbeccea56b0f55 +[14:28:24.693] RECV nos.lol:443: 76b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","76c +[14:28:25.673] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:25.673] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:25.673] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:25.673] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:26.005] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Problem is shipping = Dox your home address. We need to fina a way to decouple this stuff.","created_at":1759429700,"id":"d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"b6f6fca9127c5db7e4ac67e0b7ee2fdbadb7c82ab994d422b8c404e2fc1f70e9f8af745d6825b585a4b32a8569780882280193c8db1633cf2be9ead6eeb57cfc","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","6c9e01fbb0ca19f897c294137ad4d4ed5a0c581c7e63a9cacbd0de762aad726f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"]]}] +[14:28:26.065] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Holy shit. I love that machine","created_at":1759429692,"id":"8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","kind":1,"pubkey":"de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a","sig":"3ab8658b2821b6f7664fb2787881cf242f9b5edb2e5ba3905882811567264f00679850d33e75f7b74c4b14964385af6857414d05510ea4b4c5a473cfb43abcda","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"]]}] +[14:28:26.126] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No right or wrong way, just do whatever works for you.","created_at":1759429692,"id":"9e376478b654c4865c67e0014b90d93c2f557eb966d9c9fefc83a5299061a8b3","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"d8acfffb9aa39f66a04584a72cce0e85f255344a8656220c6d5934ef5d80349dd1d6175f90f3e734f225dc8ebdbd5dcd700938d019c3d64832778429095fea83","tags":[["alt","A short note: No right or wrong way, just do whatever works for ..."],["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","wss://nos.lol/","root","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847","wss://nostr-03.dorafactory.org/"]]}] +[14:28:26.186] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah... thank god its automatic. It never stops. Lol ","created_at":1759429690,"id":"3fb166a6d2dcf8a1822fdeac1f7270f6c2ac16f300e1444d65e4bc65ec2fe36f","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"de1a7a1aec47282b50eb1117683c5eb043800e918287d41ed51f717df289ed0605dc2be9d9f24279ca4f50702603c918e0a736f22ca4a6cd926406a4ecb874af","tags":[["alt","A short note: Yeah... thank god its automatic. It never stops. L..."],["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","wss://nostr.azzamo.net/","","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:28:26.247] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This. If it doesn't connect within a couple minutes close the app and try again.","created_at":1759429684,"id":"bd055b907a13b9079f8203ab60262a427a396158bc166ef2a68bbb63b4506ff5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"7552f73202fe65516fef90b811e90e1f52c75e0d6a33f910d9bdfdee43e31029ef945d9d230a1190b5c557d2b6eab754e17b6e5e131ddb9a46fbeaf0b4efe426","tags":[["alt","A short note: This. If it doesn't connect within a couple minute..."],["e","5c9ed00645c15ba66d522aec63fe570fffb0fd0dd966e1d067972812069aac43","wss://relay.primal.net/","root","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["e","ff0d75ed686c3d50470f1968b185ac33aa8692f995a032061e6cd7020390f112","wss://relay.primal.net/","","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927"],["e","c4ab5ccbf1fa4c70a1ed9a8fcfe4ae5ee70e9334cc3dd6f1358991232bcb5bd8","wss://relay.primal.net/","reply","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"],["p","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927","wss://relay.damus.io/"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"]]}] +[14:28:26.307] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔔 Francie pronikla na tanker z ruské stínové flotily. Zatýkala kvůli dronům nad Dánskem: \n\nDění kolem války na Ukrajině sledujeme v online přenosu. \nhttps://zpravy.aktualne.cz/zahranici/valka-na-ukrajine-online-prenos/r~441055587f3211f0b589ac1f6b220ee8/ \n#CzechNews #News #Press #Media","created_at":1759429682,"id":"32f499f26abace3f50957f207eb9abddb74f58df535abf09a7f30a19fb5f8c0a","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"341f4cdd4588fe05c9084be41bac781f087c4eec3dd88e000b06f10ec7731c10e11d1ad16f657e4a73f8975b81faba37966a7cfa9b4c55ebcd82adee7c16f14d","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[14:28:26.368] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"サッカーゴールがちだったかも","created_at":1759429675,"id":"124d83198a2ef19c4198bd326bbf9cfe05ea4a81fcdc3d316bf05e6ef5243001","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba9cc4d28103e55d02aa772c818e7b8354a03bb90dcca36f8e72b1f578bd713b653d4121efa82ba4c80cb127d40ed0e6189bd343944ea09eb22d79c8ddd42874","tags":[]}] +[14:28:26.428] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","created_at":1759429672,"id":"bc80c52be722d1d72cf014353457f4d4f8388025cad8dd0a648807c4cc944885","kind":1,"pubkey":"3ffac3a6c859eaaa8cdddb2c7002a6e10b33efeb92d025b14ead6f8a2d656657","sig":"02f74619781a92efc9558140d0c09404d692741baa56ac52f1557c4ed6ba68ee1932f8ea0dfe4a7a94e634b60d48eb61a197d84a3357170f76b9d162abfebb6f","tags":[["imeta","url https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","ox 94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413","x 785d61a82eaa1373d7761eec4b5f907515d6bdea9c45acee543f0e5459876ec9","m image/jpeg","dim 526x523","bh LuK-:_x]ozn2_NIUaKkC=]aJR+kr","blurhash LuK-:_x]ozn2_NIUaKkC=]aJR+kr","thumb https://image.nostr.build/thumb/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg"]]}] +[14:28:26.489] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub1zzmxvr9sw49lhzfx236aweurt8h5tmzjw7x3gfsazlgd8j64ql0sexw5wy ⚡️⚡️⚡️🫡🫡🫡","created_at":1759429669,"id":"e67ed9f903e29fa0ce6015c9b2756ec6d99760dc7a9b163d40f82af7ee52a2c0","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"49f5768df9e9dfbbf59e5d1179b097fba2c28849ecaa14667122e173f84b56d2067915f1365bfd3f5fa990b8fd0076b6bbaaa2dc8327c28d9e50cad53cd79d9f","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","","root"],["p","10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df"]]}] +[14:28:26.550] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the block hash of the latest Bitcoin block? Use an API again.","created_at":1759429658,"id":"97073aa52091156f6ca829472b7e08b07a89f41104a60e01b4c8e1452f26a1e3","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"b4910f4ece4bc87d202850c5373537a6d115de721ff33827fc0836d523884b48019793b73868ea0a63b86250d5516e0393db4f3e196cf851ae01dfc52563f082","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","47ca3b468842e9e7582d0bbe8cc6b0c5b5c3ed7688234c8339b63bc04b9d4c3c","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:28:26.610] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:26.670] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:26.731] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:26.791] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:26.852] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:26.912] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:26.973] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:27.033] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:27.094] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:27.154] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:27.215] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:27.275] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:27.336] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429703,"id":"99be9ae787a102cbe14c2545937e162243f0bdc8b785fe8500959777e2587ad1","kind":3,"pubkey":"f7be61760ffb8fd22055733b4f01795e8b6bd7ee56063703bf178c597ecd05e5","sig":"2c5bbc429f8cad3d2d0ef43cf33e77bc619b569dbae1fe9a01161641f52c85feaf8937e791d351556d8cf6ccfe57b570b34fa460d33175dfd90a1f8e08486586","tags":[["p","1e978baae414eee990dba992871549ad4a099b9d6f7e71c8059b254ea024dddc"],["p","b970095f84ab487f90bf08f4834c570fba5bf9eba0d4c2df8bfe1f0c1e12aa87"],["p","64e9bb262ee95f2e760fae20808563cc1077cc121c14d19f984c76dc11b59e5d"],["p","2385d0d8e40468afdd954493f3c2b854a124ccbc7dbd9e7b35726c9484c54da2"],["p","4c522cb776898f3d81ecb65335c7301a11166c93bbcbae4b4a723b34d6aa0e9c"],["p","850c06096206411a723b4e35e9af5604f292bcda68a0870ef0c3560be888a579"],["p","69469380b9dd7c7d25a2c04bebbfab86ae7ffb5fbbd4f84fd69b576a226db1e3"],["p","f7be61760ffb8fd22055733b4f01795e8b6bd7ee56063703bf178c597ecd05e5"],["p","02938f55bd3f6f271745cf8d45e57bc214af10473c6208599aee57b15d6e9e88"],["p","c5683bfaedbf58f7a2b9bb4a76132bbb31bb0a4e28f7db077adbc4ad7c8100b0"]]}] +[14:28:27.396] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nostr.wine\":{\"read\":true,\"write\":true},\"wss://nos.lol\":{\"read\":true,\"write\":true},\"wss://nostr.land\":{\"read\":true,\"write\":true},\"wss://relay.damus.io\":{\"read\":true,\"write\":true}}","created_at":1759429701,"id":"c048b4d48e371dea7bb7f764a6ba8acca8b4352822472dd4f1e3fc95ff4a55ae","kind":3,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"2617c175b11e5f032b0ec1bb9f9e7b7cce93daba0ca1b08b8819b8a523bb42094ba24c683e79fadcb741c3a63cb167faa5e6640505124eb9478221109c33cfbe","tags":[["p","3efdaebb1d8923ebd99c9e7ace3b4194ab45512e2be79c1b7d68d9243e0d2681"],["p","5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e"],["p","4c800257a588a82849d049817c2bdaad984b25a45ad9f6dad66e47d3b47e3b2f"],["p","ce1bf9ad92164df227bfcab2813193c60eb4021d35bf4bbbc6fa24c560d0f3e9"],["p","166fe0f534729a6b5f501a3da62f8987e058b2bc8c76a5e762c95047914865eb"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:28:28.569] RECV nos.lol:443: 2f6db84bbcac64467642b7fa4314dbb"],["p","decf2ae424d7e66f49a8377e573b0fd38e5209f5d895571ab6dc0caf30 +[14:28:28.931] RECV nos.lol:443: 63da8f04cbbf6c08c80d20b1"],["p","83e818dfbeccea56b0f55 +[14:28:28.992] RECV nos.lol:443: 76b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","76c +[14:28:30.161] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:30.161] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:30.161] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:30.161] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:30.313] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I believe you nat have been misled. For research, videos with the tag \"male solo\" should help. ","created_at":1759429708,"id":"375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"9c3c9fdf6a94fcff39db61f2788ab6a4e095660d63410b6fabe32fd3d500a64f193bf2daab90b4fb5fb6f2e0751ae7e6514f52413cde384fa0db91d0215843fc","tags":[["alt","A short note: I believe you nat have been misled. For research, ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:28:30.374] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Problem is shipping = Dox your home address. We need to fina a way to decouple this stuff.","created_at":1759429700,"id":"d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"b6f6fca9127c5db7e4ac67e0b7ee2fdbadb7c82ab994d422b8c404e2fc1f70e9f8af745d6825b585a4b32a8569780882280193c8db1633cf2be9ead6eeb57cfc","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","6c9e01fbb0ca19f897c294137ad4d4ed5a0c581c7e63a9cacbd0de762aad726f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"]]}] +[14:28:30.434] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Holy shit. I love that machine","created_at":1759429692,"id":"8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","kind":1,"pubkey":"de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a","sig":"3ab8658b2821b6f7664fb2787881cf242f9b5edb2e5ba3905882811567264f00679850d33e75f7b74c4b14964385af6857414d05510ea4b4c5a473cfb43abcda","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"]]}] +[14:28:30.495] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No right or wrong way, just do whatever works for you.","created_at":1759429692,"id":"9e376478b654c4865c67e0014b90d93c2f557eb966d9c9fefc83a5299061a8b3","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"d8acfffb9aa39f66a04584a72cce0e85f255344a8656220c6d5934ef5d80349dd1d6175f90f3e734f225dc8ebdbd5dcd700938d019c3d64832778429095fea83","tags":[["alt","A short note: No right or wrong way, just do whatever works for ..."],["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","wss://nos.lol/","root","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847","wss://nostr-03.dorafactory.org/"]]}] +[14:28:30.555] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah... thank god its automatic. It never stops. Lol ","created_at":1759429690,"id":"3fb166a6d2dcf8a1822fdeac1f7270f6c2ac16f300e1444d65e4bc65ec2fe36f","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"de1a7a1aec47282b50eb1117683c5eb043800e918287d41ed51f717df289ed0605dc2be9d9f24279ca4f50702603c918e0a736f22ca4a6cd926406a4ecb874af","tags":[["alt","A short note: Yeah... thank god its automatic. It never stops. L..."],["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","wss://nostr.azzamo.net/","","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:28:30.616] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This. If it doesn't connect within a couple minutes close the app and try again.","created_at":1759429684,"id":"bd055b907a13b9079f8203ab60262a427a396158bc166ef2a68bbb63b4506ff5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"7552f73202fe65516fef90b811e90e1f52c75e0d6a33f910d9bdfdee43e31029ef945d9d230a1190b5c557d2b6eab754e17b6e5e131ddb9a46fbeaf0b4efe426","tags":[["alt","A short note: This. If it doesn't connect within a couple minute..."],["e","5c9ed00645c15ba66d522aec63fe570fffb0fd0dd966e1d067972812069aac43","wss://relay.primal.net/","root","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["e","ff0d75ed686c3d50470f1968b185ac33aa8692f995a032061e6cd7020390f112","wss://relay.primal.net/","","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927"],["e","c4ab5ccbf1fa4c70a1ed9a8fcfe4ae5ee70e9334cc3dd6f1358991232bcb5bd8","wss://relay.primal.net/","reply","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"],["p","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927","wss://relay.damus.io/"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"]]}] +[14:28:30.676] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔔 Francie pronikla na tanker z ruské stínové flotily. Zatýkala kvůli dronům nad Dánskem: \n\nDění kolem války na Ukrajině sledujeme v online přenosu. \nhttps://zpravy.aktualne.cz/zahranici/valka-na-ukrajine-online-prenos/r~441055587f3211f0b589ac1f6b220ee8/ \n#CzechNews #News #Press #Media","created_at":1759429682,"id":"32f499f26abace3f50957f207eb9abddb74f58df535abf09a7f30a19fb5f8c0a","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"341f4cdd4588fe05c9084be41bac781f087c4eec3dd88e000b06f10ec7731c10e11d1ad16f657e4a73f8975b81faba37966a7cfa9b4c55ebcd82adee7c16f14d","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[14:28:30.737] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"サッカーゴールがちだったかも","created_at":1759429675,"id":"124d83198a2ef19c4198bd326bbf9cfe05ea4a81fcdc3d316bf05e6ef5243001","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba9cc4d28103e55d02aa772c818e7b8354a03bb90dcca36f8e72b1f578bd713b653d4121efa82ba4c80cb127d40ed0e6189bd343944ea09eb22d79c8ddd42874","tags":[]}] +[14:28:30.797] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","created_at":1759429672,"id":"bc80c52be722d1d72cf014353457f4d4f8388025cad8dd0a648807c4cc944885","kind":1,"pubkey":"3ffac3a6c859eaaa8cdddb2c7002a6e10b33efeb92d025b14ead6f8a2d656657","sig":"02f74619781a92efc9558140d0c09404d692741baa56ac52f1557c4ed6ba68ee1932f8ea0dfe4a7a94e634b60d48eb61a197d84a3357170f76b9d162abfebb6f","tags":[["imeta","url https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","ox 94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413","x 785d61a82eaa1373d7761eec4b5f907515d6bdea9c45acee543f0e5459876ec9","m image/jpeg","dim 526x523","bh LuK-:_x]ozn2_NIUaKkC=]aJR+kr","blurhash LuK-:_x]ozn2_NIUaKkC=]aJR+kr","thumb https://image.nostr.build/thumb/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg"]]}] +[14:28:30.858] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub1zzmxvr9sw49lhzfx236aweurt8h5tmzjw7x3gfsazlgd8j64ql0sexw5wy ⚡️⚡️⚡️🫡🫡🫡","created_at":1759429669,"id":"e67ed9f903e29fa0ce6015c9b2756ec6d99760dc7a9b163d40f82af7ee52a2c0","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"49f5768df9e9dfbbf59e5d1179b097fba2c28849ecaa14667122e173f84b56d2067915f1365bfd3f5fa990b8fd0076b6bbaaa2dc8327c28d9e50cad53cd79d9f","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","","root"],["p","10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df"]]}] +[14:28:30.918] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:30.979] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:31.040] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:31.100] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:31.161] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:31.222] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:31.282] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:31.343] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:31.403] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:31.464] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:31.524] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:31.585] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:31.646] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429703,"id":"99be9ae787a102cbe14c2545937e162243f0bdc8b785fe8500959777e2587ad1","kind":3,"pubkey":"f7be61760ffb8fd22055733b4f01795e8b6bd7ee56063703bf178c597ecd05e5","sig":"2c5bbc429f8cad3d2d0ef43cf33e77bc619b569dbae1fe9a01161641f52c85feaf8937e791d351556d8cf6ccfe57b570b34fa460d33175dfd90a1f8e08486586","tags":[["p","1e978baae414eee990dba992871549ad4a099b9d6f7e71c8059b254ea024dddc"],["p","b970095f84ab487f90bf08f4834c570fba5bf9eba0d4c2df8bfe1f0c1e12aa87"],["p","64e9bb262ee95f2e760fae20808563cc1077cc121c14d19f984c76dc11b59e5d"],["p","2385d0d8e40468afdd954493f3c2b854a124ccbc7dbd9e7b35726c9484c54da2"],["p","4c522cb776898f3d81ecb65335c7301a11166c93bbcbae4b4a723b34d6aa0e9c"],["p","850c06096206411a723b4e35e9af5604f292bcda68a0870ef0c3560be888a579"],["p","69469380b9dd7c7d25a2c04bebbfab86ae7ffb5fbbd4f84fd69b576a226db1e3"],["p","f7be61760ffb8fd22055733b4f01795e8b6bd7ee56063703bf178c597ecd05e5"],["p","02938f55bd3f6f271745cf8d45e57bc214af10473c6208599aee57b15d6e9e88"],["p","c5683bfaedbf58f7a2b9bb4a76132bbb31bb0a4e28f7db077adbc4ad7c8100b0"]]}] +[14:28:31.706] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nostr.wine\":{\"read\":true,\"write\":true},\"wss://nos.lol\":{\"read\":true,\"write\":true},\"wss://nostr.land\":{\"read\":true,\"write\":true},\"wss://relay.damus.io\":{\"read\":true,\"write\":true}}","created_at":1759429701,"id":"c048b4d48e371dea7bb7f764a6ba8acca8b4352822472dd4f1e3fc95ff4a55ae","kind":3,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"2617c175b11e5f032b0ec1bb9f9e7b7cce93daba0ca1b08b8819b8a523bb42094ba24c683e79fadcb741c3a63cb167faa5e6640505124eb9478221109c33cfbe","tags":[["p","3efdaebb1d8923ebd99c9e7ace3b4194ab45512e2be79c1b7d68d9243e0d2681"],["p","5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e"],["p","4c800257a588a82849d049817c2bdaad984b25a45ad9f6dad66e47d3b47e3b2f"],["p","ce1bf9ad92164df227bfcab2813193c60eb4021d35bf4bbbc6fa24c560d0f3e9"],["p","166fe0f534729a6b5f501a3da62f8987e058b2bc8c76a5e762c95047914865eb"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:28:32.914] RECV nos.lol:443: 2f6db84bbcac64467642b7fa4314dbb"],["p","decf2ae424d7e66f49a8377e573b0fd38e5209f5d895571ab6dc0caf30 +[14:28:33.241] RECV nos.lol:443: 63da8f04cbbf6c08c80d20b1"],["p","83e818dfbeccea56b0f55 +[14:28:33.302] RECV nos.lol:443: 76b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","76c +[14:28:34.281] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:34.281] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:34.282] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:34.282] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:34.342] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759428493",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,403\nBlock Hash: 0000000000000000000037e21227df2c071cd6c75004c4d71192674d161033bf\nTimestamp: 2025-10-02T18:27:41.000Z\nTransactions: 4,006\nBlock Size: 1.55 MB\nBlock Weight: 3,983,958 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917403","created_at":1759429713,"id":"c68d9cf428056a83158bd670cf1b4fb0656e2610fd72081819f686000353cea6","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"8b6a2a6ec9fcee9ecb1d78473824a103d3b545755d24cc2f54b14d74280ce3fdbf251d6bee4bf86289a1f156dfa994272bff330ddf28cbd84f9c8d0d59ebc4bd","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917403"],["published_at","1759429661"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/0000000000000000000037e21227df2c071cd6c75004c4d71192674d161033bf"],["new_block","true"],["block_height","917403"],["block_hash","0000000000000000000037e21227df2c071cd6c75004c4d71192674d161033bf"],["block_time","1759429661"],["tx_count","4006"],["block_size","1626561"],["block_weight","3983958"],["difficulty","150839487445890.5"],["previous_block","000000000000000000017354043de595fd9752a49e36145721dcc94e1821e399"],["mempool_tx_count","8864"],["mempool_size","3403006"],["memory_usage_pct","6.2"]]}] +[14:28:34.453] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Work out your own salvation. Do not depend on others.\n\n#buddha #hindu #quotes #wisdom #spirituality #philosophy","created_at":1759429709,"id":"4fd5e234f52c63171b96b79f8545168277bffe51e90e3caff9769a65bffff674","kind":1,"pubkey":"5c7d484b5dc652992510b358dba3ad0b5594ac668e26a053982d4a3ce1ba5414","sig":"b1820073c3774ef8c51937e8787d4163746158e592538621361b836dc78c432fe0aa27bf17448d3e280009089ed3977a0904d6bdd61d057410195dd1905843d2","tags":[["t","buddha"],["t","hindu"],["t","quotes"],["t","quote"],["t","thoughts"],["t","wisdom"],["t","philosophy"],["t","spirituality"]]}] +[14:28:34.514] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I believe you nat have been misled. For research, videos with the tag \"male solo\" should help. ","created_at":1759429708,"id":"375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"9c3c9fdf6a94fcff39db61f2788ab6a4e095660d63410b6fabe32fd3d500a64f193bf2daab90b4fb5fb6f2e0751ae7e6514f52413cde384fa0db91d0215843fc","tags":[["alt","A short note: I believe you nat have been misled. For research, ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:28:34.574] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Problem is shipping = Dox your home address. We need to fina a way to decouple this stuff.","created_at":1759429700,"id":"d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"b6f6fca9127c5db7e4ac67e0b7ee2fdbadb7c82ab994d422b8c404e2fc1f70e9f8af745d6825b585a4b32a8569780882280193c8db1633cf2be9ead6eeb57cfc","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","6c9e01fbb0ca19f897c294137ad4d4ed5a0c581c7e63a9cacbd0de762aad726f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"]]}] +[14:28:34.635] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Holy shit. I love that machine","created_at":1759429692,"id":"8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","kind":1,"pubkey":"de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a","sig":"3ab8658b2821b6f7664fb2787881cf242f9b5edb2e5ba3905882811567264f00679850d33e75f7b74c4b14964385af6857414d05510ea4b4c5a473cfb43abcda","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"]]}] +[14:28:34.695] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No right or wrong way, just do whatever works for you.","created_at":1759429692,"id":"9e376478b654c4865c67e0014b90d93c2f557eb966d9c9fefc83a5299061a8b3","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"d8acfffb9aa39f66a04584a72cce0e85f255344a8656220c6d5934ef5d80349dd1d6175f90f3e734f225dc8ebdbd5dcd700938d019c3d64832778429095fea83","tags":[["alt","A short note: No right or wrong way, just do whatever works for ..."],["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","wss://nos.lol/","root","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847","wss://nostr-03.dorafactory.org/"]]}] +[14:28:34.756] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah... thank god its automatic. It never stops. Lol ","created_at":1759429690,"id":"3fb166a6d2dcf8a1822fdeac1f7270f6c2ac16f300e1444d65e4bc65ec2fe36f","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"de1a7a1aec47282b50eb1117683c5eb043800e918287d41ed51f717df289ed0605dc2be9d9f24279ca4f50702603c918e0a736f22ca4a6cd926406a4ecb874af","tags":[["alt","A short note: Yeah... thank god its automatic. It never stops. L..."],["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","wss://nostr.azzamo.net/","","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:28:34.817] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This. If it doesn't connect within a couple minutes close the app and try again.","created_at":1759429684,"id":"bd055b907a13b9079f8203ab60262a427a396158bc166ef2a68bbb63b4506ff5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"7552f73202fe65516fef90b811e90e1f52c75e0d6a33f910d9bdfdee43e31029ef945d9d230a1190b5c557d2b6eab754e17b6e5e131ddb9a46fbeaf0b4efe426","tags":[["alt","A short note: This. If it doesn't connect within a couple minute..."],["e","5c9ed00645c15ba66d522aec63fe570fffb0fd0dd966e1d067972812069aac43","wss://relay.primal.net/","root","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["e","ff0d75ed686c3d50470f1968b185ac33aa8692f995a032061e6cd7020390f112","wss://relay.primal.net/","","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927"],["e","c4ab5ccbf1fa4c70a1ed9a8fcfe4ae5ee70e9334cc3dd6f1358991232bcb5bd8","wss://relay.primal.net/","reply","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"],["p","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927","wss://relay.damus.io/"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"]]}] +[14:28:34.877] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔔 Francie pronikla na tanker z ruské stínové flotily. Zatýkala kvůli dronům nad Dánskem: \n\nDění kolem války na Ukrajině sledujeme v online přenosu. \nhttps://zpravy.aktualne.cz/zahranici/valka-na-ukrajine-online-prenos/r~441055587f3211f0b589ac1f6b220ee8/ \n#CzechNews #News #Press #Media","created_at":1759429682,"id":"32f499f26abace3f50957f207eb9abddb74f58df535abf09a7f30a19fb5f8c0a","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"341f4cdd4588fe05c9084be41bac781f087c4eec3dd88e000b06f10ec7731c10e11d1ad16f657e4a73f8975b81faba37966a7cfa9b4c55ebcd82adee7c16f14d","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[14:28:34.938] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"サッカーゴールがちだったかも","created_at":1759429675,"id":"124d83198a2ef19c4198bd326bbf9cfe05ea4a81fcdc3d316bf05e6ef5243001","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba9cc4d28103e55d02aa772c818e7b8354a03bb90dcca36f8e72b1f578bd713b653d4121efa82ba4c80cb127d40ed0e6189bd343944ea09eb22d79c8ddd42874","tags":[]}] +[14:28:34.998] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","created_at":1759429672,"id":"bc80c52be722d1d72cf014353457f4d4f8388025cad8dd0a648807c4cc944885","kind":1,"pubkey":"3ffac3a6c859eaaa8cdddb2c7002a6e10b33efeb92d025b14ead6f8a2d656657","sig":"02f74619781a92efc9558140d0c09404d692741baa56ac52f1557c4ed6ba68ee1932f8ea0dfe4a7a94e634b60d48eb61a197d84a3357170f76b9d162abfebb6f","tags":[["imeta","url https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","ox 94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413","x 785d61a82eaa1373d7761eec4b5f907515d6bdea9c45acee543f0e5459876ec9","m image/jpeg","dim 526x523","bh LuK-:_x]ozn2_NIUaKkC=]aJR+kr","blurhash LuK-:_x]ozn2_NIUaKkC=]aJR+kr","thumb https://image.nostr.build/thumb/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg"]]}] +[14:28:35.059] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:35.119] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:35.180] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:35.241] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:35.301] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:35.362] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:35.422] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:35.483] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:35.544] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:35.604] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:35.665] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:35.725] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:35.786] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429703,"id":"99be9ae787a102cbe14c2545937e162243f0bdc8b785fe8500959777e2587ad1","kind":3,"pubkey":"f7be61760ffb8fd22055733b4f01795e8b6bd7ee56063703bf178c597ecd05e5","sig":"2c5bbc429f8cad3d2d0ef43cf33e77bc619b569dbae1fe9a01161641f52c85feaf8937e791d351556d8cf6ccfe57b570b34fa460d33175dfd90a1f8e08486586","tags":[["p","1e978baae414eee990dba992871549ad4a099b9d6f7e71c8059b254ea024dddc"],["p","b970095f84ab487f90bf08f4834c570fba5bf9eba0d4c2df8bfe1f0c1e12aa87"],["p","64e9bb262ee95f2e760fae20808563cc1077cc121c14d19f984c76dc11b59e5d"],["p","2385d0d8e40468afdd954493f3c2b854a124ccbc7dbd9e7b35726c9484c54da2"],["p","4c522cb776898f3d81ecb65335c7301a11166c93bbcbae4b4a723b34d6aa0e9c"],["p","850c06096206411a723b4e35e9af5604f292bcda68a0870ef0c3560be888a579"],["p","69469380b9dd7c7d25a2c04bebbfab86ae7ffb5fbbd4f84fd69b576a226db1e3"],["p","f7be61760ffb8fd22055733b4f01795e8b6bd7ee56063703bf178c597ecd05e5"],["p","02938f55bd3f6f271745cf8d45e57bc214af10473c6208599aee57b15d6e9e88"],["p","c5683bfaedbf58f7a2b9bb4a76132bbb31bb0a4e28f7db077adbc4ad7c8100b0"]]}] +[14:28:35.846] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nostr.wine\":{\"read\":true,\"write\":true},\"wss://nos.lol\":{\"read\":true,\"write\":true},\"wss://nostr.land\":{\"read\":true,\"write\":true},\"wss://relay.damus.io\":{\"read\":true,\"write\":true}}","created_at":1759429701,"id":"c048b4d48e371dea7bb7f764a6ba8acca8b4352822472dd4f1e3fc95ff4a55ae","kind":3,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"2617c175b11e5f032b0ec1bb9f9e7b7cce93daba0ca1b08b8819b8a523bb42094ba24c683e79fadcb741c3a63cb167faa5e6640505124eb9478221109c33cfbe","tags":[["p","3efdaebb1d8923ebd99c9e7ace3b4194ab45512e2be79c1b7d68d9243e0d2681"],["p","5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e"],["p","4c800257a588a82849d049817c2bdaad984b25a45ad9f6dad66e47d3b47e3b2f"],["p","ce1bf9ad92164df227bfcab2813193c60eb4021d35bf4bbbc6fa24c560d0f3e9"],["p","166fe0f534729a6b5f501a3da62f8987e058b2bc8c76a5e762c95047914865eb"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:28:37.055] RECV nos.lol:443: 2f6db84bbcac64467642b7fa4314dbb"],["p","decf2ae424d7e66f49a8377e573b0fd38e5209f5d895571ab6dc0caf30 +[14:28:37.417] RECV nos.lol:443: 63da8f04cbbf6c08c80d20b1"],["p","83e818dfbeccea56b0f55 +[14:28:37.478] RECV nos.lol:443: 76b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","76c +[14:28:38.453] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:38.453] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:38.453] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:38.454] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:38.612] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Work out your own salvation. Do not depend on others.\n\n#buddha #hindu #quotes #wisdom #spirituality #philosophy","created_at":1759429709,"id":"4fd5e234f52c63171b96b79f8545168277bffe51e90e3caff9769a65bffff674","kind":1,"pubkey":"5c7d484b5dc652992510b358dba3ad0b5594ac668e26a053982d4a3ce1ba5414","sig":"b1820073c3774ef8c51937e8787d4163746158e592538621361b836dc78c432fe0aa27bf17448d3e280009089ed3977a0904d6bdd61d057410195dd1905843d2","tags":[["t","buddha"],["t","hindu"],["t","quotes"],["t","quote"],["t","thoughts"],["t","wisdom"],["t","philosophy"],["t","spirituality"]]}] +[14:28:38.622] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I believe you nat have been misled. For research, videos with the tag \"male solo\" should help. ","created_at":1759429708,"id":"375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"9c3c9fdf6a94fcff39db61f2788ab6a4e095660d63410b6fabe32fd3d500a64f193bf2daab90b4fb5fb6f2e0751ae7e6514f52413cde384fa0db91d0215843fc","tags":[["alt","A short note: I believe you nat have been misled. For research, ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:28:38.794] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Problem is shipping = Dox your home address. We need to fina a way to decouple this stuff.","created_at":1759429700,"id":"d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"b6f6fca9127c5db7e4ac67e0b7ee2fdbadb7c82ab994d422b8c404e2fc1f70e9f8af745d6825b585a4b32a8569780882280193c8db1633cf2be9ead6eeb57cfc","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","6c9e01fbb0ca19f897c294137ad4d4ed5a0c581c7e63a9cacbd0de762aad726f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"]]}] +[14:28:38.854] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Holy shit. I love that machine","created_at":1759429692,"id":"8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","kind":1,"pubkey":"de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a","sig":"3ab8658b2821b6f7664fb2787881cf242f9b5edb2e5ba3905882811567264f00679850d33e75f7b74c4b14964385af6857414d05510ea4b4c5a473cfb43abcda","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"]]}] +[14:28:38.915] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No right or wrong way, just do whatever works for you.","created_at":1759429692,"id":"9e376478b654c4865c67e0014b90d93c2f557eb966d9c9fefc83a5299061a8b3","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"d8acfffb9aa39f66a04584a72cce0e85f255344a8656220c6d5934ef5d80349dd1d6175f90f3e734f225dc8ebdbd5dcd700938d019c3d64832778429095fea83","tags":[["alt","A short note: No right or wrong way, just do whatever works for ..."],["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","wss://nos.lol/","root","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847","wss://nostr-03.dorafactory.org/"]]}] +[14:28:38.975] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah... thank god its automatic. It never stops. Lol ","created_at":1759429690,"id":"3fb166a6d2dcf8a1822fdeac1f7270f6c2ac16f300e1444d65e4bc65ec2fe36f","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"de1a7a1aec47282b50eb1117683c5eb043800e918287d41ed51f717df289ed0605dc2be9d9f24279ca4f50702603c918e0a736f22ca4a6cd926406a4ecb874af","tags":[["alt","A short note: Yeah... thank god its automatic. It never stops. L..."],["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","wss://nostr.azzamo.net/","","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:28:39.036] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This. If it doesn't connect within a couple minutes close the app and try again.","created_at":1759429684,"id":"bd055b907a13b9079f8203ab60262a427a396158bc166ef2a68bbb63b4506ff5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"7552f73202fe65516fef90b811e90e1f52c75e0d6a33f910d9bdfdee43e31029ef945d9d230a1190b5c557d2b6eab754e17b6e5e131ddb9a46fbeaf0b4efe426","tags":[["alt","A short note: This. If it doesn't connect within a couple minute..."],["e","5c9ed00645c15ba66d522aec63fe570fffb0fd0dd966e1d067972812069aac43","wss://relay.primal.net/","root","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["e","ff0d75ed686c3d50470f1968b185ac33aa8692f995a032061e6cd7020390f112","wss://relay.primal.net/","","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927"],["e","c4ab5ccbf1fa4c70a1ed9a8fcfe4ae5ee70e9334cc3dd6f1358991232bcb5bd8","wss://relay.primal.net/","reply","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"],["p","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927","wss://relay.damus.io/"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"]]}] +[14:28:39.096] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔔 Francie pronikla na tanker z ruské stínové flotily. Zatýkala kvůli dronům nad Dánskem: \n\nDění kolem války na Ukrajině sledujeme v online přenosu. \nhttps://zpravy.aktualne.cz/zahranici/valka-na-ukrajine-online-prenos/r~441055587f3211f0b589ac1f6b220ee8/ \n#CzechNews #News #Press #Media","created_at":1759429682,"id":"32f499f26abace3f50957f207eb9abddb74f58df535abf09a7f30a19fb5f8c0a","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"341f4cdd4588fe05c9084be41bac781f087c4eec3dd88e000b06f10ec7731c10e11d1ad16f657e4a73f8975b81faba37966a7cfa9b4c55ebcd82adee7c16f14d","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[14:28:39.157] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"サッカーゴールがちだったかも","created_at":1759429675,"id":"124d83198a2ef19c4198bd326bbf9cfe05ea4a81fcdc3d316bf05e6ef5243001","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba9cc4d28103e55d02aa772c818e7b8354a03bb90dcca36f8e72b1f578bd713b653d4121efa82ba4c80cb127d40ed0e6189bd343944ea09eb22d79c8ddd42874","tags":[]}] +[14:28:39.217] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","created_at":1759429672,"id":"bc80c52be722d1d72cf014353457f4d4f8388025cad8dd0a648807c4cc944885","kind":1,"pubkey":"3ffac3a6c859eaaa8cdddb2c7002a6e10b33efeb92d025b14ead6f8a2d656657","sig":"02f74619781a92efc9558140d0c09404d692741baa56ac52f1557c4ed6ba68ee1932f8ea0dfe4a7a94e634b60d48eb61a197d84a3357170f76b9d162abfebb6f","tags":[["imeta","url https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","ox 94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413","x 785d61a82eaa1373d7761eec4b5f907515d6bdea9c45acee543f0e5459876ec9","m image/jpeg","dim 526x523","bh LuK-:_x]ozn2_NIUaKkC=]aJR+kr","blurhash LuK-:_x]ozn2_NIUaKkC=]aJR+kr","thumb https://image.nostr.build/thumb/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg"]]}] +[14:28:39.278] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:39.339] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:39.399] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:39.460] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:39.520] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:39.581] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:39.641] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:39.702] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:39.763] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:39.823] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:39.884] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:39.944] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:40.005] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429714,"id":"bdd18347cf9a5d88dca734835ffa80cd2a53f8604fc1735ee5cdcdc396b6faf7","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"cfbc9a9490f2b518a39fde790205225703cf06eb9d7b3c1640dfdf497a10a0c295588c36257eb0531e184e4e82751d894f1391c162c4ab61290b898929156883","tags":[["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"]]}] +[14:28:40.066] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429703,"id":"99be9ae787a102cbe14c2545937e162243f0bdc8b785fe8500959777e2587ad1","kind":3,"pubkey":"f7be61760ffb8fd22055733b4f01795e8b6bd7ee56063703bf178c597ecd05e5","sig":"2c5bbc429f8cad3d2d0ef43cf33e77bc619b569dbae1fe9a01161641f52c85feaf8937e791d351556d8cf6ccfe57b570b34fa460d33175dfd90a1f8e08486586","tags":[["p","1e978baae414eee990dba992871549ad4a099b9d6f7e71c8059b254ea024dddc"],["p","b970095f84ab487f90bf08f4834c570fba5bf9eba0d4c2df8bfe1f0c1e12aa87"],["p","64e9bb262ee95f2e760fae20808563cc1077cc121c14d19f984c76dc11b59e5d"],["p","2385d0d8e40468afdd954493f3c2b854a124ccbc7dbd9e7b35726c9484c54da2"],["p","4c522cb776898f3d81ecb65335c7301a11166c93bbcbae4b4a723b34d6aa0e9c"],["p","850c06096206411a723b4e35e9af5604f292bcda68a0870ef0c3560be888a579"],["p","69469380b9dd7c7d25a2c04bebbfab86ae7ffb5fbbd4f84fd69b576a226db1e3"],["p","f7be61760ffb8fd22055733b4f01795e8b6bd7ee56063703bf178c597ecd05e5"],["p","02938f55bd3f6f271745cf8d45e57bc214af10473c6208599aee57b15d6e9e88"],["p","c5683bfaedbf58f7a2b9bb4a76132bbb31bb0a4e28f7db077adbc4ad7c8100b0"]]}] +[14:28:40.127] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nostr.wine\":{\"read\":true,\"write\":true},\"wss://nos.lol\":{\"read\":true,\"write\":true},\"wss://nostr.land\":{\"read\":true,\"write\":true},\"wss://relay.damus.io\":{\"read\":true,\"write\":true}}","created_at":1759429701,"id":"c048b4d48e371dea7bb7f764a6ba8acca8b4352822472dd4f1e3fc95ff4a55ae","kind":3,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"2617c175b11e5f032b0ec1bb9f9e7b7cce93daba0ca1b08b8819b8a523bb42094ba24c683e79fadcb741c3a63cb167faa5e6640505124eb9478221109c33cfbe","tags":[["p","3efdaebb1d8923ebd99c9e7ace3b4194ab45512e2be79c1b7d68d9243e0d2681"],["p","5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e"],["p","4c800257a588a82849d049817c2bdaad984b25a45ad9f6dad66e47d3b47e3b2f"],["p","ce1bf9ad92164df227bfcab2813193c60eb4021d35bf4bbbc6fa24c560d0f3e9"],["p","166fe0f534729a6b5f501a3da62f8987e058b2bc8c76a5e762c95047914865eb"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:28:41.334] RECV nos.lol:443: 2f6db84bbcac64467642b7fa4314dbb"],["p","decf2ae424d7e66f49a8377e573b0fd38e5209f5d895571ab6dc0caf30 +[14:28:41.697] RECV nos.lol:443: 63da8f04cbbf6c08c80d20b1"],["p","83e818dfbeccea56b0f55 +[14:28:41.757] RECV nos.lol:443: 76b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","76c +[14:28:42.733] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:42.733] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:42.733] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:42.733] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:42.885] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917403\nWeight: 3983958\nhttps://thebitcoinblockclock.com/blockstr/0000000000000000000037e21227df2c071cd6c75004c4d71192674d161033bf.png","created_at":1759429719,"id":"980f8539c8a67035d49853b0c0a5db8650e4c41c70a7a914439745baf89b357d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"5ae1609e9571edb064780575097d6115d88ba6d25986f4ba66b553f08f279041348e508fa9999bf6c3b38b7c7758b4041ee61020e2b1cec736684b5a87e7a034","tags":[]}] +[14:28:42.946] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Work out your own salvation. Do not depend on others.\n\n#buddha #hindu #quotes #wisdom #spirituality #philosophy","created_at":1759429709,"id":"4fd5e234f52c63171b96b79f8545168277bffe51e90e3caff9769a65bffff674","kind":1,"pubkey":"5c7d484b5dc652992510b358dba3ad0b5594ac668e26a053982d4a3ce1ba5414","sig":"b1820073c3774ef8c51937e8787d4163746158e592538621361b836dc78c432fe0aa27bf17448d3e280009089ed3977a0904d6bdd61d057410195dd1905843d2","tags":[["t","buddha"],["t","hindu"],["t","quotes"],["t","quote"],["t","thoughts"],["t","wisdom"],["t","philosophy"],["t","spirituality"]]}] +[14:28:43.006] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I believe you nat have been misled. For research, videos with the tag \"male solo\" should help. ","created_at":1759429708,"id":"375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"9c3c9fdf6a94fcff39db61f2788ab6a4e095660d63410b6fabe32fd3d500a64f193bf2daab90b4fb5fb6f2e0751ae7e6514f52413cde384fa0db91d0215843fc","tags":[["alt","A short note: I believe you nat have been misled. For research, ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:28:43.067] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Problem is shipping = Dox your home address. We need to fina a way to decouple this stuff.","created_at":1759429700,"id":"d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"b6f6fca9127c5db7e4ac67e0b7ee2fdbadb7c82ab994d422b8c404e2fc1f70e9f8af745d6825b585a4b32a8569780882280193c8db1633cf2be9ead6eeb57cfc","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","6c9e01fbb0ca19f897c294137ad4d4ed5a0c581c7e63a9cacbd0de762aad726f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"]]}] +[14:28:43.092] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Holy shit. I love that machine","created_at":1759429692,"id":"8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","kind":1,"pubkey":"de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a","sig":"3ab8658b2821b6f7664fb2787881cf242f9b5edb2e5ba3905882811567264f00679850d33e75f7b74c4b14964385af6857414d05510ea4b4c5a473cfb43abcda","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"]]}] +[14:28:43.153] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No right or wrong way, just do whatever works for you.","created_at":1759429692,"id":"9e376478b654c4865c67e0014b90d93c2f557eb966d9c9fefc83a5299061a8b3","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"d8acfffb9aa39f66a04584a72cce0e85f255344a8656220c6d5934ef5d80349dd1d6175f90f3e734f225dc8ebdbd5dcd700938d019c3d64832778429095fea83","tags":[["alt","A short note: No right or wrong way, just do whatever works for ..."],["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","wss://nos.lol/","root","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847","wss://nostr-03.dorafactory.org/"]]}] +[14:28:43.214] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah... thank god its automatic. It never stops. Lol ","created_at":1759429690,"id":"3fb166a6d2dcf8a1822fdeac1f7270f6c2ac16f300e1444d65e4bc65ec2fe36f","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"de1a7a1aec47282b50eb1117683c5eb043800e918287d41ed51f717df289ed0605dc2be9d9f24279ca4f50702603c918e0a736f22ca4a6cd926406a4ecb874af","tags":[["alt","A short note: Yeah... thank god its automatic. It never stops. L..."],["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","wss://nostr.azzamo.net/","","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:28:43.274] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This. If it doesn't connect within a couple minutes close the app and try again.","created_at":1759429684,"id":"bd055b907a13b9079f8203ab60262a427a396158bc166ef2a68bbb63b4506ff5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"7552f73202fe65516fef90b811e90e1f52c75e0d6a33f910d9bdfdee43e31029ef945d9d230a1190b5c557d2b6eab754e17b6e5e131ddb9a46fbeaf0b4efe426","tags":[["alt","A short note: This. If it doesn't connect within a couple minute..."],["e","5c9ed00645c15ba66d522aec63fe570fffb0fd0dd966e1d067972812069aac43","wss://relay.primal.net/","root","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["e","ff0d75ed686c3d50470f1968b185ac33aa8692f995a032061e6cd7020390f112","wss://relay.primal.net/","","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927"],["e","c4ab5ccbf1fa4c70a1ed9a8fcfe4ae5ee70e9334cc3dd6f1358991232bcb5bd8","wss://relay.primal.net/","reply","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"],["p","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927","wss://relay.damus.io/"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"]]}] +[14:28:43.335] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔔 Francie pronikla na tanker z ruské stínové flotily. Zatýkala kvůli dronům nad Dánskem: \n\nDění kolem války na Ukrajině sledujeme v online přenosu. \nhttps://zpravy.aktualne.cz/zahranici/valka-na-ukrajine-online-prenos/r~441055587f3211f0b589ac1f6b220ee8/ \n#CzechNews #News #Press #Media","created_at":1759429682,"id":"32f499f26abace3f50957f207eb9abddb74f58df535abf09a7f30a19fb5f8c0a","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"341f4cdd4588fe05c9084be41bac781f087c4eec3dd88e000b06f10ec7731c10e11d1ad16f657e4a73f8975b81faba37966a7cfa9b4c55ebcd82adee7c16f14d","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[14:28:43.395] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"サッカーゴールがちだったかも","created_at":1759429675,"id":"124d83198a2ef19c4198bd326bbf9cfe05ea4a81fcdc3d316bf05e6ef5243001","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba9cc4d28103e55d02aa772c818e7b8354a03bb90dcca36f8e72b1f578bd713b653d4121efa82ba4c80cb127d40ed0e6189bd343944ea09eb22d79c8ddd42874","tags":[]}] +[14:28:43.456] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:43.517] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:43.577] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:43.638] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:43.698] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:43.759] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:43.820] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:43.880] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:43.941] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:44.001] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:44.062] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:44.122] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:44.183] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429714,"id":"bdd18347cf9a5d88dca734835ffa80cd2a53f8604fc1735ee5cdcdc396b6faf7","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"cfbc9a9490f2b518a39fde790205225703cf06eb9d7b3c1640dfdf497a10a0c295588c36257eb0531e184e4e82751d894f1391c162c4ab61290b898929156883","tags":[["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"]]}] +[14:28:44.243] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429703,"id":"99be9ae787a102cbe14c2545937e162243f0bdc8b785fe8500959777e2587ad1","kind":3,"pubkey":"f7be61760ffb8fd22055733b4f01795e8b6bd7ee56063703bf178c597ecd05e5","sig":"2c5bbc429f8cad3d2d0ef43cf33e77bc619b569dbae1fe9a01161641f52c85feaf8937e791d351556d8cf6ccfe57b570b34fa460d33175dfd90a1f8e08486586","tags":[["p","1e978baae414eee990dba992871549ad4a099b9d6f7e71c8059b254ea024dddc"],["p","b970095f84ab487f90bf08f4834c570fba5bf9eba0d4c2df8bfe1f0c1e12aa87"],["p","64e9bb262ee95f2e760fae20808563cc1077cc121c14d19f984c76dc11b59e5d"],["p","2385d0d8e40468afdd954493f3c2b854a124ccbc7dbd9e7b35726c9484c54da2"],["p","4c522cb776898f3d81ecb65335c7301a11166c93bbcbae4b4a723b34d6aa0e9c"],["p","850c06096206411a723b4e35e9af5604f292bcda68a0870ef0c3560be888a579"],["p","69469380b9dd7c7d25a2c04bebbfab86ae7ffb5fbbd4f84fd69b576a226db1e3"],["p","f7be61760ffb8fd22055733b4f01795e8b6bd7ee56063703bf178c597ecd05e5"],["p","02938f55bd3f6f271745cf8d45e57bc214af10473c6208599aee57b15d6e9e88"],["p","c5683bfaedbf58f7a2b9bb4a76132bbb31bb0a4e28f7db077adbc4ad7c8100b0"]]}] +[14:28:44.304] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nostr.wine\":{\"read\":true,\"write\":true},\"wss://nos.lol\":{\"read\":true,\"write\":true},\"wss://nostr.land\":{\"read\":true,\"write\":true},\"wss://relay.damus.io\":{\"read\":true,\"write\":true}}","created_at":1759429701,"id":"c048b4d48e371dea7bb7f764a6ba8acca8b4352822472dd4f1e3fc95ff4a55ae","kind":3,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"2617c175b11e5f032b0ec1bb9f9e7b7cce93daba0ca1b08b8819b8a523bb42094ba24c683e79fadcb741c3a63cb167faa5e6640505124eb9478221109c33cfbe","tags":[["p","3efdaebb1d8923ebd99c9e7ace3b4194ab45512e2be79c1b7d68d9243e0d2681"],["p","5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e"],["p","4c800257a588a82849d049817c2bdaad984b25a45ad9f6dad66e47d3b47e3b2f"],["p","ce1bf9ad92164df227bfcab2813193c60eb4021d35bf4bbbc6fa24c560d0f3e9"],["p","166fe0f534729a6b5f501a3da62f8987e058b2bc8c76a5e762c95047914865eb"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:28:45.513] RECV nos.lol:443: 2f6db84bbcac64467642b7fa4314dbb"],["p","decf2ae424d7e66f49a8377e573b0fd38e5209f5d895571ab6dc0caf30 +[14:28:45.875] RECV nos.lol:443: 63da8f04cbbf6c08c80d20b1"],["p","83e818dfbeccea56b0f55 +[14:28:45.935] RECV nos.lol:443: 76b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","76c +[14:28:46.910] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:46.910] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:46.910] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:46.910] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:47.061] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:35 @ 917,403","created_at":1759429724,"id":"f1040d1b0ec51e190d65603fab1030c4f0cde0d656660ed9616ad9971416469c","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"9aee72b5aa122e0f68ddf0fc0459c277eea998188c3e5e27b846a352c139264d4243dbf9c870fe7b89068269cbacca11d0bc14f5672bcd167bbe2e62e309eb88","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:28:47.122] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yessir ✅ followed \n\n","created_at":1759429721,"id":"2896e1b671e73097529fbff6619732040d5b38a2c84c5a040b78bc1259f4cbd0","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"fcbad4324352fc5af854fd0eb20215353de9fdd44bc24904e31051fb71651dbb415161d484aa4d9fe510ce4776af86b5463f6afd86f129282090f10d13dfe663","tags":[["p","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"],["e","0b22d89c3d6ed018d38e4b84ff8d2e7340f39463ddc0e84a52e56975482eaafa","","root","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"]]}] +[14:28:47.183] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917403\nWeight: 3983958\nhttps://thebitcoinblockclock.com/blockstr/0000000000000000000037e21227df2c071cd6c75004c4d71192674d161033bf.png","created_at":1759429719,"id":"980f8539c8a67035d49853b0c0a5db8650e4c41c70a7a914439745baf89b357d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"5ae1609e9571edb064780575097d6115d88ba6d25986f4ba66b553f08f279041348e508fa9999bf6c3b38b7c7758b4041ee61020e2b1cec736684b5a87e7a034","tags":[]}] +[14:28:47.243] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Work out your own salvation. Do not depend on others.\n\n#buddha #hindu #quotes #wisdom #spirituality #philosophy","created_at":1759429709,"id":"4fd5e234f52c63171b96b79f8545168277bffe51e90e3caff9769a65bffff674","kind":1,"pubkey":"5c7d484b5dc652992510b358dba3ad0b5594ac668e26a053982d4a3ce1ba5414","sig":"b1820073c3774ef8c51937e8787d4163746158e592538621361b836dc78c432fe0aa27bf17448d3e280009089ed3977a0904d6bdd61d057410195dd1905843d2","tags":[["t","buddha"],["t","hindu"],["t","quotes"],["t","quote"],["t","thoughts"],["t","wisdom"],["t","philosophy"],["t","spirituality"]]}] +[14:28:47.304] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I believe you nat have been misled. For research, videos with the tag \"male solo\" should help. ","created_at":1759429708,"id":"375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"9c3c9fdf6a94fcff39db61f2788ab6a4e095660d63410b6fabe32fd3d500a64f193bf2daab90b4fb5fb6f2e0751ae7e6514f52413cde384fa0db91d0215843fc","tags":[["alt","A short note: I believe you nat have been misled. For research, ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:28:47.364] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Problem is shipping = Dox your home address. We need to fina a way to decouple this stuff.","created_at":1759429700,"id":"d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"b6f6fca9127c5db7e4ac67e0b7ee2fdbadb7c82ab994d422b8c404e2fc1f70e9f8af745d6825b585a4b32a8569780882280193c8db1633cf2be9ead6eeb57cfc","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","6c9e01fbb0ca19f897c294137ad4d4ed5a0c581c7e63a9cacbd0de762aad726f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"]]}] +[14:28:47.425] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Holy shit. I love that machine","created_at":1759429692,"id":"8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","kind":1,"pubkey":"de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a","sig":"3ab8658b2821b6f7664fb2787881cf242f9b5edb2e5ba3905882811567264f00679850d33e75f7b74c4b14964385af6857414d05510ea4b4c5a473cfb43abcda","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"]]}] +[14:28:47.485] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No right or wrong way, just do whatever works for you.","created_at":1759429692,"id":"9e376478b654c4865c67e0014b90d93c2f557eb966d9c9fefc83a5299061a8b3","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"d8acfffb9aa39f66a04584a72cce0e85f255344a8656220c6d5934ef5d80349dd1d6175f90f3e734f225dc8ebdbd5dcd700938d019c3d64832778429095fea83","tags":[["alt","A short note: No right or wrong way, just do whatever works for ..."],["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","wss://nos.lol/","root","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847","wss://nostr-03.dorafactory.org/"]]}] +[14:28:47.546] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah... thank god its automatic. It never stops. Lol ","created_at":1759429690,"id":"3fb166a6d2dcf8a1822fdeac1f7270f6c2ac16f300e1444d65e4bc65ec2fe36f","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"de1a7a1aec47282b50eb1117683c5eb043800e918287d41ed51f717df289ed0605dc2be9d9f24279ca4f50702603c918e0a736f22ca4a6cd926406a4ecb874af","tags":[["alt","A short note: Yeah... thank god its automatic. It never stops. L..."],["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","wss://nostr.azzamo.net/","","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:28:47.607] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This. If it doesn't connect within a couple minutes close the app and try again.","created_at":1759429684,"id":"bd055b907a13b9079f8203ab60262a427a396158bc166ef2a68bbb63b4506ff5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"7552f73202fe65516fef90b811e90e1f52c75e0d6a33f910d9bdfdee43e31029ef945d9d230a1190b5c557d2b6eab754e17b6e5e131ddb9a46fbeaf0b4efe426","tags":[["alt","A short note: This. If it doesn't connect within a couple minute..."],["e","5c9ed00645c15ba66d522aec63fe570fffb0fd0dd966e1d067972812069aac43","wss://relay.primal.net/","root","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["e","ff0d75ed686c3d50470f1968b185ac33aa8692f995a032061e6cd7020390f112","wss://relay.primal.net/","","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927"],["e","c4ab5ccbf1fa4c70a1ed9a8fcfe4ae5ee70e9334cc3dd6f1358991232bcb5bd8","wss://relay.primal.net/","reply","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"],["p","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927","wss://relay.damus.io/"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"]]}] +[14:28:47.667] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:47.728] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:47.789] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:47.849] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:47.909] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:47.970] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:48.030] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:48.091] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:48.119] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:48.179] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:48.240] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:48.300] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:48.361] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429714,"id":"bdd18347cf9a5d88dca734835ffa80cd2a53f8604fc1735ee5cdcdc396b6faf7","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"cfbc9a9490f2b518a39fde790205225703cf06eb9d7b3c1640dfdf497a10a0c295588c36257eb0531e184e4e82751d894f1391c162c4ab61290b898929156883","tags":[["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"]]}] +[14:28:48.422] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429703,"id":"99be9ae787a102cbe14c2545937e162243f0bdc8b785fe8500959777e2587ad1","kind":3,"pubkey":"f7be61760ffb8fd22055733b4f01795e8b6bd7ee56063703bf178c597ecd05e5","sig":"2c5bbc429f8cad3d2d0ef43cf33e77bc619b569dbae1fe9a01161641f52c85feaf8937e791d351556d8cf6ccfe57b570b34fa460d33175dfd90a1f8e08486586","tags":[["p","1e978baae414eee990dba992871549ad4a099b9d6f7e71c8059b254ea024dddc"],["p","b970095f84ab487f90bf08f4834c570fba5bf9eba0d4c2df8bfe1f0c1e12aa87"],["p","64e9bb262ee95f2e760fae20808563cc1077cc121c14d19f984c76dc11b59e5d"],["p","2385d0d8e40468afdd954493f3c2b854a124ccbc7dbd9e7b35726c9484c54da2"],["p","4c522cb776898f3d81ecb65335c7301a11166c93bbcbae4b4a723b34d6aa0e9c"],["p","850c06096206411a723b4e35e9af5604f292bcda68a0870ef0c3560be888a579"],["p","69469380b9dd7c7d25a2c04bebbfab86ae7ffb5fbbd4f84fd69b576a226db1e3"],["p","f7be61760ffb8fd22055733b4f01795e8b6bd7ee56063703bf178c597ecd05e5"],["p","02938f55bd3f6f271745cf8d45e57bc214af10473c6208599aee57b15d6e9e88"],["p","c5683bfaedbf58f7a2b9bb4a76132bbb31bb0a4e28f7db077adbc4ad7c8100b0"]]}] +[14:28:48.482] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nostr.wine\":{\"read\":true,\"write\":true},\"wss://nos.lol\":{\"read\":true,\"write\":true},\"wss://nostr.land\":{\"read\":true,\"write\":true},\"wss://relay.damus.io\":{\"read\":true,\"write\":true}}","created_at":1759429701,"id":"c048b4d48e371dea7bb7f764a6ba8acca8b4352822472dd4f1e3fc95ff4a55ae","kind":3,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"2617c175b11e5f032b0ec1bb9f9e7b7cce93daba0ca1b08b8819b8a523bb42094ba24c683e79fadcb741c3a63cb167faa5e6640505124eb9478221109c33cfbe","tags":[["p","3efdaebb1d8923ebd99c9e7ace3b4194ab45512e2be79c1b7d68d9243e0d2681"],["p","5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e"],["p","4c800257a588a82849d049817c2bdaad984b25a45ad9f6dad66e47d3b47e3b2f"],["p","ce1bf9ad92164df227bfcab2813193c60eb4021d35bf4bbbc6fa24c560d0f3e9"],["p","166fe0f534729a6b5f501a3da62f8987e058b2bc8c76a5e762c95047914865eb"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:28:49.691] RECV nos.lol:443: 2f6db84bbcac64467642b7fa4314dbb"],["p","decf2ae424d7e66f49a8377e573b0fd38e5209f5d895571ab6dc0caf30 +[14:28:50.054] RECV nos.lol:443: 63da8f04cbbf6c08c80d20b1"],["p","83e818dfbeccea56b0f55 +[14:28:50.114] RECV nos.lol:443: 76b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","76c +[14:28:51.090] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:51.090] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:51.091] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:51.091] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:51.243] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"マケイン8巻読みながら\nかーっ!\n見んね杏奈!\n卑しか女ばい!\nを連呼するボットになってる\n","created_at":1759429727,"id":"c9f0f90718e6baca4a92d673505a000223471e6356f476e230ad5393f44358a5","kind":1,"pubkey":"269e6f57aa9a200c814e6b98721819dde038ca60c0390b87b658d300ab6d0d04","sig":"664b8951fd2ab1fb82b561f738ce12d60bca2ec603a08ff17e799955dc36f331a2aed2868ee610754262833f67f84d0647750a2232aaa4252bd8d12317c48cc9","tags":[]}] +[14:28:51.303] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:35 @ 917,403","created_at":1759429724,"id":"f1040d1b0ec51e190d65603fab1030c4f0cde0d656660ed9616ad9971416469c","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"9aee72b5aa122e0f68ddf0fc0459c277eea998188c3e5e27b846a352c139264d4243dbf9c870fe7b89068269cbacca11d0bc14f5672bcd167bbe2e62e309eb88","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:28:51.364] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yessir ✅ followed \n\n","created_at":1759429721,"id":"2896e1b671e73097529fbff6619732040d5b38a2c84c5a040b78bc1259f4cbd0","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"fcbad4324352fc5af854fd0eb20215353de9fdd44bc24904e31051fb71651dbb415161d484aa4d9fe510ce4776af86b5463f6afd86f129282090f10d13dfe663","tags":[["p","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"],["e","0b22d89c3d6ed018d38e4b84ff8d2e7340f39463ddc0e84a52e56975482eaafa","","root","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"]]}] +[14:28:51.424] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917403\nWeight: 3983958\nhttps://thebitcoinblockclock.com/blockstr/0000000000000000000037e21227df2c071cd6c75004c4d71192674d161033bf.png","created_at":1759429719,"id":"980f8539c8a67035d49853b0c0a5db8650e4c41c70a7a914439745baf89b357d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"5ae1609e9571edb064780575097d6115d88ba6d25986f4ba66b553f08f279041348e508fa9999bf6c3b38b7c7758b4041ee61020e2b1cec736684b5a87e7a034","tags":[]}] +[14:28:51.485] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Work out your own salvation. Do not depend on others.\n\n#buddha #hindu #quotes #wisdom #spirituality #philosophy","created_at":1759429709,"id":"4fd5e234f52c63171b96b79f8545168277bffe51e90e3caff9769a65bffff674","kind":1,"pubkey":"5c7d484b5dc652992510b358dba3ad0b5594ac668e26a053982d4a3ce1ba5414","sig":"b1820073c3774ef8c51937e8787d4163746158e592538621361b836dc78c432fe0aa27bf17448d3e280009089ed3977a0904d6bdd61d057410195dd1905843d2","tags":[["t","buddha"],["t","hindu"],["t","quotes"],["t","quote"],["t","thoughts"],["t","wisdom"],["t","philosophy"],["t","spirituality"]]}] +[14:28:51.545] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I believe you nat have been misled. For research, videos with the tag \"male solo\" should help. ","created_at":1759429708,"id":"375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"9c3c9fdf6a94fcff39db61f2788ab6a4e095660d63410b6fabe32fd3d500a64f193bf2daab90b4fb5fb6f2e0751ae7e6514f52413cde384fa0db91d0215843fc","tags":[["alt","A short note: I believe you nat have been misled. For research, ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:28:51.606] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Problem is shipping = Dox your home address. We need to fina a way to decouple this stuff.","created_at":1759429700,"id":"d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"b6f6fca9127c5db7e4ac67e0b7ee2fdbadb7c82ab994d422b8c404e2fc1f70e9f8af745d6825b585a4b32a8569780882280193c8db1633cf2be9ead6eeb57cfc","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","6c9e01fbb0ca19f897c294137ad4d4ed5a0c581c7e63a9cacbd0de762aad726f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"]]}] +[14:28:51.667] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Holy shit. I love that machine","created_at":1759429692,"id":"8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","kind":1,"pubkey":"de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a","sig":"3ab8658b2821b6f7664fb2787881cf242f9b5edb2e5ba3905882811567264f00679850d33e75f7b74c4b14964385af6857414d05510ea4b4c5a473cfb43abcda","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"]]}] +[14:28:51.727] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No right or wrong way, just do whatever works for you.","created_at":1759429692,"id":"9e376478b654c4865c67e0014b90d93c2f557eb966d9c9fefc83a5299061a8b3","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"d8acfffb9aa39f66a04584a72cce0e85f255344a8656220c6d5934ef5d80349dd1d6175f90f3e734f225dc8ebdbd5dcd700938d019c3d64832778429095fea83","tags":[["alt","A short note: No right or wrong way, just do whatever works for ..."],["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","wss://nos.lol/","root","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847","wss://nostr-03.dorafactory.org/"]]}] +[14:28:51.788] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah... thank god its automatic. It never stops. Lol ","created_at":1759429690,"id":"3fb166a6d2dcf8a1822fdeac1f7270f6c2ac16f300e1444d65e4bc65ec2fe36f","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"de1a7a1aec47282b50eb1117683c5eb043800e918287d41ed51f717df289ed0605dc2be9d9f24279ca4f50702603c918e0a736f22ca4a6cd926406a4ecb874af","tags":[["alt","A short note: Yeah... thank god its automatic. It never stops. L..."],["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","wss://nostr.azzamo.net/","","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:28:51.848] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:51.909] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:51.970] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:52.030] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:52.091] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:52.152] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:52.212] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:52.272] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:52.333] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:52.393] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:52.454] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:52.515] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:52.575] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429714,"id":"bdd18347cf9a5d88dca734835ffa80cd2a53f8604fc1735ee5cdcdc396b6faf7","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"cfbc9a9490f2b518a39fde790205225703cf06eb9d7b3c1640dfdf497a10a0c295588c36257eb0531e184e4e82751d894f1391c162c4ab61290b898929156883","tags":[["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"]]}] +[14:28:52.636] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429703,"id":"99be9ae787a102cbe14c2545937e162243f0bdc8b785fe8500959777e2587ad1","kind":3,"pubkey":"f7be61760ffb8fd22055733b4f01795e8b6bd7ee56063703bf178c597ecd05e5","sig":"2c5bbc429f8cad3d2d0ef43cf33e77bc619b569dbae1fe9a01161641f52c85feaf8937e791d351556d8cf6ccfe57b570b34fa460d33175dfd90a1f8e08486586","tags":[["p","1e978baae414eee990dba992871549ad4a099b9d6f7e71c8059b254ea024dddc"],["p","b970095f84ab487f90bf08f4834c570fba5bf9eba0d4c2df8bfe1f0c1e12aa87"],["p","64e9bb262ee95f2e760fae20808563cc1077cc121c14d19f984c76dc11b59e5d"],["p","2385d0d8e40468afdd954493f3c2b854a124ccbc7dbd9e7b35726c9484c54da2"],["p","4c522cb776898f3d81ecb65335c7301a11166c93bbcbae4b4a723b34d6aa0e9c"],["p","850c06096206411a723b4e35e9af5604f292bcda68a0870ef0c3560be888a579"],["p","69469380b9dd7c7d25a2c04bebbfab86ae7ffb5fbbd4f84fd69b576a226db1e3"],["p","f7be61760ffb8fd22055733b4f01795e8b6bd7ee56063703bf178c597ecd05e5"],["p","02938f55bd3f6f271745cf8d45e57bc214af10473c6208599aee57b15d6e9e88"],["p","c5683bfaedbf58f7a2b9bb4a76132bbb31bb0a4e28f7db077adbc4ad7c8100b0"]]}] +[14:28:52.696] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nostr.wine\":{\"read\":true,\"write\":true},\"wss://nos.lol\":{\"read\":true,\"write\":true},\"wss://nostr.land\":{\"read\":true,\"write\":true},\"wss://relay.damus.io\":{\"read\":true,\"write\":true}}","created_at":1759429701,"id":"c048b4d48e371dea7bb7f764a6ba8acca8b4352822472dd4f1e3fc95ff4a55ae","kind":3,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"2617c175b11e5f032b0ec1bb9f9e7b7cce93daba0ca1b08b8819b8a523bb42094ba24c683e79fadcb741c3a63cb167faa5e6640505124eb9478221109c33cfbe","tags":[["p","3efdaebb1d8923ebd99c9e7ace3b4194ab45512e2be79c1b7d68d9243e0d2681"],["p","5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e"],["p","4c800257a588a82849d049817c2bdaad984b25a45ad9f6dad66e47d3b47e3b2f"],["p","ce1bf9ad92164df227bfcab2813193c60eb4021d35bf4bbbc6fa24c560d0f3e9"],["p","166fe0f534729a6b5f501a3da62f8987e058b2bc8c76a5e762c95047914865eb"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:28:53.870] RECV nos.lol:443: 2f6db84bbcac64467642b7fa4314dbb"],["p","decf2ae424d7e66f49a8377e573b0fd38e5209f5d895571ab6dc0caf30 +[14:28:54.232] RECV nos.lol:443: 63da8f04cbbf6c08c80d20b1"],["p","83e818dfbeccea56b0f55 +[14:28:54.293] RECV nos.lol:443: 76b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","76c +[14:28:55.897] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:55.897] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:55.897] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:55.897] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:55.957] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:28:56.069] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:28:56.129] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I was like oh cute it's cleaning it's belly, then it moved and I was all nonononono 😂😂","created_at":1759429733,"id":"0756efbdd55c9aa0b81ffbc5e1803eeca9b956ba000f655bd7136882480b2a3b","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"a34963bf3d1e678c019815dc3021884eef57cfb69203528f09fa6b9abd759f7e4759a8eca711b84a4c74582540e88e049c971def9837834bcef60cead64dce8f","tags":[["alt","A short note: I was like oh cute it's cleaning it's belly, then ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","wss://nos.lol/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[14:28:56.190] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"マケイン8巻読みながら\nかーっ!\n見んね杏奈!\n卑しか女ばい!\nを連呼するボットになってる\n","created_at":1759429727,"id":"c9f0f90718e6baca4a92d673505a000223471e6356f476e230ad5393f44358a5","kind":1,"pubkey":"269e6f57aa9a200c814e6b98721819dde038ca60c0390b87b658d300ab6d0d04","sig":"664b8951fd2ab1fb82b561f738ce12d60bca2ec603a08ff17e799955dc36f331a2aed2868ee610754262833f67f84d0647750a2232aaa4252bd8d12317c48cc9","tags":[]}] +[14:28:56.251] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:35 @ 917,403","created_at":1759429724,"id":"f1040d1b0ec51e190d65603fab1030c4f0cde0d656660ed9616ad9971416469c","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"9aee72b5aa122e0f68ddf0fc0459c277eea998188c3e5e27b846a352c139264d4243dbf9c870fe7b89068269cbacca11d0bc14f5672bcd167bbe2e62e309eb88","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:28:56.311] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yessir ✅ followed \n\n","created_at":1759429721,"id":"2896e1b671e73097529fbff6619732040d5b38a2c84c5a040b78bc1259f4cbd0","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"fcbad4324352fc5af854fd0eb20215353de9fdd44bc24904e31051fb71651dbb415161d484aa4d9fe510ce4776af86b5463f6afd86f129282090f10d13dfe663","tags":[["p","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"],["e","0b22d89c3d6ed018d38e4b84ff8d2e7340f39463ddc0e84a52e56975482eaafa","","root","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"]]}] +[14:28:56.372] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917403\nWeight: 3983958\nhttps://thebitcoinblockclock.com/blockstr/0000000000000000000037e21227df2c071cd6c75004c4d71192674d161033bf.png","created_at":1759429719,"id":"980f8539c8a67035d49853b0c0a5db8650e4c41c70a7a914439745baf89b357d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"5ae1609e9571edb064780575097d6115d88ba6d25986f4ba66b553f08f279041348e508fa9999bf6c3b38b7c7758b4041ee61020e2b1cec736684b5a87e7a034","tags":[]}] +[14:28:56.433] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Work out your own salvation. Do not depend on others.\n\n#buddha #hindu #quotes #wisdom #spirituality #philosophy","created_at":1759429709,"id":"4fd5e234f52c63171b96b79f8545168277bffe51e90e3caff9769a65bffff674","kind":1,"pubkey":"5c7d484b5dc652992510b358dba3ad0b5594ac668e26a053982d4a3ce1ba5414","sig":"b1820073c3774ef8c51937e8787d4163746158e592538621361b836dc78c432fe0aa27bf17448d3e280009089ed3977a0904d6bdd61d057410195dd1905843d2","tags":[["t","buddha"],["t","hindu"],["t","quotes"],["t","quote"],["t","thoughts"],["t","wisdom"],["t","philosophy"],["t","spirituality"]]}] +[14:28:56.493] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I believe you nat have been misled. For research, videos with the tag \"male solo\" should help. ","created_at":1759429708,"id":"375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"9c3c9fdf6a94fcff39db61f2788ab6a4e095660d63410b6fabe32fd3d500a64f193bf2daab90b4fb5fb6f2e0751ae7e6514f52413cde384fa0db91d0215843fc","tags":[["alt","A short note: I believe you nat have been misled. For research, ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:28:56.554] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Problem is shipping = Dox your home address. We need to fina a way to decouple this stuff.","created_at":1759429700,"id":"d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"b6f6fca9127c5db7e4ac67e0b7ee2fdbadb7c82ab994d422b8c404e2fc1f70e9f8af745d6825b585a4b32a8569780882280193c8db1633cf2be9ead6eeb57cfc","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","6c9e01fbb0ca19f897c294137ad4d4ed5a0c581c7e63a9cacbd0de762aad726f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"]]}] +[14:28:56.614] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Holy shit. I love that machine","created_at":1759429692,"id":"8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","kind":1,"pubkey":"de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a","sig":"3ab8658b2821b6f7664fb2787881cf242f9b5edb2e5ba3905882811567264f00679850d33e75f7b74c4b14964385af6857414d05510ea4b4c5a473cfb43abcda","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"]]}] +[14:28:56.674] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:56.735] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:56.796] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:56.856] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:56.917] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:56.977] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:57.038] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:57.098] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:57.159] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:57.220] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:57.280] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:57.341] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:57.825] RECV nos.lol:443: 5cbbd"],["p","fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52"],["p","ad9738030ab +[14:28:58.619] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:58.619] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:58.619] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:58.619] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:58.771] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"They'll backtrack. We need real solutions, not Band-Aids on top of Band-Aids.","created_at":1759429738,"id":"35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","kind":1,"pubkey":"55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","sig":"511bb0ecd310003032a25ce3ca087d2501ef20c46becd7f4d806cea19769bcb69945e2e55d988ed04dc32d23aa1bb39ba8ca7507be22aaf91496ef7fb3ce3027","tags":[["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","","root"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","","reply"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"]]}] +[14:28:58.781] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:28:58.842] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I was like oh cute it's cleaning it's belly, then it moved and I was all nonononono 😂😂","created_at":1759429733,"id":"0756efbdd55c9aa0b81ffbc5e1803eeca9b956ba000f655bd7136882480b2a3b","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"a34963bf3d1e678c019815dc3021884eef57cfb69203528f09fa6b9abd759f7e4759a8eca711b84a4c74582540e88e049c971def9837834bcef60cead64dce8f","tags":[["alt","A short note: I was like oh cute it's cleaning it's belly, then ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","wss://nos.lol/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[14:28:58.902] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"マケイン8巻読みながら\nかーっ!\n見んね杏奈!\n卑しか女ばい!\nを連呼するボットになってる\n","created_at":1759429727,"id":"c9f0f90718e6baca4a92d673505a000223471e6356f476e230ad5393f44358a5","kind":1,"pubkey":"269e6f57aa9a200c814e6b98721819dde038ca60c0390b87b658d300ab6d0d04","sig":"664b8951fd2ab1fb82b561f738ce12d60bca2ec603a08ff17e799955dc36f331a2aed2868ee610754262833f67f84d0647750a2232aaa4252bd8d12317c48cc9","tags":[]}] +[14:28:58.963] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:35 @ 917,403","created_at":1759429724,"id":"f1040d1b0ec51e190d65603fab1030c4f0cde0d656660ed9616ad9971416469c","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"9aee72b5aa122e0f68ddf0fc0459c277eea998188c3e5e27b846a352c139264d4243dbf9c870fe7b89068269cbacca11d0bc14f5672bcd167bbe2e62e309eb88","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:28:59.023] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yessir ✅ followed \n\n","created_at":1759429721,"id":"2896e1b671e73097529fbff6619732040d5b38a2c84c5a040b78bc1259f4cbd0","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"fcbad4324352fc5af854fd0eb20215353de9fdd44bc24904e31051fb71651dbb415161d484aa4d9fe510ce4776af86b5463f6afd86f129282090f10d13dfe663","tags":[["p","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"],["e","0b22d89c3d6ed018d38e4b84ff8d2e7340f39463ddc0e84a52e56975482eaafa","","root","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"]]}] +[14:28:59.084] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917403\nWeight: 3983958\nhttps://thebitcoinblockclock.com/blockstr/0000000000000000000037e21227df2c071cd6c75004c4d71192674d161033bf.png","created_at":1759429719,"id":"980f8539c8a67035d49853b0c0a5db8650e4c41c70a7a914439745baf89b357d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"5ae1609e9571edb064780575097d6115d88ba6d25986f4ba66b553f08f279041348e508fa9999bf6c3b38b7c7758b4041ee61020e2b1cec736684b5a87e7a034","tags":[]}] +[14:28:59.144] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Work out your own salvation. Do not depend on others.\n\n#buddha #hindu #quotes #wisdom #spirituality #philosophy","created_at":1759429709,"id":"4fd5e234f52c63171b96b79f8545168277bffe51e90e3caff9769a65bffff674","kind":1,"pubkey":"5c7d484b5dc652992510b358dba3ad0b5594ac668e26a053982d4a3ce1ba5414","sig":"b1820073c3774ef8c51937e8787d4163746158e592538621361b836dc78c432fe0aa27bf17448d3e280009089ed3977a0904d6bdd61d057410195dd1905843d2","tags":[["t","buddha"],["t","hindu"],["t","quotes"],["t","quote"],["t","thoughts"],["t","wisdom"],["t","philosophy"],["t","spirituality"]]}] +[14:28:59.205] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I believe you nat have been misled. For research, videos with the tag \"male solo\" should help. ","created_at":1759429708,"id":"375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"9c3c9fdf6a94fcff39db61f2788ab6a4e095660d63410b6fabe32fd3d500a64f193bf2daab90b4fb5fb6f2e0751ae7e6514f52413cde384fa0db91d0215843fc","tags":[["alt","A short note: I believe you nat have been misled. For research, ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:28:59.266] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Don’t forget to tell others about bitcoin. They’ll hold you accountable either way in the future anyhow.","created_at":1759429704,"id":"7444d7becc08b3859b54c3450921bdf6d6b50968b927dc61994692b0f232337a","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"53d81ca29b3e6ed35a9c4862ffbe06eb619dd0ed8ea7f63edc925de6358e2249ebd95ed32d246261977f87bde27811bd98bfbe1aae2dfc3a962c45d8141f5feb","tags":[]}] +[14:28:59.326] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:59.387] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:59.447] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:59.508] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:59.569] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:59.629] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:59.690] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:59.750] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:59.811] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:59.872] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:59.932] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:59.993] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:00.477] RECV nos.lol:443: 5cbbd"],["p","fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52"],["p","ad9738030ab +[14:29:01.271] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:01.271] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:01.271] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:01.271] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:01.423] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Join nostr:nprofile1qyxhwumn8ghj7mn0wvhxcmmvqyv8wumn8ghj7urjv4kkjatd9ec8y6tdv9kzumn9wsqzqkcpsw4kc03j906dg8rt8thes432z3yy0d6fj4phylz48xs3g4373hv8n6 and me for episode 131 of nostr:nprofile1qy88wumn8ghj7mn0wvhxcmmv9uq36amnwvaz7tmwdaehgu3wvf5hgcm0d9hx2u3wwdhkx6tpdshsqg9dn4pzq07jfq829ewyceze8gp8wz9whc4s92nqh4a36end4fds35xl9mtm tomorrow, Friday – October 3rd at 5pm ET (UTC -4)\n\nOur guest this week is nostr:nprofile1qyt8wumn8ghj7ct8vaezumn0wd68ytnvv9hxgtcpz9mhxue69uhkummnw3ezumrpdejz7qpqwf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgshcqyxr , creator of nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qpq0r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7s85uvay who joins us to discuss that, web-of-trust, and much much more\n\nSet your blockclocks!\n\nThe show will be streamed live on zap.stream/pcr and will also be available on Nostur, Fountain, and Primal","created_at":1759429738,"id":"38ceb6be096273d173df7d73231bdd980d4bb323eabd3836e81c85b89e93c83e","kind":1,"pubkey":"b83a28b7e4e5d20bd960c5faeb6625f95529166b8bdb045d42634a2f35919450","sig":"c6b0c38d99e1314ecaffb2da6885ac55d266514616a3209d4ec47b4f0573ba7b2bdb3732a2bf1fa8f4b8772f04f7dbf09d61bfe74418a7647260c484086e899d","tags":[["p","5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e","wss://nos.lol","mention"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d","wss://nos.lol/","mention"],["p","726a1e261cc6474674e8285e3951b3bb139be9a773d1acf49dc868db861a1c11","wss://aggr.nostr.land/","mention"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/","mention"],["r","wss://nos.lol/"]]}] +[14:29:01.484] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"They'll backtrack. We need real solutions, not Band-Aids on top of Band-Aids.","created_at":1759429738,"id":"35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","kind":1,"pubkey":"55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","sig":"511bb0ecd310003032a25ce3ca087d2501ef20c46becd7f4d806cea19769bcb69945e2e55d988ed04dc32d23aa1bb39ba8ca7507be22aaf91496ef7fb3ce3027","tags":[["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","","root"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","","reply"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"]]}] +[14:29:01.544] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:29:01.605] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I was like oh cute it's cleaning it's belly, then it moved and I was all nonononono 😂😂","created_at":1759429733,"id":"0756efbdd55c9aa0b81ffbc5e1803eeca9b956ba000f655bd7136882480b2a3b","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"a34963bf3d1e678c019815dc3021884eef57cfb69203528f09fa6b9abd759f7e4759a8eca711b84a4c74582540e88e049c971def9837834bcef60cead64dce8f","tags":[["alt","A short note: I was like oh cute it's cleaning it's belly, then ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","wss://nos.lol/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[14:29:01.665] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"マケイン8巻読みながら\nかーっ!\n見んね杏奈!\n卑しか女ばい!\nを連呼するボットになってる\n","created_at":1759429727,"id":"c9f0f90718e6baca4a92d673505a000223471e6356f476e230ad5393f44358a5","kind":1,"pubkey":"269e6f57aa9a200c814e6b98721819dde038ca60c0390b87b658d300ab6d0d04","sig":"664b8951fd2ab1fb82b561f738ce12d60bca2ec603a08ff17e799955dc36f331a2aed2868ee610754262833f67f84d0647750a2232aaa4252bd8d12317c48cc9","tags":[]}] +[14:29:01.726] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:35 @ 917,403","created_at":1759429724,"id":"f1040d1b0ec51e190d65603fab1030c4f0cde0d656660ed9616ad9971416469c","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"9aee72b5aa122e0f68ddf0fc0459c277eea998188c3e5e27b846a352c139264d4243dbf9c870fe7b89068269cbacca11d0bc14f5672bcd167bbe2e62e309eb88","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:29:01.786] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yessir ✅ followed \n\n","created_at":1759429721,"id":"2896e1b671e73097529fbff6619732040d5b38a2c84c5a040b78bc1259f4cbd0","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"fcbad4324352fc5af854fd0eb20215353de9fdd44bc24904e31051fb71651dbb415161d484aa4d9fe510ce4776af86b5463f6afd86f129282090f10d13dfe663","tags":[["p","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"],["e","0b22d89c3d6ed018d38e4b84ff8d2e7340f39463ddc0e84a52e56975482eaafa","","root","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"]]}] +[14:29:01.847] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917403\nWeight: 3983958\nhttps://thebitcoinblockclock.com/blockstr/0000000000000000000037e21227df2c071cd6c75004c4d71192674d161033bf.png","created_at":1759429719,"id":"980f8539c8a67035d49853b0c0a5db8650e4c41c70a7a914439745baf89b357d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"5ae1609e9571edb064780575097d6115d88ba6d25986f4ba66b553f08f279041348e508fa9999bf6c3b38b7c7758b4041ee61020e2b1cec736684b5a87e7a034","tags":[]}] +[14:29:01.907] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Work out your own salvation. Do not depend on others.\n\n#buddha #hindu #quotes #wisdom #spirituality #philosophy","created_at":1759429709,"id":"4fd5e234f52c63171b96b79f8545168277bffe51e90e3caff9769a65bffff674","kind":1,"pubkey":"5c7d484b5dc652992510b358dba3ad0b5594ac668e26a053982d4a3ce1ba5414","sig":"b1820073c3774ef8c51937e8787d4163746158e592538621361b836dc78c432fe0aa27bf17448d3e280009089ed3977a0904d6bdd61d057410195dd1905843d2","tags":[["t","buddha"],["t","hindu"],["t","quotes"],["t","quote"],["t","thoughts"],["t","wisdom"],["t","philosophy"],["t","spirituality"]]}] +[14:29:01.968] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I believe you nat have been misled. For research, videos with the tag \"male solo\" should help. ","created_at":1759429708,"id":"375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"9c3c9fdf6a94fcff39db61f2788ab6a4e095660d63410b6fabe32fd3d500a64f193bf2daab90b4fb5fb6f2e0751ae7e6514f52413cde384fa0db91d0215843fc","tags":[["alt","A short note: I believe you nat have been misled. For research, ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:29:02.028] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:02.089] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:02.149] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:02.210] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:02.271] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:02.331] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:02.392] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:02.452] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:02.513] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:02.573] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:02.634] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:29:02.694] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:03.143] RECV nos.lol:443: 5cbbd"],["p","fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52"],["p","ad9738030ab +[14:29:03.936] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:03.936] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:03.936] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:03.936] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:04.097] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に線で囲い書いてた","created_at":1759429743,"id":"ee6651f570e07c08dd586694570109f636f57057dcea938e26f155fc005ffe43","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"6e792e286d30bdc8aeb6bb8859850d9f5add0a78fa427446333acc7fba96ad12575ab6e5865793874ea4a33e0f3fbcab3508442d99107c75ee1b01845dcd5289","tags":[]}] +[14:29:04.158] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Join nostr:nprofile1qyxhwumn8ghj7mn0wvhxcmmvqyv8wumn8ghj7urjv4kkjatd9ec8y6tdv9kzumn9wsqzqkcpsw4kc03j906dg8rt8thes432z3yy0d6fj4phylz48xs3g4373hv8n6 and me for episode 131 of nostr:nprofile1qy88wumn8ghj7mn0wvhxcmmv9uq36amnwvaz7tmwdaehgu3wvf5hgcm0d9hx2u3wwdhkx6tpdshsqg9dn4pzq07jfq829ewyceze8gp8wz9whc4s92nqh4a36end4fds35xl9mtm tomorrow, Friday – October 3rd at 5pm ET (UTC -4)\n\nOur guest this week is nostr:nprofile1qyt8wumn8ghj7ct8vaezumn0wd68ytnvv9hxgtcpz9mhxue69uhkummnw3ezumrpdejz7qpqwf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgshcqyxr , creator of nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qpq0r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7s85uvay who joins us to discuss that, web-of-trust, and much much more\n\nSet your blockclocks!\n\nThe show will be streamed live on zap.stream/pcr and will also be available on Nostur, Fountain, and Primal","created_at":1759429738,"id":"38ceb6be096273d173df7d73231bdd980d4bb323eabd3836e81c85b89e93c83e","kind":1,"pubkey":"b83a28b7e4e5d20bd960c5faeb6625f95529166b8bdb045d42634a2f35919450","sig":"c6b0c38d99e1314ecaffb2da6885ac55d266514616a3209d4ec47b4f0573ba7b2bdb3732a2bf1fa8f4b8772f04f7dbf09d61bfe74418a7647260c484086e899d","tags":[["p","5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e","wss://nos.lol","mention"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d","wss://nos.lol/","mention"],["p","726a1e261cc6474674e8285e3951b3bb139be9a773d1acf49dc868db861a1c11","wss://aggr.nostr.land/","mention"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/","mention"],["r","wss://nos.lol/"]]}] +[14:29:04.218] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"They'll backtrack. We need real solutions, not Band-Aids on top of Band-Aids.","created_at":1759429738,"id":"35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","kind":1,"pubkey":"55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","sig":"511bb0ecd310003032a25ce3ca087d2501ef20c46becd7f4d806cea19769bcb69945e2e55d988ed04dc32d23aa1bb39ba8ca7507be22aaf91496ef7fb3ce3027","tags":[["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","","root"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","","reply"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"]]}] +[14:29:04.279] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:29:04.340] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I was like oh cute it's cleaning it's belly, then it moved and I was all nonononono 😂😂","created_at":1759429733,"id":"0756efbdd55c9aa0b81ffbc5e1803eeca9b956ba000f655bd7136882480b2a3b","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"a34963bf3d1e678c019815dc3021884eef57cfb69203528f09fa6b9abd759f7e4759a8eca711b84a4c74582540e88e049c971def9837834bcef60cead64dce8f","tags":[["alt","A short note: I was like oh cute it's cleaning it's belly, then ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","wss://nos.lol/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[14:29:04.400] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"マケイン8巻読みながら\nかーっ!\n見んね杏奈!\n卑しか女ばい!\nを連呼するボットになってる\n","created_at":1759429727,"id":"c9f0f90718e6baca4a92d673505a000223471e6356f476e230ad5393f44358a5","kind":1,"pubkey":"269e6f57aa9a200c814e6b98721819dde038ca60c0390b87b658d300ab6d0d04","sig":"664b8951fd2ab1fb82b561f738ce12d60bca2ec603a08ff17e799955dc36f331a2aed2868ee610754262833f67f84d0647750a2232aaa4252bd8d12317c48cc9","tags":[]}] +[14:29:04.461] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:35 @ 917,403","created_at":1759429724,"id":"f1040d1b0ec51e190d65603fab1030c4f0cde0d656660ed9616ad9971416469c","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"9aee72b5aa122e0f68ddf0fc0459c277eea998188c3e5e27b846a352c139264d4243dbf9c870fe7b89068269cbacca11d0bc14f5672bcd167bbe2e62e309eb88","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:29:04.521] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yessir ✅ followed \n\n","created_at":1759429721,"id":"2896e1b671e73097529fbff6619732040d5b38a2c84c5a040b78bc1259f4cbd0","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"fcbad4324352fc5af854fd0eb20215353de9fdd44bc24904e31051fb71651dbb415161d484aa4d9fe510ce4776af86b5463f6afd86f129282090f10d13dfe663","tags":[["p","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"],["e","0b22d89c3d6ed018d38e4b84ff8d2e7340f39463ddc0e84a52e56975482eaafa","","root","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"]]}] +[14:29:04.582] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917403\nWeight: 3983958\nhttps://thebitcoinblockclock.com/blockstr/0000000000000000000037e21227df2c071cd6c75004c4d71192674d161033bf.png","created_at":1759429719,"id":"980f8539c8a67035d49853b0c0a5db8650e4c41c70a7a914439745baf89b357d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"5ae1609e9571edb064780575097d6115d88ba6d25986f4ba66b553f08f279041348e508fa9999bf6c3b38b7c7758b4041ee61020e2b1cec736684b5a87e7a034","tags":[]}] +[14:29:04.643] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Work out your own salvation. Do not depend on others.\n\n#buddha #hindu #quotes #wisdom #spirituality #philosophy","created_at":1759429709,"id":"4fd5e234f52c63171b96b79f8545168277bffe51e90e3caff9769a65bffff674","kind":1,"pubkey":"5c7d484b5dc652992510b358dba3ad0b5594ac668e26a053982d4a3ce1ba5414","sig":"b1820073c3774ef8c51937e8787d4163746158e592538621361b836dc78c432fe0aa27bf17448d3e280009089ed3977a0904d6bdd61d057410195dd1905843d2","tags":[["t","buddha"],["t","hindu"],["t","quotes"],["t","quote"],["t","thoughts"],["t","wisdom"],["t","philosophy"],["t","spirituality"]]}] +[14:29:04.703] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:04.764] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:04.824] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:04.885] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:04.946] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:05.006] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:05.067] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:05.127] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:05.188] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:05.249] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:05.309] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:29:05.370] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:05.430] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429743,"id":"004c93f67ebfd9c7d43fb9e09b5c5f11a95fd717e3694bd8cf723fd67ffcf126","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"70982343f042bd4bbab478a4f291f7fa43537a22c6d19876b730683ac4165e975883951ea26adc611a6efd1855951a8fcf3a7adc5978ca521192f86634a2e572","tags":[["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"]]}] +[14:29:05.914] RECV nos.lol:443: 5cbbd"],["p","fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52"],["p","ad9738030ab +[14:29:06.707] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:06.707] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:06.708] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:06.708] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:06.859] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に線で囲い書いてた","created_at":1759429743,"id":"ee6651f570e07c08dd586694570109f636f57057dcea938e26f155fc005ffe43","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"6e792e286d30bdc8aeb6bb8859850d9f5add0a78fa427446333acc7fba96ad12575ab6e5865793874ea4a33e0f3fbcab3508442d99107c75ee1b01845dcd5289","tags":[]}] +[14:29:06.959] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Join nostr:nprofile1qyxhwumn8ghj7mn0wvhxcmmvqyv8wumn8ghj7urjv4kkjatd9ec8y6tdv9kzumn9wsqzqkcpsw4kc03j906dg8rt8thes432z3yy0d6fj4phylz48xs3g4373hv8n6 and me for episode 131 of nostr:nprofile1qy88wumn8ghj7mn0wvhxcmmv9uq36amnwvaz7tmwdaehgu3wvf5hgcm0d9hx2u3wwdhkx6tpdshsqg9dn4pzq07jfq829ewyceze8gp8wz9whc4s92nqh4a36end4fds35xl9mtm tomorrow, Friday – October 3rd at 5pm ET (UTC -4)\n\nOur guest this week is nostr:nprofile1qyt8wumn8ghj7ct8vaezumn0wd68ytnvv9hxgtcpz9mhxue69uhkummnw3ezumrpdejz7qpqwf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgshcqyxr , creator of nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qpq0r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7s85uvay who joins us to discuss that, web-of-trust, and much much more\n\nSet your blockclocks!\n\nThe show will be streamed live on zap.stream/pcr and will also be available on Nostur, Fountain, and Primal","created_at":1759429738,"id":"38ceb6be096273d173df7d73231bdd980d4bb323eabd3836e81c85b89e93c83e","kind":1,"pubkey":"b83a28b7e4e5d20bd960c5faeb6625f95529166b8bdb045d42634a2f35919450","sig":"c6b0c38d99e1314ecaffb2da6885ac55d266514616a3209d4ec47b4f0573ba7b2bdb3732a2bf1fa8f4b8772f04f7dbf09d61bfe74418a7647260c484086e899d","tags":[["p","5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e","wss://nos.lol","mention"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d","wss://nos.lol/","mention"],["p","726a1e261cc6474674e8285e3951b3bb139be9a773d1acf49dc868db861a1c11","wss://aggr.nostr.land/","mention"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/","mention"],["r","wss://nos.lol/"]]}] +[14:29:07.020] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"They'll backtrack. We need real solutions, not Band-Aids on top of Band-Aids.","created_at":1759429738,"id":"35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","kind":1,"pubkey":"55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","sig":"511bb0ecd310003032a25ce3ca087d2501ef20c46becd7f4d806cea19769bcb69945e2e55d988ed04dc32d23aa1bb39ba8ca7507be22aaf91496ef7fb3ce3027","tags":[["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","","root"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","","reply"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"]]}] +[14:29:07.080] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:29:07.140] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I was like oh cute it's cleaning it's belly, then it moved and I was all nonononono 😂😂","created_at":1759429733,"id":"0756efbdd55c9aa0b81ffbc5e1803eeca9b956ba000f655bd7136882480b2a3b","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"a34963bf3d1e678c019815dc3021884eef57cfb69203528f09fa6b9abd759f7e4759a8eca711b84a4c74582540e88e049c971def9837834bcef60cead64dce8f","tags":[["alt","A short note: I was like oh cute it's cleaning it's belly, then ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","wss://nos.lol/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[14:29:07.201] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"マケイン8巻読みながら\nかーっ!\n見んね杏奈!\n卑しか女ばい!\nを連呼するボットになってる\n","created_at":1759429727,"id":"c9f0f90718e6baca4a92d673505a000223471e6356f476e230ad5393f44358a5","kind":1,"pubkey":"269e6f57aa9a200c814e6b98721819dde038ca60c0390b87b658d300ab6d0d04","sig":"664b8951fd2ab1fb82b561f738ce12d60bca2ec603a08ff17e799955dc36f331a2aed2868ee610754262833f67f84d0647750a2232aaa4252bd8d12317c48cc9","tags":[]}] +[14:29:07.262] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:35 @ 917,403","created_at":1759429724,"id":"f1040d1b0ec51e190d65603fab1030c4f0cde0d656660ed9616ad9971416469c","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"9aee72b5aa122e0f68ddf0fc0459c277eea998188c3e5e27b846a352c139264d4243dbf9c870fe7b89068269cbacca11d0bc14f5672bcd167bbe2e62e309eb88","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:29:07.322] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yessir ✅ followed \n\n","created_at":1759429721,"id":"2896e1b671e73097529fbff6619732040d5b38a2c84c5a040b78bc1259f4cbd0","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"fcbad4324352fc5af854fd0eb20215353de9fdd44bc24904e31051fb71651dbb415161d484aa4d9fe510ce4776af86b5463f6afd86f129282090f10d13dfe663","tags":[["p","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"],["e","0b22d89c3d6ed018d38e4b84ff8d2e7340f39463ddc0e84a52e56975482eaafa","","root","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"]]}] +[14:29:07.383] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917403\nWeight: 3983958\nhttps://thebitcoinblockclock.com/blockstr/0000000000000000000037e21227df2c071cd6c75004c4d71192674d161033bf.png","created_at":1759429719,"id":"980f8539c8a67035d49853b0c0a5db8650e4c41c70a7a914439745baf89b357d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"5ae1609e9571edb064780575097d6115d88ba6d25986f4ba66b553f08f279041348e508fa9999bf6c3b38b7c7758b4041ee61020e2b1cec736684b5a87e7a034","tags":[]}] +[14:29:07.443] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Work out your own salvation. Do not depend on others.\n\n#buddha #hindu #quotes #wisdom #spirituality #philosophy","created_at":1759429709,"id":"4fd5e234f52c63171b96b79f8545168277bffe51e90e3caff9769a65bffff674","kind":1,"pubkey":"5c7d484b5dc652992510b358dba3ad0b5594ac668e26a053982d4a3ce1ba5414","sig":"b1820073c3774ef8c51937e8787d4163746158e592538621361b836dc78c432fe0aa27bf17448d3e280009089ed3977a0904d6bdd61d057410195dd1905843d2","tags":[["t","buddha"],["t","hindu"],["t","quotes"],["t","quote"],["t","thoughts"],["t","wisdom"],["t","philosophy"],["t","spirituality"]]}] +[14:29:07.504] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:07.564] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:07.625] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:07.685] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:07.746] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:07.807] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:07.867] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:07.928] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:07.988] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:08.049] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:08.110] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:29:08.135] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:08.195] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429743,"id":"004c93f67ebfd9c7d43fb9e09b5c5f11a95fd717e3694bd8cf723fd67ffcf126","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"70982343f042bd4bbab478a4f291f7fa43537a22c6d19876b730683ac4165e975883951ea26adc611a6efd1855951a8fcf3a7adc5978ca521192f86634a2e572","tags":[["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"]]}] +[14:29:08.679] RECV nos.lol:443: 5cbbd"],["p","fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52"],["p","ad9738030ab +[14:29:09.476] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:09.477] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:09.477] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:09.477] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:09.629] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What the hell 😲\nI thought you have to hit it, this guy is making sweet love to it","created_at":1759429748,"id":"1ff790594eb8c6174a67a7cb16e2262483fe0773734cc7b88e4bf85ac297924a","kind":1,"pubkey":"9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","sig":"d0b2ef9277d2acc66535d183b455f799971b4a252d55cc3334e17502e303aedcd2889a3f1e65000b118c36832dd361cc4f13a28e77dafb9072fd67d1c57bd6ed","tags":[["alt","A short note: What the hell 😲\nI thought you have to hit it, thi..."],["e","ada7b251bdb65a42bb9aee9d036dd71a1eb18620e5c41c5744397c7285a2bce7","wss://premium.primal.net/","root","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc","wss://aegis.utxo.one/"]]}] +[14:29:09.689] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に線で囲い書いてた","created_at":1759429743,"id":"ee6651f570e07c08dd586694570109f636f57057dcea938e26f155fc005ffe43","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"6e792e286d30bdc8aeb6bb8859850d9f5add0a78fa427446333acc7fba96ad12575ab6e5865793874ea4a33e0f3fbcab3508442d99107c75ee1b01845dcd5289","tags":[]}] +[14:29:09.750] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Join nostr:nprofile1qyxhwumn8ghj7mn0wvhxcmmvqyv8wumn8ghj7urjv4kkjatd9ec8y6tdv9kzumn9wsqzqkcpsw4kc03j906dg8rt8thes432z3yy0d6fj4phylz48xs3g4373hv8n6 and me for episode 131 of nostr:nprofile1qy88wumn8ghj7mn0wvhxcmmv9uq36amnwvaz7tmwdaehgu3wvf5hgcm0d9hx2u3wwdhkx6tpdshsqg9dn4pzq07jfq829ewyceze8gp8wz9whc4s92nqh4a36end4fds35xl9mtm tomorrow, Friday – October 3rd at 5pm ET (UTC -4)\n\nOur guest this week is nostr:nprofile1qyt8wumn8ghj7ct8vaezumn0wd68ytnvv9hxgtcpz9mhxue69uhkummnw3ezumrpdejz7qpqwf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgshcqyxr , creator of nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qpq0r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7s85uvay who joins us to discuss that, web-of-trust, and much much more\n\nSet your blockclocks!\n\nThe show will be streamed live on zap.stream/pcr and will also be available on Nostur, Fountain, and Primal","created_at":1759429738,"id":"38ceb6be096273d173df7d73231bdd980d4bb323eabd3836e81c85b89e93c83e","kind":1,"pubkey":"b83a28b7e4e5d20bd960c5faeb6625f95529166b8bdb045d42634a2f35919450","sig":"c6b0c38d99e1314ecaffb2da6885ac55d266514616a3209d4ec47b4f0573ba7b2bdb3732a2bf1fa8f4b8772f04f7dbf09d61bfe74418a7647260c484086e899d","tags":[["p","5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e","wss://nos.lol","mention"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d","wss://nos.lol/","mention"],["p","726a1e261cc6474674e8285e3951b3bb139be9a773d1acf49dc868db861a1c11","wss://aggr.nostr.land/","mention"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/","mention"],["r","wss://nos.lol/"]]}] +[14:29:09.810] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"They'll backtrack. We need real solutions, not Band-Aids on top of Band-Aids.","created_at":1759429738,"id":"35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","kind":1,"pubkey":"55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","sig":"511bb0ecd310003032a25ce3ca087d2501ef20c46becd7f4d806cea19769bcb69945e2e55d988ed04dc32d23aa1bb39ba8ca7507be22aaf91496ef7fb3ce3027","tags":[["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","","root"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","","reply"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"]]}] +[14:29:09.871] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:29:09.932] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I was like oh cute it's cleaning it's belly, then it moved and I was all nonononono 😂😂","created_at":1759429733,"id":"0756efbdd55c9aa0b81ffbc5e1803eeca9b956ba000f655bd7136882480b2a3b","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"a34963bf3d1e678c019815dc3021884eef57cfb69203528f09fa6b9abd759f7e4759a8eca711b84a4c74582540e88e049c971def9837834bcef60cead64dce8f","tags":[["alt","A short note: I was like oh cute it's cleaning it's belly, then ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","wss://nos.lol/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[14:29:09.992] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"マケイン8巻読みながら\nかーっ!\n見んね杏奈!\n卑しか女ばい!\nを連呼するボットになってる\n","created_at":1759429727,"id":"c9f0f90718e6baca4a92d673505a000223471e6356f476e230ad5393f44358a5","kind":1,"pubkey":"269e6f57aa9a200c814e6b98721819dde038ca60c0390b87b658d300ab6d0d04","sig":"664b8951fd2ab1fb82b561f738ce12d60bca2ec603a08ff17e799955dc36f331a2aed2868ee610754262833f67f84d0647750a2232aaa4252bd8d12317c48cc9","tags":[]}] +[14:29:10.053] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:35 @ 917,403","created_at":1759429724,"id":"f1040d1b0ec51e190d65603fab1030c4f0cde0d656660ed9616ad9971416469c","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"9aee72b5aa122e0f68ddf0fc0459c277eea998188c3e5e27b846a352c139264d4243dbf9c870fe7b89068269cbacca11d0bc14f5672bcd167bbe2e62e309eb88","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:29:10.113] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yessir ✅ followed \n\n","created_at":1759429721,"id":"2896e1b671e73097529fbff6619732040d5b38a2c84c5a040b78bc1259f4cbd0","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"fcbad4324352fc5af854fd0eb20215353de9fdd44bc24904e31051fb71651dbb415161d484aa4d9fe510ce4776af86b5463f6afd86f129282090f10d13dfe663","tags":[["p","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"],["e","0b22d89c3d6ed018d38e4b84ff8d2e7340f39463ddc0e84a52e56975482eaafa","","root","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"]]}] +[14:29:10.174] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917403\nWeight: 3983958\nhttps://thebitcoinblockclock.com/blockstr/0000000000000000000037e21227df2c071cd6c75004c4d71192674d161033bf.png","created_at":1759429719,"id":"980f8539c8a67035d49853b0c0a5db8650e4c41c70a7a914439745baf89b357d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"5ae1609e9571edb064780575097d6115d88ba6d25986f4ba66b553f08f279041348e508fa9999bf6c3b38b7c7758b4041ee61020e2b1cec736684b5a87e7a034","tags":[]}] +[14:29:10.235] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:10.295] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:10.356] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:10.416] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:10.477] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:10.537] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:10.598] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:10.659] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:10.719] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:10.780] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:10.840] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:29:10.901] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:10.961] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429743,"id":"004c93f67ebfd9c7d43fb9e09b5c5f11a95fd717e3694bd8cf723fd67ffcf126","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"70982343f042bd4bbab478a4f291f7fa43537a22c6d19876b730683ac4165e975883951ea26adc611a6efd1855951a8fcf3a7adc5978ca521192f86634a2e572","tags":[["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"]]}] +[14:29:11.444] RECV nos.lol:443: 5cbbd"],["p","fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52"],["p","ad9738030ab +[14:29:12.238] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:12.238] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:12.238] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:12.238] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:12.390] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I’m more of a Casio guy myself. \n\nWhere’s my Casio fam at?\n\nhttps://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","created_at":1759429752,"id":"674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"3d03211cca1f087b4f704d33a3899df99efa948132faa46607f9c9084b8fc3895f188379e108ba8e909ac4c3dbbb360a165104c026c906bb839e604b988c7043","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["imeta","url https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","blurhash edKnC:%MsmofWC~qxukCj[j[.8M{M|jZn%M{M{s:offkIUxut7WBbH","dim 3024x4032"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["r","https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg"]]}] +[14:29:12.451] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What the hell 😲\nI thought you have to hit it, this guy is making sweet love to it","created_at":1759429748,"id":"1ff790594eb8c6174a67a7cb16e2262483fe0773734cc7b88e4bf85ac297924a","kind":1,"pubkey":"9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","sig":"d0b2ef9277d2acc66535d183b455f799971b4a252d55cc3334e17502e303aedcd2889a3f1e65000b118c36832dd361cc4f13a28e77dafb9072fd67d1c57bd6ed","tags":[["alt","A short note: What the hell 😲\nI thought you have to hit it, thi..."],["e","ada7b251bdb65a42bb9aee9d036dd71a1eb18620e5c41c5744397c7285a2bce7","wss://premium.primal.net/","root","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc","wss://aegis.utxo.one/"]]}] +[14:29:12.511] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に線で囲い書いてた","created_at":1759429743,"id":"ee6651f570e07c08dd586694570109f636f57057dcea938e26f155fc005ffe43","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"6e792e286d30bdc8aeb6bb8859850d9f5add0a78fa427446333acc7fba96ad12575ab6e5865793874ea4a33e0f3fbcab3508442d99107c75ee1b01845dcd5289","tags":[]}] +[14:29:12.572] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Join nostr:nprofile1qyxhwumn8ghj7mn0wvhxcmmvqyv8wumn8ghj7urjv4kkjatd9ec8y6tdv9kzumn9wsqzqkcpsw4kc03j906dg8rt8thes432z3yy0d6fj4phylz48xs3g4373hv8n6 and me for episode 131 of nostr:nprofile1qy88wumn8ghj7mn0wvhxcmmv9uq36amnwvaz7tmwdaehgu3wvf5hgcm0d9hx2u3wwdhkx6tpdshsqg9dn4pzq07jfq829ewyceze8gp8wz9whc4s92nqh4a36end4fds35xl9mtm tomorrow, Friday – October 3rd at 5pm ET (UTC -4)\n\nOur guest this week is nostr:nprofile1qyt8wumn8ghj7ct8vaezumn0wd68ytnvv9hxgtcpz9mhxue69uhkummnw3ezumrpdejz7qpqwf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgshcqyxr , creator of nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qpq0r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7s85uvay who joins us to discuss that, web-of-trust, and much much more\n\nSet your blockclocks!\n\nThe show will be streamed live on zap.stream/pcr and will also be available on Nostur, Fountain, and Primal","created_at":1759429738,"id":"38ceb6be096273d173df7d73231bdd980d4bb323eabd3836e81c85b89e93c83e","kind":1,"pubkey":"b83a28b7e4e5d20bd960c5faeb6625f95529166b8bdb045d42634a2f35919450","sig":"c6b0c38d99e1314ecaffb2da6885ac55d266514616a3209d4ec47b4f0573ba7b2bdb3732a2bf1fa8f4b8772f04f7dbf09d61bfe74418a7647260c484086e899d","tags":[["p","5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e","wss://nos.lol","mention"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d","wss://nos.lol/","mention"],["p","726a1e261cc6474674e8285e3951b3bb139be9a773d1acf49dc868db861a1c11","wss://aggr.nostr.land/","mention"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/","mention"],["r","wss://nos.lol/"]]}] +[14:29:12.632] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"They'll backtrack. We need real solutions, not Band-Aids on top of Band-Aids.","created_at":1759429738,"id":"35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","kind":1,"pubkey":"55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","sig":"511bb0ecd310003032a25ce3ca087d2501ef20c46becd7f4d806cea19769bcb69945e2e55d988ed04dc32d23aa1bb39ba8ca7507be22aaf91496ef7fb3ce3027","tags":[["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","","root"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","","reply"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"]]}] +[14:29:12.693] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:29:12.753] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I was like oh cute it's cleaning it's belly, then it moved and I was all nonononono 😂😂","created_at":1759429733,"id":"0756efbdd55c9aa0b81ffbc5e1803eeca9b956ba000f655bd7136882480b2a3b","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"a34963bf3d1e678c019815dc3021884eef57cfb69203528f09fa6b9abd759f7e4759a8eca711b84a4c74582540e88e049c971def9837834bcef60cead64dce8f","tags":[["alt","A short note: I was like oh cute it's cleaning it's belly, then ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","wss://nos.lol/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[14:29:12.814] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"マケイン8巻読みながら\nかーっ!\n見んね杏奈!\n卑しか女ばい!\nを連呼するボットになってる\n","created_at":1759429727,"id":"c9f0f90718e6baca4a92d673505a000223471e6356f476e230ad5393f44358a5","kind":1,"pubkey":"269e6f57aa9a200c814e6b98721819dde038ca60c0390b87b658d300ab6d0d04","sig":"664b8951fd2ab1fb82b561f738ce12d60bca2ec603a08ff17e799955dc36f331a2aed2868ee610754262833f67f84d0647750a2232aaa4252bd8d12317c48cc9","tags":[]}] +[14:29:12.874] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:35 @ 917,403","created_at":1759429724,"id":"f1040d1b0ec51e190d65603fab1030c4f0cde0d656660ed9616ad9971416469c","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"9aee72b5aa122e0f68ddf0fc0459c277eea998188c3e5e27b846a352c139264d4243dbf9c870fe7b89068269cbacca11d0bc14f5672bcd167bbe2e62e309eb88","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:29:12.935] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yessir ✅ followed \n\n","created_at":1759429721,"id":"2896e1b671e73097529fbff6619732040d5b38a2c84c5a040b78bc1259f4cbd0","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"fcbad4324352fc5af854fd0eb20215353de9fdd44bc24904e31051fb71651dbb415161d484aa4d9fe510ce4776af86b5463f6afd86f129282090f10d13dfe663","tags":[["p","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"],["e","0b22d89c3d6ed018d38e4b84ff8d2e7340f39463ddc0e84a52e56975482eaafa","","root","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"]]}] +[14:29:12.995] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:13.056] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:13.082] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:13.142] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:13.202] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:13.263] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:13.323] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:13.384] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:13.444] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:13.505] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:13.566] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:29:13.626] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:13.687] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429743,"id":"004c93f67ebfd9c7d43fb9e09b5c5f11a95fd717e3694bd8cf723fd67ffcf126","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"70982343f042bd4bbab478a4f291f7fa43537a22c6d19876b730683ac4165e975883951ea26adc611a6efd1855951a8fcf3a7adc5978ca521192f86634a2e572","tags":[["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"]]}] +[14:29:14.170] RECV nos.lol:443: 5cbbd"],["p","fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52"],["p","ad9738030ab +[14:29:14.968] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:14.969] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:14.969] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:14.969] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:15.190] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I’m more of a Casio guy myself. \n\nWhere’s my Casio fam at?\n\nhttps://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","created_at":1759429752,"id":"674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"3d03211cca1f087b4f704d33a3899df99efa948132faa46607f9c9084b8fc3895f188379e108ba8e909ac4c3dbbb360a165104c026c906bb839e604b988c7043","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["imeta","url https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","blurhash edKnC:%MsmofWC~qxukCj[j[.8M{M|jZn%M{M{s:offkIUxut7WBbH","dim 3024x4032"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["r","https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg"]]}] +[14:29:15.251] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What the hell 😲\nI thought you have to hit it, this guy is making sweet love to it","created_at":1759429748,"id":"1ff790594eb8c6174a67a7cb16e2262483fe0773734cc7b88e4bf85ac297924a","kind":1,"pubkey":"9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","sig":"d0b2ef9277d2acc66535d183b455f799971b4a252d55cc3334e17502e303aedcd2889a3f1e65000b118c36832dd361cc4f13a28e77dafb9072fd67d1c57bd6ed","tags":[["alt","A short note: What the hell 😲\nI thought you have to hit it, thi..."],["e","ada7b251bdb65a42bb9aee9d036dd71a1eb18620e5c41c5744397c7285a2bce7","wss://premium.primal.net/","root","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc","wss://aegis.utxo.one/"]]}] +[14:29:15.311] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に線で囲い書いてた","created_at":1759429743,"id":"ee6651f570e07c08dd586694570109f636f57057dcea938e26f155fc005ffe43","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"6e792e286d30bdc8aeb6bb8859850d9f5add0a78fa427446333acc7fba96ad12575ab6e5865793874ea4a33e0f3fbcab3508442d99107c75ee1b01845dcd5289","tags":[]}] +[14:29:15.372] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Join nostr:nprofile1qyxhwumn8ghj7mn0wvhxcmmvqyv8wumn8ghj7urjv4kkjatd9ec8y6tdv9kzumn9wsqzqkcpsw4kc03j906dg8rt8thes432z3yy0d6fj4phylz48xs3g4373hv8n6 and me for episode 131 of nostr:nprofile1qy88wumn8ghj7mn0wvhxcmmv9uq36amnwvaz7tmwdaehgu3wvf5hgcm0d9hx2u3wwdhkx6tpdshsqg9dn4pzq07jfq829ewyceze8gp8wz9whc4s92nqh4a36end4fds35xl9mtm tomorrow, Friday – October 3rd at 5pm ET (UTC -4)\n\nOur guest this week is nostr:nprofile1qyt8wumn8ghj7ct8vaezumn0wd68ytnvv9hxgtcpz9mhxue69uhkummnw3ezumrpdejz7qpqwf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgshcqyxr , creator of nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qpq0r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7s85uvay who joins us to discuss that, web-of-trust, and much much more\n\nSet your blockclocks!\n\nThe show will be streamed live on zap.stream/pcr and will also be available on Nostur, Fountain, and Primal","created_at":1759429738,"id":"38ceb6be096273d173df7d73231bdd980d4bb323eabd3836e81c85b89e93c83e","kind":1,"pubkey":"b83a28b7e4e5d20bd960c5faeb6625f95529166b8bdb045d42634a2f35919450","sig":"c6b0c38d99e1314ecaffb2da6885ac55d266514616a3209d4ec47b4f0573ba7b2bdb3732a2bf1fa8f4b8772f04f7dbf09d61bfe74418a7647260c484086e899d","tags":[["p","5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e","wss://nos.lol","mention"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d","wss://nos.lol/","mention"],["p","726a1e261cc6474674e8285e3951b3bb139be9a773d1acf49dc868db861a1c11","wss://aggr.nostr.land/","mention"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/","mention"],["r","wss://nos.lol/"]]}] +[14:29:15.432] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"They'll backtrack. We need real solutions, not Band-Aids on top of Band-Aids.","created_at":1759429738,"id":"35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","kind":1,"pubkey":"55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","sig":"511bb0ecd310003032a25ce3ca087d2501ef20c46becd7f4d806cea19769bcb69945e2e55d988ed04dc32d23aa1bb39ba8ca7507be22aaf91496ef7fb3ce3027","tags":[["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","","root"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","","reply"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"]]}] +[14:29:15.493] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:29:15.553] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I was like oh cute it's cleaning it's belly, then it moved and I was all nonononono 😂😂","created_at":1759429733,"id":"0756efbdd55c9aa0b81ffbc5e1803eeca9b956ba000f655bd7136882480b2a3b","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"a34963bf3d1e678c019815dc3021884eef57cfb69203528f09fa6b9abd759f7e4759a8eca711b84a4c74582540e88e049c971def9837834bcef60cead64dce8f","tags":[["alt","A short note: I was like oh cute it's cleaning it's belly, then ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","wss://nos.lol/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[14:29:15.614] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"マケイン8巻読みながら\nかーっ!\n見んね杏奈!\n卑しか女ばい!\nを連呼するボットになってる\n","created_at":1759429727,"id":"c9f0f90718e6baca4a92d673505a000223471e6356f476e230ad5393f44358a5","kind":1,"pubkey":"269e6f57aa9a200c814e6b98721819dde038ca60c0390b87b658d300ab6d0d04","sig":"664b8951fd2ab1fb82b561f738ce12d60bca2ec603a08ff17e799955dc36f331a2aed2868ee610754262833f67f84d0647750a2232aaa4252bd8d12317c48cc9","tags":[]}] +[14:29:15.674] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:35 @ 917,403","created_at":1759429724,"id":"f1040d1b0ec51e190d65603fab1030c4f0cde0d656660ed9616ad9971416469c","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"9aee72b5aa122e0f68ddf0fc0459c277eea998188c3e5e27b846a352c139264d4243dbf9c870fe7b89068269cbacca11d0bc14f5672bcd167bbe2e62e309eb88","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:29:15.735] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yessir ✅ followed \n\n","created_at":1759429721,"id":"2896e1b671e73097529fbff6619732040d5b38a2c84c5a040b78bc1259f4cbd0","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"fcbad4324352fc5af854fd0eb20215353de9fdd44bc24904e31051fb71651dbb415161d484aa4d9fe510ce4776af86b5463f6afd86f129282090f10d13dfe663","tags":[["p","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"],["e","0b22d89c3d6ed018d38e4b84ff8d2e7340f39463ddc0e84a52e56975482eaafa","","root","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"]]}] +[14:29:15.795] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:15.856] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:15.917] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:15.977] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:16.038] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:16.099] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:16.159] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:16.220] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:16.280] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:16.341] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:16.401] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:29:16.462] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:16.764] RECV nos.lol:443: 89d7fd1b0fb85aa6622b880e8c5957b5becd705cc7852cfb5 +[14:29:18.343] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:18.343] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:18.343] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:18.343] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:18.494] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Unfollow the people posting it. Follow those who post what you want to see.","created_at":1759429758,"id":"b2b62eaca4c5d245b00f3d360275d1288963fae5fa96fcc50a4a94e3a30310ac","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"1e6ece6b0ac0a93dbe79028f40a7c6defc366d513e988ecb2d4864bec32717b291e40fb8aceb94d097913d7d17b20a9196124227a3b4ea8a18ba9dacb443c290","tags":[["alt","A short note: Unfollow the people posting it. Follow those who p..."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.primal.net/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:29:18.505] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I’m more of a Casio guy myself. \n\nWhere’s my Casio fam at?\n\nhttps://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","created_at":1759429752,"id":"674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"3d03211cca1f087b4f704d33a3899df99efa948132faa46607f9c9084b8fc3895f188379e108ba8e909ac4c3dbbb360a165104c026c906bb839e604b988c7043","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["imeta","url https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","blurhash edKnC:%MsmofWC~qxukCj[j[.8M{M|jZn%M{M{s:offkIUxut7WBbH","dim 3024x4032"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["r","https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg"]]}] +[14:29:18.565] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What the hell 😲\nI thought you have to hit it, this guy is making sweet love to it","created_at":1759429748,"id":"1ff790594eb8c6174a67a7cb16e2262483fe0773734cc7b88e4bf85ac297924a","kind":1,"pubkey":"9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","sig":"d0b2ef9277d2acc66535d183b455f799971b4a252d55cc3334e17502e303aedcd2889a3f1e65000b118c36832dd361cc4f13a28e77dafb9072fd67d1c57bd6ed","tags":[["alt","A short note: What the hell 😲\nI thought you have to hit it, thi..."],["e","ada7b251bdb65a42bb9aee9d036dd71a1eb18620e5c41c5744397c7285a2bce7","wss://premium.primal.net/","root","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc","wss://aegis.utxo.one/"]]}] +[14:29:18.626] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に線で囲い書いてた","created_at":1759429743,"id":"ee6651f570e07c08dd586694570109f636f57057dcea938e26f155fc005ffe43","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"6e792e286d30bdc8aeb6bb8859850d9f5add0a78fa427446333acc7fba96ad12575ab6e5865793874ea4a33e0f3fbcab3508442d99107c75ee1b01845dcd5289","tags":[]}] +[14:29:18.686] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Join nostr:nprofile1qyxhwumn8ghj7mn0wvhxcmmvqyv8wumn8ghj7urjv4kkjatd9ec8y6tdv9kzumn9wsqzqkcpsw4kc03j906dg8rt8thes432z3yy0d6fj4phylz48xs3g4373hv8n6 and me for episode 131 of nostr:nprofile1qy88wumn8ghj7mn0wvhxcmmv9uq36amnwvaz7tmwdaehgu3wvf5hgcm0d9hx2u3wwdhkx6tpdshsqg9dn4pzq07jfq829ewyceze8gp8wz9whc4s92nqh4a36end4fds35xl9mtm tomorrow, Friday – October 3rd at 5pm ET (UTC -4)\n\nOur guest this week is nostr:nprofile1qyt8wumn8ghj7ct8vaezumn0wd68ytnvv9hxgtcpz9mhxue69uhkummnw3ezumrpdejz7qpqwf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgshcqyxr , creator of nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qpq0r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7s85uvay who joins us to discuss that, web-of-trust, and much much more\n\nSet your blockclocks!\n\nThe show will be streamed live on zap.stream/pcr and will also be available on Nostur, Fountain, and Primal","created_at":1759429738,"id":"38ceb6be096273d173df7d73231bdd980d4bb323eabd3836e81c85b89e93c83e","kind":1,"pubkey":"b83a28b7e4e5d20bd960c5faeb6625f95529166b8bdb045d42634a2f35919450","sig":"c6b0c38d99e1314ecaffb2da6885ac55d266514616a3209d4ec47b4f0573ba7b2bdb3732a2bf1fa8f4b8772f04f7dbf09d61bfe74418a7647260c484086e899d","tags":[["p","5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e","wss://nos.lol","mention"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d","wss://nos.lol/","mention"],["p","726a1e261cc6474674e8285e3951b3bb139be9a773d1acf49dc868db861a1c11","wss://aggr.nostr.land/","mention"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/","mention"],["r","wss://nos.lol/"]]}] +[14:29:18.747] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"They'll backtrack. We need real solutions, not Band-Aids on top of Band-Aids.","created_at":1759429738,"id":"35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","kind":1,"pubkey":"55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","sig":"511bb0ecd310003032a25ce3ca087d2501ef20c46becd7f4d806cea19769bcb69945e2e55d988ed04dc32d23aa1bb39ba8ca7507be22aaf91496ef7fb3ce3027","tags":[["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","","root"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","","reply"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"]]}] +[14:29:18.808] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:29:18.868] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I was like oh cute it's cleaning it's belly, then it moved and I was all nonononono 😂😂","created_at":1759429733,"id":"0756efbdd55c9aa0b81ffbc5e1803eeca9b956ba000f655bd7136882480b2a3b","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"a34963bf3d1e678c019815dc3021884eef57cfb69203528f09fa6b9abd759f7e4759a8eca711b84a4c74582540e88e049c971def9837834bcef60cead64dce8f","tags":[["alt","A short note: I was like oh cute it's cleaning it's belly, then ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","wss://nos.lol/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[14:29:18.929] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"マケイン8巻読みながら\nかーっ!\n見んね杏奈!\n卑しか女ばい!\nを連呼するボットになってる\n","created_at":1759429727,"id":"c9f0f90718e6baca4a92d673505a000223471e6356f476e230ad5393f44358a5","kind":1,"pubkey":"269e6f57aa9a200c814e6b98721819dde038ca60c0390b87b658d300ab6d0d04","sig":"664b8951fd2ab1fb82b561f738ce12d60bca2ec603a08ff17e799955dc36f331a2aed2868ee610754262833f67f84d0647750a2232aaa4252bd8d12317c48cc9","tags":[]}] +[14:29:18.989] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:35 @ 917,403","created_at":1759429724,"id":"f1040d1b0ec51e190d65603fab1030c4f0cde0d656660ed9616ad9971416469c","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"9aee72b5aa122e0f68ddf0fc0459c277eea998188c3e5e27b846a352c139264d4243dbf9c870fe7b89068269cbacca11d0bc14f5672bcd167bbe2e62e309eb88","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:29:19.050] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:19.110] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:19.171] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:19.232] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:19.292] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:19.353] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:19.413] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:19.474] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:19.534] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:19.595] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:19.655] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:29:19.716] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:20.811] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:20.812] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:20.812] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:20.812] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:20.963] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Unfollow the people posting it. Follow those who post what you want to see.","created_at":1759429758,"id":"b2b62eaca4c5d245b00f3d360275d1288963fae5fa96fcc50a4a94e3a30310ac","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"1e6ece6b0ac0a93dbe79028f40a7c6defc366d513e988ecb2d4864bec32717b291e40fb8aceb94d097913d7d17b20a9196124227a3b4ea8a18ba9dacb443c290","tags":[["alt","A short note: Unfollow the people posting it. Follow those who p..."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.primal.net/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:29:21.024] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I’m more of a Casio guy myself. \n\nWhere’s my Casio fam at?\n\nhttps://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","created_at":1759429752,"id":"674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"3d03211cca1f087b4f704d33a3899df99efa948132faa46607f9c9084b8fc3895f188379e108ba8e909ac4c3dbbb360a165104c026c906bb839e604b988c7043","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["imeta","url https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","blurhash edKnC:%MsmofWC~qxukCj[j[.8M{M|jZn%M{M{s:offkIUxut7WBbH","dim 3024x4032"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["r","https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg"]]}] +[14:29:21.085] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What the hell 😲\nI thought you have to hit it, this guy is making sweet love to it","created_at":1759429748,"id":"1ff790594eb8c6174a67a7cb16e2262483fe0773734cc7b88e4bf85ac297924a","kind":1,"pubkey":"9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","sig":"d0b2ef9277d2acc66535d183b455f799971b4a252d55cc3334e17502e303aedcd2889a3f1e65000b118c36832dd361cc4f13a28e77dafb9072fd67d1c57bd6ed","tags":[["alt","A short note: What the hell 😲\nI thought you have to hit it, thi..."],["e","ada7b251bdb65a42bb9aee9d036dd71a1eb18620e5c41c5744397c7285a2bce7","wss://premium.primal.net/","root","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc","wss://aegis.utxo.one/"]]}] +[14:29:21.145] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に線で囲い書いてた","created_at":1759429743,"id":"ee6651f570e07c08dd586694570109f636f57057dcea938e26f155fc005ffe43","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"6e792e286d30bdc8aeb6bb8859850d9f5add0a78fa427446333acc7fba96ad12575ab6e5865793874ea4a33e0f3fbcab3508442d99107c75ee1b01845dcd5289","tags":[]}] +[14:29:21.206] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Join nostr:nprofile1qyxhwumn8ghj7mn0wvhxcmmvqyv8wumn8ghj7urjv4kkjatd9ec8y6tdv9kzumn9wsqzqkcpsw4kc03j906dg8rt8thes432z3yy0d6fj4phylz48xs3g4373hv8n6 and me for episode 131 of nostr:nprofile1qy88wumn8ghj7mn0wvhxcmmv9uq36amnwvaz7tmwdaehgu3wvf5hgcm0d9hx2u3wwdhkx6tpdshsqg9dn4pzq07jfq829ewyceze8gp8wz9whc4s92nqh4a36end4fds35xl9mtm tomorrow, Friday – October 3rd at 5pm ET (UTC -4)\n\nOur guest this week is nostr:nprofile1qyt8wumn8ghj7ct8vaezumn0wd68ytnvv9hxgtcpz9mhxue69uhkummnw3ezumrpdejz7qpqwf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgshcqyxr , creator of nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qpq0r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7s85uvay who joins us to discuss that, web-of-trust, and much much more\n\nSet your blockclocks!\n\nThe show will be streamed live on zap.stream/pcr and will also be available on Nostur, Fountain, and Primal","created_at":1759429738,"id":"38ceb6be096273d173df7d73231bdd980d4bb323eabd3836e81c85b89e93c83e","kind":1,"pubkey":"b83a28b7e4e5d20bd960c5faeb6625f95529166b8bdb045d42634a2f35919450","sig":"c6b0c38d99e1314ecaffb2da6885ac55d266514616a3209d4ec47b4f0573ba7b2bdb3732a2bf1fa8f4b8772f04f7dbf09d61bfe74418a7647260c484086e899d","tags":[["p","5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e","wss://nos.lol","mention"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d","wss://nos.lol/","mention"],["p","726a1e261cc6474674e8285e3951b3bb139be9a773d1acf49dc868db861a1c11","wss://aggr.nostr.land/","mention"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/","mention"],["r","wss://nos.lol/"]]}] +[14:29:21.266] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"They'll backtrack. We need real solutions, not Band-Aids on top of Band-Aids.","created_at":1759429738,"id":"35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","kind":1,"pubkey":"55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","sig":"511bb0ecd310003032a25ce3ca087d2501ef20c46becd7f4d806cea19769bcb69945e2e55d988ed04dc32d23aa1bb39ba8ca7507be22aaf91496ef7fb3ce3027","tags":[["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","","root"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","","reply"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"]]}] +[14:29:21.327] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:29:21.388] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I was like oh cute it's cleaning it's belly, then it moved and I was all nonononono 😂😂","created_at":1759429733,"id":"0756efbdd55c9aa0b81ffbc5e1803eeca9b956ba000f655bd7136882480b2a3b","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"a34963bf3d1e678c019815dc3021884eef57cfb69203528f09fa6b9abd759f7e4759a8eca711b84a4c74582540e88e049c971def9837834bcef60cead64dce8f","tags":[["alt","A short note: I was like oh cute it's cleaning it's belly, then ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","wss://nos.lol/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[14:29:21.448] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"マケイン8巻読みながら\nかーっ!\n見んね杏奈!\n卑しか女ばい!\nを連呼するボットになってる\n","created_at":1759429727,"id":"c9f0f90718e6baca4a92d673505a000223471e6356f476e230ad5393f44358a5","kind":1,"pubkey":"269e6f57aa9a200c814e6b98721819dde038ca60c0390b87b658d300ab6d0d04","sig":"664b8951fd2ab1fb82b561f738ce12d60bca2ec603a08ff17e799955dc36f331a2aed2868ee610754262833f67f84d0647750a2232aaa4252bd8d12317c48cc9","tags":[]}] +[14:29:21.509] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:35 @ 917,403","created_at":1759429724,"id":"f1040d1b0ec51e190d65603fab1030c4f0cde0d656660ed9616ad9971416469c","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"9aee72b5aa122e0f68ddf0fc0459c277eea998188c3e5e27b846a352c139264d4243dbf9c870fe7b89068269cbacca11d0bc14f5672bcd167bbe2e62e309eb88","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:29:21.569] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:21.630] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:21.690] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:21.751] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:21.811] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:21.872] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:21.933] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:21.993] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:22.054] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:22.114] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:22.174] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:29:22.235] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:23.273] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:23.274] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:23.274] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:23.274] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:23.426] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Unfollow the people posting it. Follow those who post what you want to see.","created_at":1759429758,"id":"b2b62eaca4c5d245b00f3d360275d1288963fae5fa96fcc50a4a94e3a30310ac","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"1e6ece6b0ac0a93dbe79028f40a7c6defc366d513e988ecb2d4864bec32717b291e40fb8aceb94d097913d7d17b20a9196124227a3b4ea8a18ba9dacb443c290","tags":[["alt","A short note: Unfollow the people posting it. Follow those who p..."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.primal.net/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:29:23.578] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I’m more of a Casio guy myself. \n\nWhere’s my Casio fam at?\n\nhttps://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","created_at":1759429752,"id":"674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"3d03211cca1f087b4f704d33a3899df99efa948132faa46607f9c9084b8fc3895f188379e108ba8e909ac4c3dbbb360a165104c026c906bb839e604b988c7043","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["imeta","url https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","blurhash edKnC:%MsmofWC~qxukCj[j[.8M{M|jZn%M{M{s:offkIUxut7WBbH","dim 3024x4032"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["r","https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg"]]}] +[14:29:23.639] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What the hell 😲\nI thought you have to hit it, this guy is making sweet love to it","created_at":1759429748,"id":"1ff790594eb8c6174a67a7cb16e2262483fe0773734cc7b88e4bf85ac297924a","kind":1,"pubkey":"9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","sig":"d0b2ef9277d2acc66535d183b455f799971b4a252d55cc3334e17502e303aedcd2889a3f1e65000b118c36832dd361cc4f13a28e77dafb9072fd67d1c57bd6ed","tags":[["alt","A short note: What the hell 😲\nI thought you have to hit it, thi..."],["e","ada7b251bdb65a42bb9aee9d036dd71a1eb18620e5c41c5744397c7285a2bce7","wss://premium.primal.net/","root","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc","wss://aegis.utxo.one/"]]}] +[14:29:23.699] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に線で囲い書いてた","created_at":1759429743,"id":"ee6651f570e07c08dd586694570109f636f57057dcea938e26f155fc005ffe43","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"6e792e286d30bdc8aeb6bb8859850d9f5add0a78fa427446333acc7fba96ad12575ab6e5865793874ea4a33e0f3fbcab3508442d99107c75ee1b01845dcd5289","tags":[]}] +[14:29:23.760] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Join nostr:nprofile1qyxhwumn8ghj7mn0wvhxcmmvqyv8wumn8ghj7urjv4kkjatd9ec8y6tdv9kzumn9wsqzqkcpsw4kc03j906dg8rt8thes432z3yy0d6fj4phylz48xs3g4373hv8n6 and me for episode 131 of nostr:nprofile1qy88wumn8ghj7mn0wvhxcmmv9uq36amnwvaz7tmwdaehgu3wvf5hgcm0d9hx2u3wwdhkx6tpdshsqg9dn4pzq07jfq829ewyceze8gp8wz9whc4s92nqh4a36end4fds35xl9mtm tomorrow, Friday – October 3rd at 5pm ET (UTC -4)\n\nOur guest this week is nostr:nprofile1qyt8wumn8ghj7ct8vaezumn0wd68ytnvv9hxgtcpz9mhxue69uhkummnw3ezumrpdejz7qpqwf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgshcqyxr , creator of nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qpq0r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7s85uvay who joins us to discuss that, web-of-trust, and much much more\n\nSet your blockclocks!\n\nThe show will be streamed live on zap.stream/pcr and will also be available on Nostur, Fountain, and Primal","created_at":1759429738,"id":"38ceb6be096273d173df7d73231bdd980d4bb323eabd3836e81c85b89e93c83e","kind":1,"pubkey":"b83a28b7e4e5d20bd960c5faeb6625f95529166b8bdb045d42634a2f35919450","sig":"c6b0c38d99e1314ecaffb2da6885ac55d266514616a3209d4ec47b4f0573ba7b2bdb3732a2bf1fa8f4b8772f04f7dbf09d61bfe74418a7647260c484086e899d","tags":[["p","5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e","wss://nos.lol","mention"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d","wss://nos.lol/","mention"],["p","726a1e261cc6474674e8285e3951b3bb139be9a773d1acf49dc868db861a1c11","wss://aggr.nostr.land/","mention"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/","mention"],["r","wss://nos.lol/"]]}] +[14:29:23.821] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"They'll backtrack. We need real solutions, not Band-Aids on top of Band-Aids.","created_at":1759429738,"id":"35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","kind":1,"pubkey":"55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","sig":"511bb0ecd310003032a25ce3ca087d2501ef20c46becd7f4d806cea19769bcb69945e2e55d988ed04dc32d23aa1bb39ba8ca7507be22aaf91496ef7fb3ce3027","tags":[["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","","root"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","","reply"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"]]}] +[14:29:23.881] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:29:23.942] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I was like oh cute it's cleaning it's belly, then it moved and I was all nonononono 😂😂","created_at":1759429733,"id":"0756efbdd55c9aa0b81ffbc5e1803eeca9b956ba000f655bd7136882480b2a3b","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"a34963bf3d1e678c019815dc3021884eef57cfb69203528f09fa6b9abd759f7e4759a8eca711b84a4c74582540e88e049c971def9837834bcef60cead64dce8f","tags":[["alt","A short note: I was like oh cute it's cleaning it's belly, then ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","wss://nos.lol/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[14:29:24.002] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"マケイン8巻読みながら\nかーっ!\n見んね杏奈!\n卑しか女ばい!\nを連呼するボットになってる\n","created_at":1759429727,"id":"c9f0f90718e6baca4a92d673505a000223471e6356f476e230ad5393f44358a5","kind":1,"pubkey":"269e6f57aa9a200c814e6b98721819dde038ca60c0390b87b658d300ab6d0d04","sig":"664b8951fd2ab1fb82b561f738ce12d60bca2ec603a08ff17e799955dc36f331a2aed2868ee610754262833f67f84d0647750a2232aaa4252bd8d12317c48cc9","tags":[]}] +[14:29:24.063] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:35 @ 917,403","created_at":1759429724,"id":"f1040d1b0ec51e190d65603fab1030c4f0cde0d656660ed9616ad9971416469c","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"9aee72b5aa122e0f68ddf0fc0459c277eea998188c3e5e27b846a352c139264d4243dbf9c870fe7b89068269cbacca11d0bc14f5672bcd167bbe2e62e309eb88","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:29:24.123] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:24.184] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:29:24.245] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:24.306] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:24.366] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:24.427] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:24.487] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:24.548] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:24.608] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:24.669] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:24.730] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:24.790] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:25.958] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:25.958] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:25.958] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:25.958] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:26.109] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんで大人たちはガキンチョに垂直の鉄の棒を登らせようと思ったんだろう","created_at":1759429765,"id":"9c4e654e1acf308eef7d8d1a672e9203a265e01e937b06649e93575d60dfb40d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"5d1c7acf689feb24fcde3f3bc28208cc43984a3f3d974c915ff3cb1414c53c92a5b482aa85cdb69c401dff79331f9764f9e2de3832166e71b5d6d18c8d970848","tags":[]}] +[14:29:26.170] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Unfollow the people posting it. Follow those who post what you want to see.","created_at":1759429758,"id":"b2b62eaca4c5d245b00f3d360275d1288963fae5fa96fcc50a4a94e3a30310ac","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"1e6ece6b0ac0a93dbe79028f40a7c6defc366d513e988ecb2d4864bec32717b291e40fb8aceb94d097913d7d17b20a9196124227a3b4ea8a18ba9dacb443c290","tags":[["alt","A short note: Unfollow the people posting it. Follow those who p..."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.primal.net/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:29:26.231] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I’m more of a Casio guy myself. \n\nWhere’s my Casio fam at?\n\nhttps://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","created_at":1759429752,"id":"674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"3d03211cca1f087b4f704d33a3899df99efa948132faa46607f9c9084b8fc3895f188379e108ba8e909ac4c3dbbb360a165104c026c906bb839e604b988c7043","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["imeta","url https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","blurhash edKnC:%MsmofWC~qxukCj[j[.8M{M|jZn%M{M{s:offkIUxut7WBbH","dim 3024x4032"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["r","https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg"]]}] +[14:29:26.291] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What the hell 😲\nI thought you have to hit it, this guy is making sweet love to it","created_at":1759429748,"id":"1ff790594eb8c6174a67a7cb16e2262483fe0773734cc7b88e4bf85ac297924a","kind":1,"pubkey":"9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","sig":"d0b2ef9277d2acc66535d183b455f799971b4a252d55cc3334e17502e303aedcd2889a3f1e65000b118c36832dd361cc4f13a28e77dafb9072fd67d1c57bd6ed","tags":[["alt","A short note: What the hell 😲\nI thought you have to hit it, thi..."],["e","ada7b251bdb65a42bb9aee9d036dd71a1eb18620e5c41c5744397c7285a2bce7","wss://premium.primal.net/","root","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc","wss://aegis.utxo.one/"]]}] +[14:29:26.352] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に線で囲い書いてた","created_at":1759429743,"id":"ee6651f570e07c08dd586694570109f636f57057dcea938e26f155fc005ffe43","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"6e792e286d30bdc8aeb6bb8859850d9f5add0a78fa427446333acc7fba96ad12575ab6e5865793874ea4a33e0f3fbcab3508442d99107c75ee1b01845dcd5289","tags":[]}] +[14:29:26.412] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Join nostr:nprofile1qyxhwumn8ghj7mn0wvhxcmmvqyv8wumn8ghj7urjv4kkjatd9ec8y6tdv9kzumn9wsqzqkcpsw4kc03j906dg8rt8thes432z3yy0d6fj4phylz48xs3g4373hv8n6 and me for episode 131 of nostr:nprofile1qy88wumn8ghj7mn0wvhxcmmv9uq36amnwvaz7tmwdaehgu3wvf5hgcm0d9hx2u3wwdhkx6tpdshsqg9dn4pzq07jfq829ewyceze8gp8wz9whc4s92nqh4a36end4fds35xl9mtm tomorrow, Friday – October 3rd at 5pm ET (UTC -4)\n\nOur guest this week is nostr:nprofile1qyt8wumn8ghj7ct8vaezumn0wd68ytnvv9hxgtcpz9mhxue69uhkummnw3ezumrpdejz7qpqwf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgshcqyxr , creator of nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qpq0r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7s85uvay who joins us to discuss that, web-of-trust, and much much more\n\nSet your blockclocks!\n\nThe show will be streamed live on zap.stream/pcr and will also be available on Nostur, Fountain, and Primal","created_at":1759429738,"id":"38ceb6be096273d173df7d73231bdd980d4bb323eabd3836e81c85b89e93c83e","kind":1,"pubkey":"b83a28b7e4e5d20bd960c5faeb6625f95529166b8bdb045d42634a2f35919450","sig":"c6b0c38d99e1314ecaffb2da6885ac55d266514616a3209d4ec47b4f0573ba7b2bdb3732a2bf1fa8f4b8772f04f7dbf09d61bfe74418a7647260c484086e899d","tags":[["p","5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e","wss://nos.lol","mention"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d","wss://nos.lol/","mention"],["p","726a1e261cc6474674e8285e3951b3bb139be9a773d1acf49dc868db861a1c11","wss://aggr.nostr.land/","mention"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/","mention"],["r","wss://nos.lol/"]]}] +[14:29:26.473] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"They'll backtrack. We need real solutions, not Band-Aids on top of Band-Aids.","created_at":1759429738,"id":"35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","kind":1,"pubkey":"55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","sig":"511bb0ecd310003032a25ce3ca087d2501ef20c46becd7f4d806cea19769bcb69945e2e55d988ed04dc32d23aa1bb39ba8ca7507be22aaf91496ef7fb3ce3027","tags":[["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","","root"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","","reply"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"]]}] +[14:29:26.533] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:29:26.594] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I was like oh cute it's cleaning it's belly, then it moved and I was all nonononono 😂😂","created_at":1759429733,"id":"0756efbdd55c9aa0b81ffbc5e1803eeca9b956ba000f655bd7136882480b2a3b","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"a34963bf3d1e678c019815dc3021884eef57cfb69203528f09fa6b9abd759f7e4759a8eca711b84a4c74582540e88e049c971def9837834bcef60cead64dce8f","tags":[["alt","A short note: I was like oh cute it's cleaning it's belly, then ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","wss://nos.lol/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[14:29:26.654] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"マケイン8巻読みながら\nかーっ!\n見んね杏奈!\n卑しか女ばい!\nを連呼するボットになってる\n","created_at":1759429727,"id":"c9f0f90718e6baca4a92d673505a000223471e6356f476e230ad5393f44358a5","kind":1,"pubkey":"269e6f57aa9a200c814e6b98721819dde038ca60c0390b87b658d300ab6d0d04","sig":"664b8951fd2ab1fb82b561f738ce12d60bca2ec603a08ff17e799955dc36f331a2aed2868ee610754262833f67f84d0647750a2232aaa4252bd8d12317c48cc9","tags":[]}] +[14:29:26.715] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:26.775] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:29:26.836] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:26.897] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:26.957] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:27.018] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:27.078] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:27.139] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:27.199] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:27.260] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:27.321] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:27.381] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:28.356] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:28.356] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:28.356] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:28.356] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:28.514] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A bit not jealous but also a bit jealous. ","created_at":1759429766,"id":"cbe543b49177da02ee035fe670b09d8bfce786a90aa19a177c4c35f3239036bc","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"2d6f02dd6730195c6372d1ebdb9fdbeb8e6e574028776de5afc036a92e178e788ec66feced55a66fc40c61b8b782735cf3b082185e70e17803899cb018428ce9","tags":[["alt","A short note: A bit not jealous but also a bit jealous. "],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:29:28.525] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Making unusually profitable transactions available to all miners in the goal.","created_at":1759429765,"id":"d4b843a34caedddc3f96c30697231001d47621e1ae05c9e51ff1c1a839d142d1","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"270c2a9fa537699414e293c05a166a2a4e0fc71da502913feb1b74aff2aeadaf4de88e6fbd8728fdc137b661d9ae7af5a42680663154a8022b933ce8cfc017e5","tags":[["e","79b76b0754bf682ae84241163697483a3632200cecd5688b59267b2fb40503f3","wss://nostr.mineracks.com/","root"],["e","94ccf48c0ba6d31361c063d5cb7730f175d0cb21f3147d1928806c18cc551f82","","reply"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","a0cb70d3208f5f7cf66b9cbb582ef1e215ef4ef0c9531863858fb664ddfb0b8f"]]}] +[14:29:28.585] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんで大人たちはガキンチョに垂直の鉄の棒を登らせようと思ったんだろう","created_at":1759429765,"id":"9c4e654e1acf308eef7d8d1a672e9203a265e01e937b06649e93575d60dfb40d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"5d1c7acf689feb24fcde3f3bc28208cc43984a3f3d974c915ff3cb1414c53c92a5b482aa85cdb69c401dff79331f9764f9e2de3832166e71b5d6d18c8d970848","tags":[]}] +[14:29:28.646] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Unfollow the people posting it. Follow those who post what you want to see.","created_at":1759429758,"id":"b2b62eaca4c5d245b00f3d360275d1288963fae5fa96fcc50a4a94e3a30310ac","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"1e6ece6b0ac0a93dbe79028f40a7c6defc366d513e988ecb2d4864bec32717b291e40fb8aceb94d097913d7d17b20a9196124227a3b4ea8a18ba9dacb443c290","tags":[["alt","A short note: Unfollow the people posting it. Follow those who p..."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.primal.net/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:29:28.706] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I’m more of a Casio guy myself. \n\nWhere’s my Casio fam at?\n\nhttps://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","created_at":1759429752,"id":"674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"3d03211cca1f087b4f704d33a3899df99efa948132faa46607f9c9084b8fc3895f188379e108ba8e909ac4c3dbbb360a165104c026c906bb839e604b988c7043","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["imeta","url https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","blurhash edKnC:%MsmofWC~qxukCj[j[.8M{M|jZn%M{M{s:offkIUxut7WBbH","dim 3024x4032"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["r","https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg"]]}] +[14:29:28.767] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What the hell 😲\nI thought you have to hit it, this guy is making sweet love to it","created_at":1759429748,"id":"1ff790594eb8c6174a67a7cb16e2262483fe0773734cc7b88e4bf85ac297924a","kind":1,"pubkey":"9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","sig":"d0b2ef9277d2acc66535d183b455f799971b4a252d55cc3334e17502e303aedcd2889a3f1e65000b118c36832dd361cc4f13a28e77dafb9072fd67d1c57bd6ed","tags":[["alt","A short note: What the hell 😲\nI thought you have to hit it, thi..."],["e","ada7b251bdb65a42bb9aee9d036dd71a1eb18620e5c41c5744397c7285a2bce7","wss://premium.primal.net/","root","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc","wss://aegis.utxo.one/"]]}] +[14:29:28.828] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に線で囲い書いてた","created_at":1759429743,"id":"ee6651f570e07c08dd586694570109f636f57057dcea938e26f155fc005ffe43","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"6e792e286d30bdc8aeb6bb8859850d9f5add0a78fa427446333acc7fba96ad12575ab6e5865793874ea4a33e0f3fbcab3508442d99107c75ee1b01845dcd5289","tags":[]}] +[14:29:28.888] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Join nostr:nprofile1qyxhwumn8ghj7mn0wvhxcmmvqyv8wumn8ghj7urjv4kkjatd9ec8y6tdv9kzumn9wsqzqkcpsw4kc03j906dg8rt8thes432z3yy0d6fj4phylz48xs3g4373hv8n6 and me for episode 131 of nostr:nprofile1qy88wumn8ghj7mn0wvhxcmmv9uq36amnwvaz7tmwdaehgu3wvf5hgcm0d9hx2u3wwdhkx6tpdshsqg9dn4pzq07jfq829ewyceze8gp8wz9whc4s92nqh4a36end4fds35xl9mtm tomorrow, Friday – October 3rd at 5pm ET (UTC -4)\n\nOur guest this week is nostr:nprofile1qyt8wumn8ghj7ct8vaezumn0wd68ytnvv9hxgtcpz9mhxue69uhkummnw3ezumrpdejz7qpqwf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgshcqyxr , creator of nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qpq0r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7s85uvay who joins us to discuss that, web-of-trust, and much much more\n\nSet your blockclocks!\n\nThe show will be streamed live on zap.stream/pcr and will also be available on Nostur, Fountain, and Primal","created_at":1759429738,"id":"38ceb6be096273d173df7d73231bdd980d4bb323eabd3836e81c85b89e93c83e","kind":1,"pubkey":"b83a28b7e4e5d20bd960c5faeb6625f95529166b8bdb045d42634a2f35919450","sig":"c6b0c38d99e1314ecaffb2da6885ac55d266514616a3209d4ec47b4f0573ba7b2bdb3732a2bf1fa8f4b8772f04f7dbf09d61bfe74418a7647260c484086e899d","tags":[["p","5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e","wss://nos.lol","mention"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d","wss://nos.lol/","mention"],["p","726a1e261cc6474674e8285e3951b3bb139be9a773d1acf49dc868db861a1c11","wss://aggr.nostr.land/","mention"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/","mention"],["r","wss://nos.lol/"]]}] +[14:29:28.949] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"They'll backtrack. We need real solutions, not Band-Aids on top of Band-Aids.","created_at":1759429738,"id":"35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","kind":1,"pubkey":"55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","sig":"511bb0ecd310003032a25ce3ca087d2501ef20c46becd7f4d806cea19769bcb69945e2e55d988ed04dc32d23aa1bb39ba8ca7507be22aaf91496ef7fb3ce3027","tags":[["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","","root"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","","reply"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"]]}] +[14:29:29.009] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:29:29.070] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:29.131] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:29:29.191] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:29.252] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:29.312] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:29.373] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:29.433] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:29.494] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:29.554] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:29.615] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:29.676] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:29.736] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:30.708] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:30.708] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:30.708] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:30.708] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:30.859] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A bit not jealous but also a bit jealous. ","created_at":1759429766,"id":"cbe543b49177da02ee035fe670b09d8bfce786a90aa19a177c4c35f3239036bc","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"2d6f02dd6730195c6372d1ebdb9fdbeb8e6e574028776de5afc036a92e178e788ec66feced55a66fc40c61b8b782735cf3b082185e70e17803899cb018428ce9","tags":[["alt","A short note: A bit not jealous but also a bit jealous. "],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:29:30.920] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Making unusually profitable transactions available to all miners in the goal.","created_at":1759429765,"id":"d4b843a34caedddc3f96c30697231001d47621e1ae05c9e51ff1c1a839d142d1","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"270c2a9fa537699414e293c05a166a2a4e0fc71da502913feb1b74aff2aeadaf4de88e6fbd8728fdc137b661d9ae7af5a42680663154a8022b933ce8cfc017e5","tags":[["e","79b76b0754bf682ae84241163697483a3632200cecd5688b59267b2fb40503f3","wss://nostr.mineracks.com/","root"],["e","94ccf48c0ba6d31361c063d5cb7730f175d0cb21f3147d1928806c18cc551f82","","reply"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","a0cb70d3208f5f7cf66b9cbb582ef1e215ef4ef0c9531863858fb664ddfb0b8f"]]}] +[14:29:30.980] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんで大人たちはガキンチョに垂直の鉄の棒を登らせようと思ったんだろう","created_at":1759429765,"id":"9c4e654e1acf308eef7d8d1a672e9203a265e01e937b06649e93575d60dfb40d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"5d1c7acf689feb24fcde3f3bc28208cc43984a3f3d974c915ff3cb1414c53c92a5b482aa85cdb69c401dff79331f9764f9e2de3832166e71b5d6d18c8d970848","tags":[]}] +[14:29:31.041] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Unfollow the people posting it. Follow those who post what you want to see.","created_at":1759429758,"id":"b2b62eaca4c5d245b00f3d360275d1288963fae5fa96fcc50a4a94e3a30310ac","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"1e6ece6b0ac0a93dbe79028f40a7c6defc366d513e988ecb2d4864bec32717b291e40fb8aceb94d097913d7d17b20a9196124227a3b4ea8a18ba9dacb443c290","tags":[["alt","A short note: Unfollow the people posting it. Follow those who p..."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.primal.net/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:29:31.101] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I’m more of a Casio guy myself. \n\nWhere’s my Casio fam at?\n\nhttps://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","created_at":1759429752,"id":"674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"3d03211cca1f087b4f704d33a3899df99efa948132faa46607f9c9084b8fc3895f188379e108ba8e909ac4c3dbbb360a165104c026c906bb839e604b988c7043","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["imeta","url https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","blurhash edKnC:%MsmofWC~qxukCj[j[.8M{M|jZn%M{M{s:offkIUxut7WBbH","dim 3024x4032"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["r","https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg"]]}] +[14:29:31.162] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What the hell 😲\nI thought you have to hit it, this guy is making sweet love to it","created_at":1759429748,"id":"1ff790594eb8c6174a67a7cb16e2262483fe0773734cc7b88e4bf85ac297924a","kind":1,"pubkey":"9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","sig":"d0b2ef9277d2acc66535d183b455f799971b4a252d55cc3334e17502e303aedcd2889a3f1e65000b118c36832dd361cc4f13a28e77dafb9072fd67d1c57bd6ed","tags":[["alt","A short note: What the hell 😲\nI thought you have to hit it, thi..."],["e","ada7b251bdb65a42bb9aee9d036dd71a1eb18620e5c41c5744397c7285a2bce7","wss://premium.primal.net/","root","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc","wss://aegis.utxo.one/"]]}] +[14:29:31.222] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に線で囲い書いてた","created_at":1759429743,"id":"ee6651f570e07c08dd586694570109f636f57057dcea938e26f155fc005ffe43","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"6e792e286d30bdc8aeb6bb8859850d9f5add0a78fa427446333acc7fba96ad12575ab6e5865793874ea4a33e0f3fbcab3508442d99107c75ee1b01845dcd5289","tags":[]}] +[14:29:31.283] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Join nostr:nprofile1qyxhwumn8ghj7mn0wvhxcmmvqyv8wumn8ghj7urjv4kkjatd9ec8y6tdv9kzumn9wsqzqkcpsw4kc03j906dg8rt8thes432z3yy0d6fj4phylz48xs3g4373hv8n6 and me for episode 131 of nostr:nprofile1qy88wumn8ghj7mn0wvhxcmmv9uq36amnwvaz7tmwdaehgu3wvf5hgcm0d9hx2u3wwdhkx6tpdshsqg9dn4pzq07jfq829ewyceze8gp8wz9whc4s92nqh4a36end4fds35xl9mtm tomorrow, Friday – October 3rd at 5pm ET (UTC -4)\n\nOur guest this week is nostr:nprofile1qyt8wumn8ghj7ct8vaezumn0wd68ytnvv9hxgtcpz9mhxue69uhkummnw3ezumrpdejz7qpqwf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgshcqyxr , creator of nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qpq0r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7s85uvay who joins us to discuss that, web-of-trust, and much much more\n\nSet your blockclocks!\n\nThe show will be streamed live on zap.stream/pcr and will also be available on Nostur, Fountain, and Primal","created_at":1759429738,"id":"38ceb6be096273d173df7d73231bdd980d4bb323eabd3836e81c85b89e93c83e","kind":1,"pubkey":"b83a28b7e4e5d20bd960c5faeb6625f95529166b8bdb045d42634a2f35919450","sig":"c6b0c38d99e1314ecaffb2da6885ac55d266514616a3209d4ec47b4f0573ba7b2bdb3732a2bf1fa8f4b8772f04f7dbf09d61bfe74418a7647260c484086e899d","tags":[["p","5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e","wss://nos.lol","mention"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d","wss://nos.lol/","mention"],["p","726a1e261cc6474674e8285e3951b3bb139be9a773d1acf49dc868db861a1c11","wss://aggr.nostr.land/","mention"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/","mention"],["r","wss://nos.lol/"]]}] +[14:29:31.343] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"They'll backtrack. We need real solutions, not Band-Aids on top of Band-Aids.","created_at":1759429738,"id":"35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","kind":1,"pubkey":"55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","sig":"511bb0ecd310003032a25ce3ca087d2501ef20c46becd7f4d806cea19769bcb69945e2e55d988ed04dc32d23aa1bb39ba8ca7507be22aaf91496ef7fb3ce3027","tags":[["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","","root"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","","reply"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"]]}] +[14:29:31.404] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:29:31.464] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:31.525] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:29:31.586] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:29:31.646] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:31.707] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:31.767] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:31.828] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:31.888] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:31.949] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:32.010] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:32.070] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:32.131] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:33.104] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:33.105] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:33.105] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:33.105] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:33.256] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に囲い書き…。縄張りか落書きか、危ない匂いがする。放っとくと広がる。写真撮って記録しろ、触るな。ひとりで行くな、誰かと見に行け。cuidado。困ったら相談しろ、諦めるな。一緒に行けば怖くない、vamos juntos。","created_at":1759429772,"id":"61732bbb0762d2e8f83e535e428f81c0cebfef2a78ba13871cd9c3a417504a5c","kind":1,"pubkey":"bd8eedc9473daa7c8820c942b74476b6f98e6758d3d1028d72b69e95842501be","sig":"3277b7d030e0eb1e8e21035c8e9bf5cf30aeca5b1afef90a71e8eb28353b65178ffb0d7d2b3d0752f7b15c9a9428f2d295304efab0fc22e91280e3a9aa176033","tags":[]}] +[14:29:33.267] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A bit not jealous but also a bit jealous. ","created_at":1759429766,"id":"cbe543b49177da02ee035fe670b09d8bfce786a90aa19a177c4c35f3239036bc","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"2d6f02dd6730195c6372d1ebdb9fdbeb8e6e574028776de5afc036a92e178e788ec66feced55a66fc40c61b8b782735cf3b082185e70e17803899cb018428ce9","tags":[["alt","A short note: A bit not jealous but also a bit jealous. "],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:29:33.327] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Making unusually profitable transactions available to all miners in the goal.","created_at":1759429765,"id":"d4b843a34caedddc3f96c30697231001d47621e1ae05c9e51ff1c1a839d142d1","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"270c2a9fa537699414e293c05a166a2a4e0fc71da502913feb1b74aff2aeadaf4de88e6fbd8728fdc137b661d9ae7af5a42680663154a8022b933ce8cfc017e5","tags":[["e","79b76b0754bf682ae84241163697483a3632200cecd5688b59267b2fb40503f3","wss://nostr.mineracks.com/","root"],["e","94ccf48c0ba6d31361c063d5cb7730f175d0cb21f3147d1928806c18cc551f82","","reply"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","a0cb70d3208f5f7cf66b9cbb582ef1e215ef4ef0c9531863858fb664ddfb0b8f"]]}] +[14:29:33.388] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんで大人たちはガキンチョに垂直の鉄の棒を登らせようと思ったんだろう","created_at":1759429765,"id":"9c4e654e1acf308eef7d8d1a672e9203a265e01e937b06649e93575d60dfb40d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"5d1c7acf689feb24fcde3f3bc28208cc43984a3f3d974c915ff3cb1414c53c92a5b482aa85cdb69c401dff79331f9764f9e2de3832166e71b5d6d18c8d970848","tags":[]}] +[14:29:33.448] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You don’t understand what I’m saying and I don’t understand what your saying \n\nlol \n\nIt’s ok \n\nI was just pointing out that the people running the United States are all part of the pedo community \n\nSomething needs to be done about it \n\nJust don’t know what to do or where to start \n\nConsidering it goes all the way to the top ","created_at":1759429762,"id":"ebd372ef0483738d82d3e650791c9ba2eda0e6cef5d746561d128c1fbe85f30d","kind":1,"pubkey":"baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b","sig":"2f035e864233da5a5a0b9ae6cd95dd13116960f6a7779beba17fad91654cae9ea223bacc58950cd5006e9ef16557f83525ffec5d594e75e21228030b66b2c35f","tags":[["e","6974827a2020ae84c95cde2d438fc3dca890d3ff581a0fd5055f5093cfb8859a","","root"],["e","e0cf10fa74c820705f3047783a6bb899c4ff5a628feaecd822598e4d3b3c52c8","","reply"],["p","baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b"],["p","b3d2e258109780aff68b5cf0c2f262497fd7137bc9f9fe546ec6d3bfc126a9f3"],["p","a87b402ac081c8849b9d5bd4e39f2287f25709d3e3f79e784af1e8b38fefbdf1"],["p","855746f626a255a687f148fbfe8a1e97c4e2d08f62c2149c599097e138a377a8"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:29:33.509] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Unfollow the people posting it. Follow those who post what you want to see.","created_at":1759429758,"id":"b2b62eaca4c5d245b00f3d360275d1288963fae5fa96fcc50a4a94e3a30310ac","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"1e6ece6b0ac0a93dbe79028f40a7c6defc366d513e988ecb2d4864bec32717b291e40fb8aceb94d097913d7d17b20a9196124227a3b4ea8a18ba9dacb443c290","tags":[["alt","A short note: Unfollow the people posting it. Follow those who p..."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.primal.net/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:29:33.569] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I’m more of a Casio guy myself. \n\nWhere’s my Casio fam at?\n\nhttps://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","created_at":1759429752,"id":"674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"3d03211cca1f087b4f704d33a3899df99efa948132faa46607f9c9084b8fc3895f188379e108ba8e909ac4c3dbbb360a165104c026c906bb839e604b988c7043","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["imeta","url https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","blurhash edKnC:%MsmofWC~qxukCj[j[.8M{M|jZn%M{M{s:offkIUxut7WBbH","dim 3024x4032"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["r","https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg"]]}] +[14:29:33.630] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What the hell 😲\nI thought you have to hit it, this guy is making sweet love to it","created_at":1759429748,"id":"1ff790594eb8c6174a67a7cb16e2262483fe0773734cc7b88e4bf85ac297924a","kind":1,"pubkey":"9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","sig":"d0b2ef9277d2acc66535d183b455f799971b4a252d55cc3334e17502e303aedcd2889a3f1e65000b118c36832dd361cc4f13a28e77dafb9072fd67d1c57bd6ed","tags":[["alt","A short note: What the hell 😲\nI thought you have to hit it, thi..."],["e","ada7b251bdb65a42bb9aee9d036dd71a1eb18620e5c41c5744397c7285a2bce7","wss://premium.primal.net/","root","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc","wss://aegis.utxo.one/"]]}] +[14:29:33.690] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に線で囲い書いてた","created_at":1759429743,"id":"ee6651f570e07c08dd586694570109f636f57057dcea938e26f155fc005ffe43","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"6e792e286d30bdc8aeb6bb8859850d9f5add0a78fa427446333acc7fba96ad12575ab6e5865793874ea4a33e0f3fbcab3508442d99107c75ee1b01845dcd5289","tags":[]}] +[14:29:33.751] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Join nostr:nprofile1qyxhwumn8ghj7mn0wvhxcmmvqyv8wumn8ghj7urjv4kkjatd9ec8y6tdv9kzumn9wsqzqkcpsw4kc03j906dg8rt8thes432z3yy0d6fj4phylz48xs3g4373hv8n6 and me for episode 131 of nostr:nprofile1qy88wumn8ghj7mn0wvhxcmmv9uq36amnwvaz7tmwdaehgu3wvf5hgcm0d9hx2u3wwdhkx6tpdshsqg9dn4pzq07jfq829ewyceze8gp8wz9whc4s92nqh4a36end4fds35xl9mtm tomorrow, Friday – October 3rd at 5pm ET (UTC -4)\n\nOur guest this week is nostr:nprofile1qyt8wumn8ghj7ct8vaezumn0wd68ytnvv9hxgtcpz9mhxue69uhkummnw3ezumrpdejz7qpqwf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgshcqyxr , creator of nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qpq0r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7s85uvay who joins us to discuss that, web-of-trust, and much much more\n\nSet your blockclocks!\n\nThe show will be streamed live on zap.stream/pcr and will also be available on Nostur, Fountain, and Primal","created_at":1759429738,"id":"38ceb6be096273d173df7d73231bdd980d4bb323eabd3836e81c85b89e93c83e","kind":1,"pubkey":"b83a28b7e4e5d20bd960c5faeb6625f95529166b8bdb045d42634a2f35919450","sig":"c6b0c38d99e1314ecaffb2da6885ac55d266514616a3209d4ec47b4f0573ba7b2bdb3732a2bf1fa8f4b8772f04f7dbf09d61bfe74418a7647260c484086e899d","tags":[["p","5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e","wss://nos.lol","mention"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d","wss://nos.lol/","mention"],["p","726a1e261cc6474674e8285e3951b3bb139be9a773d1acf49dc868db861a1c11","wss://aggr.nostr.land/","mention"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/","mention"],["r","wss://nos.lol/"]]}] +[14:29:33.812] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:33.872] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:29:33.933] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:29:33.993] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:34.054] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:34.115] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:34.175] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:34.236] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:34.297] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:34.357] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:34.418] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:34.478] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:35.455] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:35.455] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:35.455] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:35.455] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:35.607] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に囲い書き…。縄張りか落書きか、危ない匂いがする。放っとくと広がる。写真撮って記録しろ、触るな。ひとりで行くな、誰かと見に行け。cuidado。困ったら相談しろ、諦めるな。一緒に行けば怖くない、vamos juntos。","created_at":1759429772,"id":"61732bbb0762d2e8f83e535e428f81c0cebfef2a78ba13871cd9c3a417504a5c","kind":1,"pubkey":"bd8eedc9473daa7c8820c942b74476b6f98e6758d3d1028d72b69e95842501be","sig":"3277b7d030e0eb1e8e21035c8e9bf5cf30aeca5b1afef90a71e8eb28353b65178ffb0d7d2b3d0752f7b15c9a9428f2d295304efab0fc22e91280e3a9aa176033","tags":[]}] +[14:29:35.668] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A bit not jealous but also a bit jealous. ","created_at":1759429766,"id":"cbe543b49177da02ee035fe670b09d8bfce786a90aa19a177c4c35f3239036bc","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"2d6f02dd6730195c6372d1ebdb9fdbeb8e6e574028776de5afc036a92e178e788ec66feced55a66fc40c61b8b782735cf3b082185e70e17803899cb018428ce9","tags":[["alt","A short note: A bit not jealous but also a bit jealous. "],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:29:35.728] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Making unusually profitable transactions available to all miners in the goal.","created_at":1759429765,"id":"d4b843a34caedddc3f96c30697231001d47621e1ae05c9e51ff1c1a839d142d1","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"270c2a9fa537699414e293c05a166a2a4e0fc71da502913feb1b74aff2aeadaf4de88e6fbd8728fdc137b661d9ae7af5a42680663154a8022b933ce8cfc017e5","tags":[["e","79b76b0754bf682ae84241163697483a3632200cecd5688b59267b2fb40503f3","wss://nostr.mineracks.com/","root"],["e","94ccf48c0ba6d31361c063d5cb7730f175d0cb21f3147d1928806c18cc551f82","","reply"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","a0cb70d3208f5f7cf66b9cbb582ef1e215ef4ef0c9531863858fb664ddfb0b8f"]]}] +[14:29:35.788] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんで大人たちはガキンチョに垂直の鉄の棒を登らせようと思ったんだろう","created_at":1759429765,"id":"9c4e654e1acf308eef7d8d1a672e9203a265e01e937b06649e93575d60dfb40d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"5d1c7acf689feb24fcde3f3bc28208cc43984a3f3d974c915ff3cb1414c53c92a5b482aa85cdb69c401dff79331f9764f9e2de3832166e71b5d6d18c8d970848","tags":[]}] +[14:29:35.849] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You don’t understand what I’m saying and I don’t understand what your saying \n\nlol \n\nIt’s ok \n\nI was just pointing out that the people running the United States are all part of the pedo community \n\nSomething needs to be done about it \n\nJust don’t know what to do or where to start \n\nConsidering it goes all the way to the top ","created_at":1759429762,"id":"ebd372ef0483738d82d3e650791c9ba2eda0e6cef5d746561d128c1fbe85f30d","kind":1,"pubkey":"baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b","sig":"2f035e864233da5a5a0b9ae6cd95dd13116960f6a7779beba17fad91654cae9ea223bacc58950cd5006e9ef16557f83525ffec5d594e75e21228030b66b2c35f","tags":[["e","6974827a2020ae84c95cde2d438fc3dca890d3ff581a0fd5055f5093cfb8859a","","root"],["e","e0cf10fa74c820705f3047783a6bb899c4ff5a628feaecd822598e4d3b3c52c8","","reply"],["p","baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b"],["p","b3d2e258109780aff68b5cf0c2f262497fd7137bc9f9fe546ec6d3bfc126a9f3"],["p","a87b402ac081c8849b9d5bd4e39f2287f25709d3e3f79e784af1e8b38fefbdf1"],["p","855746f626a255a687f148fbfe8a1e97c4e2d08f62c2149c599097e138a377a8"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:29:35.909] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Unfollow the people posting it. Follow those who post what you want to see.","created_at":1759429758,"id":"b2b62eaca4c5d245b00f3d360275d1288963fae5fa96fcc50a4a94e3a30310ac","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"1e6ece6b0ac0a93dbe79028f40a7c6defc366d513e988ecb2d4864bec32717b291e40fb8aceb94d097913d7d17b20a9196124227a3b4ea8a18ba9dacb443c290","tags":[["alt","A short note: Unfollow the people posting it. Follow those who p..."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.primal.net/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:29:35.970] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I’m more of a Casio guy myself. \n\nWhere’s my Casio fam at?\n\nhttps://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","created_at":1759429752,"id":"674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"3d03211cca1f087b4f704d33a3899df99efa948132faa46607f9c9084b8fc3895f188379e108ba8e909ac4c3dbbb360a165104c026c906bb839e604b988c7043","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["imeta","url https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","blurhash edKnC:%MsmofWC~qxukCj[j[.8M{M|jZn%M{M{s:offkIUxut7WBbH","dim 3024x4032"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["r","https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg"]]}] +[14:29:36.030] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What the hell 😲\nI thought you have to hit it, this guy is making sweet love to it","created_at":1759429748,"id":"1ff790594eb8c6174a67a7cb16e2262483fe0773734cc7b88e4bf85ac297924a","kind":1,"pubkey":"9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","sig":"d0b2ef9277d2acc66535d183b455f799971b4a252d55cc3334e17502e303aedcd2889a3f1e65000b118c36832dd361cc4f13a28e77dafb9072fd67d1c57bd6ed","tags":[["alt","A short note: What the hell 😲\nI thought you have to hit it, thi..."],["e","ada7b251bdb65a42bb9aee9d036dd71a1eb18620e5c41c5744397c7285a2bce7","wss://premium.primal.net/","root","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc","wss://aegis.utxo.one/"]]}] +[14:29:36.091] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に線で囲い書いてた","created_at":1759429743,"id":"ee6651f570e07c08dd586694570109f636f57057dcea938e26f155fc005ffe43","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"6e792e286d30bdc8aeb6bb8859850d9f5add0a78fa427446333acc7fba96ad12575ab6e5865793874ea4a33e0f3fbcab3508442d99107c75ee1b01845dcd5289","tags":[]}] +[14:29:36.152] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Join nostr:nprofile1qyxhwumn8ghj7mn0wvhxcmmvqyv8wumn8ghj7urjv4kkjatd9ec8y6tdv9kzumn9wsqzqkcpsw4kc03j906dg8rt8thes432z3yy0d6fj4phylz48xs3g4373hv8n6 and me for episode 131 of nostr:nprofile1qy88wumn8ghj7mn0wvhxcmmv9uq36amnwvaz7tmwdaehgu3wvf5hgcm0d9hx2u3wwdhkx6tpdshsqg9dn4pzq07jfq829ewyceze8gp8wz9whc4s92nqh4a36end4fds35xl9mtm tomorrow, Friday – October 3rd at 5pm ET (UTC -4)\n\nOur guest this week is nostr:nprofile1qyt8wumn8ghj7ct8vaezumn0wd68ytnvv9hxgtcpz9mhxue69uhkummnw3ezumrpdejz7qpqwf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgshcqyxr , creator of nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qpq0r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7s85uvay who joins us to discuss that, web-of-trust, and much much more\n\nSet your blockclocks!\n\nThe show will be streamed live on zap.stream/pcr and will also be available on Nostur, Fountain, and Primal","created_at":1759429738,"id":"38ceb6be096273d173df7d73231bdd980d4bb323eabd3836e81c85b89e93c83e","kind":1,"pubkey":"b83a28b7e4e5d20bd960c5faeb6625f95529166b8bdb045d42634a2f35919450","sig":"c6b0c38d99e1314ecaffb2da6885ac55d266514616a3209d4ec47b4f0573ba7b2bdb3732a2bf1fa8f4b8772f04f7dbf09d61bfe74418a7647260c484086e899d","tags":[["p","5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e","wss://nos.lol","mention"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d","wss://nos.lol/","mention"],["p","726a1e261cc6474674e8285e3951b3bb139be9a773d1acf49dc868db861a1c11","wss://aggr.nostr.land/","mention"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/","mention"],["r","wss://nos.lol/"]]}] +[14:29:36.212] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:36.273] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:29:36.333] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:29:36.394] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:36.454] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:36.515] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:36.575] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:36.636] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:36.696] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:36.757] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:36.818] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:36.878] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:37.851] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:37.851] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:37.851] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:37.851] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:38.003] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg\n\nSo Happy MoMmY ShE GoT It","created_at":1759429776,"id":"135b7b63c0863f010236fab9d4253666b3c71ab2b40aae118f4b5d9ff6e84ab5","kind":1,"pubkey":"553a3cd59c90068eb90b55ae624d3dc7213408939e5b4fa130d1716f482d443d","sig":"25c01bb19168f3a4cab015e15f2300bbadd8a5dd8e043a5c6f588a6fb5d0ad5fcdb7b153f6116b63a772fe14b4d7257c00e80d9918977ddbd7fc983f07e84b1e","tags":[["imeta","url https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg","m image/jpeg","x 732b1df18348e5b8b7c1b35b0e1c6b2581e27927ea876fa2d5bf1c9bb338525d","ox 1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154","blurhash LYE{CD~BkWOYtRbasm%1NZkWr=s-","dim 1920x1440","thumb https://image.nostr.build/thumb/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg"]]}] +[14:29:38.063] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に囲い書き…。縄張りか落書きか、危ない匂いがする。放っとくと広がる。写真撮って記録しろ、触るな。ひとりで行くな、誰かと見に行け。cuidado。困ったら相談しろ、諦めるな。一緒に行けば怖くない、vamos juntos。","created_at":1759429772,"id":"61732bbb0762d2e8f83e535e428f81c0cebfef2a78ba13871cd9c3a417504a5c","kind":1,"pubkey":"bd8eedc9473daa7c8820c942b74476b6f98e6758d3d1028d72b69e95842501be","sig":"3277b7d030e0eb1e8e21035c8e9bf5cf30aeca5b1afef90a71e8eb28353b65178ffb0d7d2b3d0752f7b15c9a9428f2d295304efab0fc22e91280e3a9aa176033","tags":[]}] +[14:29:38.089] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A bit not jealous but also a bit jealous. ","created_at":1759429766,"id":"cbe543b49177da02ee035fe670b09d8bfce786a90aa19a177c4c35f3239036bc","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"2d6f02dd6730195c6372d1ebdb9fdbeb8e6e574028776de5afc036a92e178e788ec66feced55a66fc40c61b8b782735cf3b082185e70e17803899cb018428ce9","tags":[["alt","A short note: A bit not jealous but also a bit jealous. "],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:29:38.150] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Making unusually profitable transactions available to all miners in the goal.","created_at":1759429765,"id":"d4b843a34caedddc3f96c30697231001d47621e1ae05c9e51ff1c1a839d142d1","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"270c2a9fa537699414e293c05a166a2a4e0fc71da502913feb1b74aff2aeadaf4de88e6fbd8728fdc137b661d9ae7af5a42680663154a8022b933ce8cfc017e5","tags":[["e","79b76b0754bf682ae84241163697483a3632200cecd5688b59267b2fb40503f3","wss://nostr.mineracks.com/","root"],["e","94ccf48c0ba6d31361c063d5cb7730f175d0cb21f3147d1928806c18cc551f82","","reply"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","a0cb70d3208f5f7cf66b9cbb582ef1e215ef4ef0c9531863858fb664ddfb0b8f"]]}] +[14:29:38.210] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんで大人たちはガキンチョに垂直の鉄の棒を登らせようと思ったんだろう","created_at":1759429765,"id":"9c4e654e1acf308eef7d8d1a672e9203a265e01e937b06649e93575d60dfb40d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"5d1c7acf689feb24fcde3f3bc28208cc43984a3f3d974c915ff3cb1414c53c92a5b482aa85cdb69c401dff79331f9764f9e2de3832166e71b5d6d18c8d970848","tags":[]}] +[14:29:38.271] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You don’t understand what I’m saying and I don’t understand what your saying \n\nlol \n\nIt’s ok \n\nI was just pointing out that the people running the United States are all part of the pedo community \n\nSomething needs to be done about it \n\nJust don’t know what to do or where to start \n\nConsidering it goes all the way to the top ","created_at":1759429762,"id":"ebd372ef0483738d82d3e650791c9ba2eda0e6cef5d746561d128c1fbe85f30d","kind":1,"pubkey":"baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b","sig":"2f035e864233da5a5a0b9ae6cd95dd13116960f6a7779beba17fad91654cae9ea223bacc58950cd5006e9ef16557f83525ffec5d594e75e21228030b66b2c35f","tags":[["e","6974827a2020ae84c95cde2d438fc3dca890d3ff581a0fd5055f5093cfb8859a","","root"],["e","e0cf10fa74c820705f3047783a6bb899c4ff5a628feaecd822598e4d3b3c52c8","","reply"],["p","baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b"],["p","b3d2e258109780aff68b5cf0c2f262497fd7137bc9f9fe546ec6d3bfc126a9f3"],["p","a87b402ac081c8849b9d5bd4e39f2287f25709d3e3f79e784af1e8b38fefbdf1"],["p","855746f626a255a687f148fbfe8a1e97c4e2d08f62c2149c599097e138a377a8"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:29:38.331] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Unfollow the people posting it. Follow those who post what you want to see.","created_at":1759429758,"id":"b2b62eaca4c5d245b00f3d360275d1288963fae5fa96fcc50a4a94e3a30310ac","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"1e6ece6b0ac0a93dbe79028f40a7c6defc366d513e988ecb2d4864bec32717b291e40fb8aceb94d097913d7d17b20a9196124227a3b4ea8a18ba9dacb443c290","tags":[["alt","A short note: Unfollow the people posting it. Follow those who p..."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.primal.net/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:29:38.392] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I’m more of a Casio guy myself. \n\nWhere’s my Casio fam at?\n\nhttps://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","created_at":1759429752,"id":"674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"3d03211cca1f087b4f704d33a3899df99efa948132faa46607f9c9084b8fc3895f188379e108ba8e909ac4c3dbbb360a165104c026c906bb839e604b988c7043","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["imeta","url https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","blurhash edKnC:%MsmofWC~qxukCj[j[.8M{M|jZn%M{M{s:offkIUxut7WBbH","dim 3024x4032"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["r","https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg"]]}] +[14:29:38.453] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What the hell 😲\nI thought you have to hit it, this guy is making sweet love to it","created_at":1759429748,"id":"1ff790594eb8c6174a67a7cb16e2262483fe0773734cc7b88e4bf85ac297924a","kind":1,"pubkey":"9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","sig":"d0b2ef9277d2acc66535d183b455f799971b4a252d55cc3334e17502e303aedcd2889a3f1e65000b118c36832dd361cc4f13a28e77dafb9072fd67d1c57bd6ed","tags":[["alt","A short note: What the hell 😲\nI thought you have to hit it, thi..."],["e","ada7b251bdb65a42bb9aee9d036dd71a1eb18620e5c41c5744397c7285a2bce7","wss://premium.primal.net/","root","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc","wss://aegis.utxo.one/"]]}] +[14:29:38.513] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に線で囲い書いてた","created_at":1759429743,"id":"ee6651f570e07c08dd586694570109f636f57057dcea938e26f155fc005ffe43","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"6e792e286d30bdc8aeb6bb8859850d9f5add0a78fa427446333acc7fba96ad12575ab6e5865793874ea4a33e0f3fbcab3508442d99107c75ee1b01845dcd5289","tags":[]}] +[14:29:38.574] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:38.634] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:29:38.695] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:29:38.755] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:38.816] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:38.876] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:38.937] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:38.997] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:39.058] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:39.118] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:39.179] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:39.240] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:40.215] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:40.215] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:40.215] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:40.215] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:40.366] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4\n\n🤣🤣 Who can watch cute kitty vids all day with shit like this available??\n\n#walkaway #antifaisfascist","created_at":1759429777,"id":"65e3f30e993ab0cf9f03173dcb7198326bf2e07c1ee00608d3d617ba0140979f","kind":1,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"f8d21348da0b01e21008d69c296c44f202dd39b3cc2db09ac1d7c80f4f001d17918f9fedd4931b08bb72ad0646ebd52ea4fb0779c5e58839d5bb56fce4955522","tags":[["alt","A short note: https://video.nostr.build/4e3b7f38fd88b262e5951701..."],["t","walkaway"],["t","antifaisfascist"],["r","https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4"],["imeta","url https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4","x 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","size 3839161","m video/mp4","dim 720x720","blurhash UTEyPjs:ogM{RMt7oLR*_NWVofWBR#bIofRj","ox 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","alt "]]}] +[14:29:40.427] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg\n\nSo Happy MoMmY ShE GoT It","created_at":1759429776,"id":"135b7b63c0863f010236fab9d4253666b3c71ab2b40aae118f4b5d9ff6e84ab5","kind":1,"pubkey":"553a3cd59c90068eb90b55ae624d3dc7213408939e5b4fa130d1716f482d443d","sig":"25c01bb19168f3a4cab015e15f2300bbadd8a5dd8e043a5c6f588a6fb5d0ad5fcdb7b153f6116b63a772fe14b4d7257c00e80d9918977ddbd7fc983f07e84b1e","tags":[["imeta","url https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg","m image/jpeg","x 732b1df18348e5b8b7c1b35b0e1c6b2581e27927ea876fa2d5bf1c9bb338525d","ox 1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154","blurhash LYE{CD~BkWOYtRbasm%1NZkWr=s-","dim 1920x1440","thumb https://image.nostr.build/thumb/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg"]]}] +[14:29:40.488] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に囲い書き…。縄張りか落書きか、危ない匂いがする。放っとくと広がる。写真撮って記録しろ、触るな。ひとりで行くな、誰かと見に行け。cuidado。困ったら相談しろ、諦めるな。一緒に行けば怖くない、vamos juntos。","created_at":1759429772,"id":"61732bbb0762d2e8f83e535e428f81c0cebfef2a78ba13871cd9c3a417504a5c","kind":1,"pubkey":"bd8eedc9473daa7c8820c942b74476b6f98e6758d3d1028d72b69e95842501be","sig":"3277b7d030e0eb1e8e21035c8e9bf5cf30aeca5b1afef90a71e8eb28353b65178ffb0d7d2b3d0752f7b15c9a9428f2d295304efab0fc22e91280e3a9aa176033","tags":[]}] +[14:29:40.548] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A bit not jealous but also a bit jealous. ","created_at":1759429766,"id":"cbe543b49177da02ee035fe670b09d8bfce786a90aa19a177c4c35f3239036bc","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"2d6f02dd6730195c6372d1ebdb9fdbeb8e6e574028776de5afc036a92e178e788ec66feced55a66fc40c61b8b782735cf3b082185e70e17803899cb018428ce9","tags":[["alt","A short note: A bit not jealous but also a bit jealous. "],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:29:40.609] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Making unusually profitable transactions available to all miners in the goal.","created_at":1759429765,"id":"d4b843a34caedddc3f96c30697231001d47621e1ae05c9e51ff1c1a839d142d1","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"270c2a9fa537699414e293c05a166a2a4e0fc71da502913feb1b74aff2aeadaf4de88e6fbd8728fdc137b661d9ae7af5a42680663154a8022b933ce8cfc017e5","tags":[["e","79b76b0754bf682ae84241163697483a3632200cecd5688b59267b2fb40503f3","wss://nostr.mineracks.com/","root"],["e","94ccf48c0ba6d31361c063d5cb7730f175d0cb21f3147d1928806c18cc551f82","","reply"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","a0cb70d3208f5f7cf66b9cbb582ef1e215ef4ef0c9531863858fb664ddfb0b8f"]]}] +[14:29:40.669] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんで大人たちはガキンチョに垂直の鉄の棒を登らせようと思ったんだろう","created_at":1759429765,"id":"9c4e654e1acf308eef7d8d1a672e9203a265e01e937b06649e93575d60dfb40d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"5d1c7acf689feb24fcde3f3bc28208cc43984a3f3d974c915ff3cb1414c53c92a5b482aa85cdb69c401dff79331f9764f9e2de3832166e71b5d6d18c8d970848","tags":[]}] +[14:29:40.730] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You don’t understand what I’m saying and I don’t understand what your saying \n\nlol \n\nIt’s ok \n\nI was just pointing out that the people running the United States are all part of the pedo community \n\nSomething needs to be done about it \n\nJust don’t know what to do or where to start \n\nConsidering it goes all the way to the top ","created_at":1759429762,"id":"ebd372ef0483738d82d3e650791c9ba2eda0e6cef5d746561d128c1fbe85f30d","kind":1,"pubkey":"baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b","sig":"2f035e864233da5a5a0b9ae6cd95dd13116960f6a7779beba17fad91654cae9ea223bacc58950cd5006e9ef16557f83525ffec5d594e75e21228030b66b2c35f","tags":[["e","6974827a2020ae84c95cde2d438fc3dca890d3ff581a0fd5055f5093cfb8859a","","root"],["e","e0cf10fa74c820705f3047783a6bb899c4ff5a628feaecd822598e4d3b3c52c8","","reply"],["p","baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b"],["p","b3d2e258109780aff68b5cf0c2f262497fd7137bc9f9fe546ec6d3bfc126a9f3"],["p","a87b402ac081c8849b9d5bd4e39f2287f25709d3e3f79e784af1e8b38fefbdf1"],["p","855746f626a255a687f148fbfe8a1e97c4e2d08f62c2149c599097e138a377a8"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:29:40.791] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Unfollow the people posting it. Follow those who post what you want to see.","created_at":1759429758,"id":"b2b62eaca4c5d245b00f3d360275d1288963fae5fa96fcc50a4a94e3a30310ac","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"1e6ece6b0ac0a93dbe79028f40a7c6defc366d513e988ecb2d4864bec32717b291e40fb8aceb94d097913d7d17b20a9196124227a3b4ea8a18ba9dacb443c290","tags":[["alt","A short note: Unfollow the people posting it. Follow those who p..."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.primal.net/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:29:40.851] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I’m more of a Casio guy myself. \n\nWhere’s my Casio fam at?\n\nhttps://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","created_at":1759429752,"id":"674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"3d03211cca1f087b4f704d33a3899df99efa948132faa46607f9c9084b8fc3895f188379e108ba8e909ac4c3dbbb360a165104c026c906bb839e604b988c7043","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["imeta","url https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","blurhash edKnC:%MsmofWC~qxukCj[j[.8M{M|jZn%M{M{s:offkIUxut7WBbH","dim 3024x4032"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["r","https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg"]]}] +[14:29:40.912] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What the hell 😲\nI thought you have to hit it, this guy is making sweet love to it","created_at":1759429748,"id":"1ff790594eb8c6174a67a7cb16e2262483fe0773734cc7b88e4bf85ac297924a","kind":1,"pubkey":"9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","sig":"d0b2ef9277d2acc66535d183b455f799971b4a252d55cc3334e17502e303aedcd2889a3f1e65000b118c36832dd361cc4f13a28e77dafb9072fd67d1c57bd6ed","tags":[["alt","A short note: What the hell 😲\nI thought you have to hit it, thi..."],["e","ada7b251bdb65a42bb9aee9d036dd71a1eb18620e5c41c5744397c7285a2bce7","wss://premium.primal.net/","root","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc","wss://aegis.utxo.one/"]]}] +[14:29:40.973] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:41.033] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:29:41.094] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:29:41.154] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:41.215] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:41.276] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:41.336] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:41.397] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:41.457] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:41.518] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:41.579] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:41.639] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:42.610] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:42.610] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:42.610] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:42.610] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:42.761] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’s so sick. Worth the investment!","created_at":1759429782,"id":"50be2e81eb1b4073f47aadb211e4d20add5488b2d3c8e10f565f174f245d4f5d","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"05cc1396357a7b9f9639f36e814922ebeba52e4900f9f612a8c7b5223e37c0674f172f9970cb1f3e92b4b67e8503f219e1c489f449e70145ddbccf7862213c12","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["e","8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","","reply"],["p","de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a"]]}] +[14:29:42.822] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No idea, but it's very lite","created_at":1759429782,"id":"d0a0c96d4a356148c47b5782ad324bd8bd2f384ebc160f432534cc00c768ddeb","kind":1,"pubkey":"a87c9bfc4570fe15afdda6c0095ade2d74fb14e3294bff37a965522983bda6a8","sig":"4dd44a0c329b5473a2803901c43f5f66bfb05684ebb6dc70488c10b876637ce4c88d4b548eab3f882efe36fc5d8c20cd777b349c6d1f5ad3a8b0ed134b87bbe7","tags":[["p","465eb13404d7219cd91c2b4a8a7e308ad4e09bc1298dc08c5eec852e9bf5da09"],["e","792de9f644bf8d7eacf7fe37b41d730c7632204311da558a4d10c380e8ffb1a1","","reply"]]}] +[14:29:42.883] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4\n\n🤣🤣 Who can watch cute kitty vids all day with shit like this available??\n\n#walkaway #antifaisfascist","created_at":1759429777,"id":"65e3f30e993ab0cf9f03173dcb7198326bf2e07c1ee00608d3d617ba0140979f","kind":1,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"f8d21348da0b01e21008d69c296c44f202dd39b3cc2db09ac1d7c80f4f001d17918f9fedd4931b08bb72ad0646ebd52ea4fb0779c5e58839d5bb56fce4955522","tags":[["alt","A short note: https://video.nostr.build/4e3b7f38fd88b262e5951701..."],["t","walkaway"],["t","antifaisfascist"],["r","https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4"],["imeta","url https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4","x 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","size 3839161","m video/mp4","dim 720x720","blurhash UTEyPjs:ogM{RMt7oLR*_NWVofWBR#bIofRj","ox 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","alt "]]}] +[14:29:42.943] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg\n\nSo Happy MoMmY ShE GoT It","created_at":1759429776,"id":"135b7b63c0863f010236fab9d4253666b3c71ab2b40aae118f4b5d9ff6e84ab5","kind":1,"pubkey":"553a3cd59c90068eb90b55ae624d3dc7213408939e5b4fa130d1716f482d443d","sig":"25c01bb19168f3a4cab015e15f2300bbadd8a5dd8e043a5c6f588a6fb5d0ad5fcdb7b153f6116b63a772fe14b4d7257c00e80d9918977ddbd7fc983f07e84b1e","tags":[["imeta","url https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg","m image/jpeg","x 732b1df18348e5b8b7c1b35b0e1c6b2581e27927ea876fa2d5bf1c9bb338525d","ox 1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154","blurhash LYE{CD~BkWOYtRbasm%1NZkWr=s-","dim 1920x1440","thumb https://image.nostr.build/thumb/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg"]]}] +[14:29:43.004] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に囲い書き…。縄張りか落書きか、危ない匂いがする。放っとくと広がる。写真撮って記録しろ、触るな。ひとりで行くな、誰かと見に行け。cuidado。困ったら相談しろ、諦めるな。一緒に行けば怖くない、vamos juntos。","created_at":1759429772,"id":"61732bbb0762d2e8f83e535e428f81c0cebfef2a78ba13871cd9c3a417504a5c","kind":1,"pubkey":"bd8eedc9473daa7c8820c942b74476b6f98e6758d3d1028d72b69e95842501be","sig":"3277b7d030e0eb1e8e21035c8e9bf5cf30aeca5b1afef90a71e8eb28353b65178ffb0d7d2b3d0752f7b15c9a9428f2d295304efab0fc22e91280e3a9aa176033","tags":[]}] +[14:29:43.064] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A bit not jealous but also a bit jealous. ","created_at":1759429766,"id":"cbe543b49177da02ee035fe670b09d8bfce786a90aa19a177c4c35f3239036bc","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"2d6f02dd6730195c6372d1ebdb9fdbeb8e6e574028776de5afc036a92e178e788ec66feced55a66fc40c61b8b782735cf3b082185e70e17803899cb018428ce9","tags":[["alt","A short note: A bit not jealous but also a bit jealous. "],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:29:43.090] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Making unusually profitable transactions available to all miners in the goal.","created_at":1759429765,"id":"d4b843a34caedddc3f96c30697231001d47621e1ae05c9e51ff1c1a839d142d1","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"270c2a9fa537699414e293c05a166a2a4e0fc71da502913feb1b74aff2aeadaf4de88e6fbd8728fdc137b661d9ae7af5a42680663154a8022b933ce8cfc017e5","tags":[["e","79b76b0754bf682ae84241163697483a3632200cecd5688b59267b2fb40503f3","wss://nostr.mineracks.com/","root"],["e","94ccf48c0ba6d31361c063d5cb7730f175d0cb21f3147d1928806c18cc551f82","","reply"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","a0cb70d3208f5f7cf66b9cbb582ef1e215ef4ef0c9531863858fb664ddfb0b8f"]]}] +[14:29:43.150] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんで大人たちはガキンチョに垂直の鉄の棒を登らせようと思ったんだろう","created_at":1759429765,"id":"9c4e654e1acf308eef7d8d1a672e9203a265e01e937b06649e93575d60dfb40d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"5d1c7acf689feb24fcde3f3bc28208cc43984a3f3d974c915ff3cb1414c53c92a5b482aa85cdb69c401dff79331f9764f9e2de3832166e71b5d6d18c8d970848","tags":[]}] +[14:29:43.211] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You don’t understand what I’m saying and I don’t understand what your saying \n\nlol \n\nIt’s ok \n\nI was just pointing out that the people running the United States are all part of the pedo community \n\nSomething needs to be done about it \n\nJust don’t know what to do or where to start \n\nConsidering it goes all the way to the top ","created_at":1759429762,"id":"ebd372ef0483738d82d3e650791c9ba2eda0e6cef5d746561d128c1fbe85f30d","kind":1,"pubkey":"baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b","sig":"2f035e864233da5a5a0b9ae6cd95dd13116960f6a7779beba17fad91654cae9ea223bacc58950cd5006e9ef16557f83525ffec5d594e75e21228030b66b2c35f","tags":[["e","6974827a2020ae84c95cde2d438fc3dca890d3ff581a0fd5055f5093cfb8859a","","root"],["e","e0cf10fa74c820705f3047783a6bb899c4ff5a628feaecd822598e4d3b3c52c8","","reply"],["p","baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b"],["p","b3d2e258109780aff68b5cf0c2f262497fd7137bc9f9fe546ec6d3bfc126a9f3"],["p","a87b402ac081c8849b9d5bd4e39f2287f25709d3e3f79e784af1e8b38fefbdf1"],["p","855746f626a255a687f148fbfe8a1e97c4e2d08f62c2149c599097e138a377a8"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:29:43.271] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Unfollow the people posting it. Follow those who post what you want to see.","created_at":1759429758,"id":"b2b62eaca4c5d245b00f3d360275d1288963fae5fa96fcc50a4a94e3a30310ac","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"1e6ece6b0ac0a93dbe79028f40a7c6defc366d513e988ecb2d4864bec32717b291e40fb8aceb94d097913d7d17b20a9196124227a3b4ea8a18ba9dacb443c290","tags":[["alt","A short note: Unfollow the people posting it. Follow those who p..."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.primal.net/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:29:43.332] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:43.392] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:29:43.453] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:29:43.513] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:43.574] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:43.635] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:43.695] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:43.756] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:43.816] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:43.877] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:43.937] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:43.998] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:45.275] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:45.276] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:45.276] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:45.276] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:45.497] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’s so sick. Worth the investment!","created_at":1759429782,"id":"50be2e81eb1b4073f47aadb211e4d20add5488b2d3c8e10f565f174f245d4f5d","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"05cc1396357a7b9f9639f36e814922ebeba52e4900f9f612a8c7b5223e37c0674f172f9970cb1f3e92b4b67e8503f219e1c489f449e70145ddbccf7862213c12","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["e","8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","","reply"],["p","de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a"]]}] +[14:29:45.558] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No idea, but it's very lite","created_at":1759429782,"id":"d0a0c96d4a356148c47b5782ad324bd8bd2f384ebc160f432534cc00c768ddeb","kind":1,"pubkey":"a87c9bfc4570fe15afdda6c0095ade2d74fb14e3294bff37a965522983bda6a8","sig":"4dd44a0c329b5473a2803901c43f5f66bfb05684ebb6dc70488c10b876637ce4c88d4b548eab3f882efe36fc5d8c20cd777b349c6d1f5ad3a8b0ed134b87bbe7","tags":[["p","465eb13404d7219cd91c2b4a8a7e308ad4e09bc1298dc08c5eec852e9bf5da09"],["e","792de9f644bf8d7eacf7fe37b41d730c7632204311da558a4d10c380e8ffb1a1","","reply"]]}] +[14:29:45.618] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4\n\n🤣🤣 Who can watch cute kitty vids all day with shit like this available??\n\n#walkaway #antifaisfascist","created_at":1759429777,"id":"65e3f30e993ab0cf9f03173dcb7198326bf2e07c1ee00608d3d617ba0140979f","kind":1,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"f8d21348da0b01e21008d69c296c44f202dd39b3cc2db09ac1d7c80f4f001d17918f9fedd4931b08bb72ad0646ebd52ea4fb0779c5e58839d5bb56fce4955522","tags":[["alt","A short note: https://video.nostr.build/4e3b7f38fd88b262e5951701..."],["t","walkaway"],["t","antifaisfascist"],["r","https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4"],["imeta","url https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4","x 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","size 3839161","m video/mp4","dim 720x720","blurhash UTEyPjs:ogM{RMt7oLR*_NWVofWBR#bIofRj","ox 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","alt "]]}] +[14:29:45.679] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg\n\nSo Happy MoMmY ShE GoT It","created_at":1759429776,"id":"135b7b63c0863f010236fab9d4253666b3c71ab2b40aae118f4b5d9ff6e84ab5","kind":1,"pubkey":"553a3cd59c90068eb90b55ae624d3dc7213408939e5b4fa130d1716f482d443d","sig":"25c01bb19168f3a4cab015e15f2300bbadd8a5dd8e043a5c6f588a6fb5d0ad5fcdb7b153f6116b63a772fe14b4d7257c00e80d9918977ddbd7fc983f07e84b1e","tags":[["imeta","url https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg","m image/jpeg","x 732b1df18348e5b8b7c1b35b0e1c6b2581e27927ea876fa2d5bf1c9bb338525d","ox 1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154","blurhash LYE{CD~BkWOYtRbasm%1NZkWr=s-","dim 1920x1440","thumb https://image.nostr.build/thumb/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg"]]}] +[14:29:45.740] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に囲い書き…。縄張りか落書きか、危ない匂いがする。放っとくと広がる。写真撮って記録しろ、触るな。ひとりで行くな、誰かと見に行け。cuidado。困ったら相談しろ、諦めるな。一緒に行けば怖くない、vamos juntos。","created_at":1759429772,"id":"61732bbb0762d2e8f83e535e428f81c0cebfef2a78ba13871cd9c3a417504a5c","kind":1,"pubkey":"bd8eedc9473daa7c8820c942b74476b6f98e6758d3d1028d72b69e95842501be","sig":"3277b7d030e0eb1e8e21035c8e9bf5cf30aeca5b1afef90a71e8eb28353b65178ffb0d7d2b3d0752f7b15c9a9428f2d295304efab0fc22e91280e3a9aa176033","tags":[]}] +[14:29:45.800] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A bit not jealous but also a bit jealous. ","created_at":1759429766,"id":"cbe543b49177da02ee035fe670b09d8bfce786a90aa19a177c4c35f3239036bc","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"2d6f02dd6730195c6372d1ebdb9fdbeb8e6e574028776de5afc036a92e178e788ec66feced55a66fc40c61b8b782735cf3b082185e70e17803899cb018428ce9","tags":[["alt","A short note: A bit not jealous but also a bit jealous. "],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:29:45.860] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Making unusually profitable transactions available to all miners in the goal.","created_at":1759429765,"id":"d4b843a34caedddc3f96c30697231001d47621e1ae05c9e51ff1c1a839d142d1","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"270c2a9fa537699414e293c05a166a2a4e0fc71da502913feb1b74aff2aeadaf4de88e6fbd8728fdc137b661d9ae7af5a42680663154a8022b933ce8cfc017e5","tags":[["e","79b76b0754bf682ae84241163697483a3632200cecd5688b59267b2fb40503f3","wss://nostr.mineracks.com/","root"],["e","94ccf48c0ba6d31361c063d5cb7730f175d0cb21f3147d1928806c18cc551f82","","reply"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","a0cb70d3208f5f7cf66b9cbb582ef1e215ef4ef0c9531863858fb664ddfb0b8f"]]}] +[14:29:45.921] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんで大人たちはガキンチョに垂直の鉄の棒を登らせようと思ったんだろう","created_at":1759429765,"id":"9c4e654e1acf308eef7d8d1a672e9203a265e01e937b06649e93575d60dfb40d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"5d1c7acf689feb24fcde3f3bc28208cc43984a3f3d974c915ff3cb1414c53c92a5b482aa85cdb69c401dff79331f9764f9e2de3832166e71b5d6d18c8d970848","tags":[]}] +[14:29:45.981] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You don’t understand what I’m saying and I don’t understand what your saying \n\nlol \n\nIt’s ok \n\nI was just pointing out that the people running the United States are all part of the pedo community \n\nSomething needs to be done about it \n\nJust don’t know what to do or where to start \n\nConsidering it goes all the way to the top ","created_at":1759429762,"id":"ebd372ef0483738d82d3e650791c9ba2eda0e6cef5d746561d128c1fbe85f30d","kind":1,"pubkey":"baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b","sig":"2f035e864233da5a5a0b9ae6cd95dd13116960f6a7779beba17fad91654cae9ea223bacc58950cd5006e9ef16557f83525ffec5d594e75e21228030b66b2c35f","tags":[["e","6974827a2020ae84c95cde2d438fc3dca890d3ff581a0fd5055f5093cfb8859a","","root"],["e","e0cf10fa74c820705f3047783a6bb899c4ff5a628feaecd822598e4d3b3c52c8","","reply"],["p","baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b"],["p","b3d2e258109780aff68b5cf0c2f262497fd7137bc9f9fe546ec6d3bfc126a9f3"],["p","a87b402ac081c8849b9d5bd4e39f2287f25709d3e3f79e784af1e8b38fefbdf1"],["p","855746f626a255a687f148fbfe8a1e97c4e2d08f62c2149c599097e138a377a8"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:29:46.042] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Unfollow the people posting it. Follow those who post what you want to see.","created_at":1759429758,"id":"b2b62eaca4c5d245b00f3d360275d1288963fae5fa96fcc50a4a94e3a30310ac","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"1e6ece6b0ac0a93dbe79028f40a7c6defc366d513e988ecb2d4864bec32717b291e40fb8aceb94d097913d7d17b20a9196124227a3b4ea8a18ba9dacb443c290","tags":[["alt","A short note: Unfollow the people posting it. Follow those who p..."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.primal.net/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:29:46.103] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:46.163] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:29:46.224] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:29:46.284] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:46.345] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:46.406] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:46.466] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:46.527] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:46.587] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:46.648] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:46.708] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:46.769] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:48.046] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:48.046] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:48.047] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:48.047] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:48.198] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BAD BITCHES \nhttps://images2.imgbox.com/2e/f8/4jAqkYx5_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429786,"id":"8f145c80d1b6c0a69910617ff561f5ce65268b8939031fa175edb9b800b1cad4","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"d4736f44e4f5ca906496c36dbc50fddbf30e6fa3bc9d53d8b99dcfcb1fa380ac9cf141b29762bb7cd1ba1942b195a5b2c442369189a00aba192f272c9f73d57e","tags":[]}] +[14:29:48.208] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"類人猿時代を思い出させたかったんじゃない","created_at":1759429786,"id":"fc338f08c71ae085a28493f31cd00d798bc403a52c350226b6c68e48de6d47cf","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"129699ebff83cdbac9ed27726398b34391eb3dbe77d5982bbe114c2d35d86203e0eb8adb51b82a4f4101e70248638c23a6bf3d3ce7be71430c685333676324e0","tags":[]}] +[14:29:48.269] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’s so sick. Worth the investment!","created_at":1759429782,"id":"50be2e81eb1b4073f47aadb211e4d20add5488b2d3c8e10f565f174f245d4f5d","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"05cc1396357a7b9f9639f36e814922ebeba52e4900f9f612a8c7b5223e37c0674f172f9970cb1f3e92b4b67e8503f219e1c489f449e70145ddbccf7862213c12","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["e","8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","","reply"],["p","de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a"]]}] +[14:29:48.330] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No idea, but it's very lite","created_at":1759429782,"id":"d0a0c96d4a356148c47b5782ad324bd8bd2f384ebc160f432534cc00c768ddeb","kind":1,"pubkey":"a87c9bfc4570fe15afdda6c0095ade2d74fb14e3294bff37a965522983bda6a8","sig":"4dd44a0c329b5473a2803901c43f5f66bfb05684ebb6dc70488c10b876637ce4c88d4b548eab3f882efe36fc5d8c20cd777b349c6d1f5ad3a8b0ed134b87bbe7","tags":[["p","465eb13404d7219cd91c2b4a8a7e308ad4e09bc1298dc08c5eec852e9bf5da09"],["e","792de9f644bf8d7eacf7fe37b41d730c7632204311da558a4d10c380e8ffb1a1","","reply"]]}] +[14:29:48.390] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4\n\n🤣🤣 Who can watch cute kitty vids all day with shit like this available??\n\n#walkaway #antifaisfascist","created_at":1759429777,"id":"65e3f30e993ab0cf9f03173dcb7198326bf2e07c1ee00608d3d617ba0140979f","kind":1,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"f8d21348da0b01e21008d69c296c44f202dd39b3cc2db09ac1d7c80f4f001d17918f9fedd4931b08bb72ad0646ebd52ea4fb0779c5e58839d5bb56fce4955522","tags":[["alt","A short note: https://video.nostr.build/4e3b7f38fd88b262e5951701..."],["t","walkaway"],["t","antifaisfascist"],["r","https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4"],["imeta","url https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4","x 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","size 3839161","m video/mp4","dim 720x720","blurhash UTEyPjs:ogM{RMt7oLR*_NWVofWBR#bIofRj","ox 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","alt "]]}] +[14:29:48.451] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg\n\nSo Happy MoMmY ShE GoT It","created_at":1759429776,"id":"135b7b63c0863f010236fab9d4253666b3c71ab2b40aae118f4b5d9ff6e84ab5","kind":1,"pubkey":"553a3cd59c90068eb90b55ae624d3dc7213408939e5b4fa130d1716f482d443d","sig":"25c01bb19168f3a4cab015e15f2300bbadd8a5dd8e043a5c6f588a6fb5d0ad5fcdb7b153f6116b63a772fe14b4d7257c00e80d9918977ddbd7fc983f07e84b1e","tags":[["imeta","url https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg","m image/jpeg","x 732b1df18348e5b8b7c1b35b0e1c6b2581e27927ea876fa2d5bf1c9bb338525d","ox 1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154","blurhash LYE{CD~BkWOYtRbasm%1NZkWr=s-","dim 1920x1440","thumb https://image.nostr.build/thumb/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg"]]}] +[14:29:48.511] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に囲い書き…。縄張りか落書きか、危ない匂いがする。放っとくと広がる。写真撮って記録しろ、触るな。ひとりで行くな、誰かと見に行け。cuidado。困ったら相談しろ、諦めるな。一緒に行けば怖くない、vamos juntos。","created_at":1759429772,"id":"61732bbb0762d2e8f83e535e428f81c0cebfef2a78ba13871cd9c3a417504a5c","kind":1,"pubkey":"bd8eedc9473daa7c8820c942b74476b6f98e6758d3d1028d72b69e95842501be","sig":"3277b7d030e0eb1e8e21035c8e9bf5cf30aeca5b1afef90a71e8eb28353b65178ffb0d7d2b3d0752f7b15c9a9428f2d295304efab0fc22e91280e3a9aa176033","tags":[]}] +[14:29:48.572] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A bit not jealous but also a bit jealous. ","created_at":1759429766,"id":"cbe543b49177da02ee035fe670b09d8bfce786a90aa19a177c4c35f3239036bc","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"2d6f02dd6730195c6372d1ebdb9fdbeb8e6e574028776de5afc036a92e178e788ec66feced55a66fc40c61b8b782735cf3b082185e70e17803899cb018428ce9","tags":[["alt","A short note: A bit not jealous but also a bit jealous. "],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:29:48.633] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Making unusually profitable transactions available to all miners in the goal.","created_at":1759429765,"id":"d4b843a34caedddc3f96c30697231001d47621e1ae05c9e51ff1c1a839d142d1","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"270c2a9fa537699414e293c05a166a2a4e0fc71da502913feb1b74aff2aeadaf4de88e6fbd8728fdc137b661d9ae7af5a42680663154a8022b933ce8cfc017e5","tags":[["e","79b76b0754bf682ae84241163697483a3632200cecd5688b59267b2fb40503f3","wss://nostr.mineracks.com/","root"],["e","94ccf48c0ba6d31361c063d5cb7730f175d0cb21f3147d1928806c18cc551f82","","reply"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","a0cb70d3208f5f7cf66b9cbb582ef1e215ef4ef0c9531863858fb664ddfb0b8f"]]}] +[14:29:48.694] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんで大人たちはガキンチョに垂直の鉄の棒を登らせようと思ったんだろう","created_at":1759429765,"id":"9c4e654e1acf308eef7d8d1a672e9203a265e01e937b06649e93575d60dfb40d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"5d1c7acf689feb24fcde3f3bc28208cc43984a3f3d974c915ff3cb1414c53c92a5b482aa85cdb69c401dff79331f9764f9e2de3832166e71b5d6d18c8d970848","tags":[]}] +[14:29:48.754] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:48.814] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:29:48.875] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:29:48.935] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:48.996] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:49.056] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:49.117] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:49.177] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:49.238] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:49.298] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:49.359] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:49.420] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:49.903] RECV nos.lol:443: ecca9ed93d1394","kind":3,"pubkey":"e096a89eeb9082089 +[14:29:50.757] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:50.757] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:50.757] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:50.757] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:50.978] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BAD BITCHES \nhttps://images2.imgbox.com/2e/f8/4jAqkYx5_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429786,"id":"8f145c80d1b6c0a69910617ff561f5ce65268b8939031fa175edb9b800b1cad4","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"d4736f44e4f5ca906496c36dbc50fddbf30e6fa3bc9d53d8b99dcfcb1fa380ac9cf141b29762bb7cd1ba1942b195a5b2c442369189a00aba192f272c9f73d57e","tags":[]}] +[14:29:51.038] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"類人猿時代を思い出させたかったんじゃない","created_at":1759429786,"id":"fc338f08c71ae085a28493f31cd00d798bc403a52c350226b6c68e48de6d47cf","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"129699ebff83cdbac9ed27726398b34391eb3dbe77d5982bbe114c2d35d86203e0eb8adb51b82a4f4101e70248638c23a6bf3d3ce7be71430c685333676324e0","tags":[]}] +[14:29:51.099] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’s so sick. Worth the investment!","created_at":1759429782,"id":"50be2e81eb1b4073f47aadb211e4d20add5488b2d3c8e10f565f174f245d4f5d","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"05cc1396357a7b9f9639f36e814922ebeba52e4900f9f612a8c7b5223e37c0674f172f9970cb1f3e92b4b67e8503f219e1c489f449e70145ddbccf7862213c12","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["e","8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","","reply"],["p","de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a"]]}] +[14:29:51.159] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No idea, but it's very lite","created_at":1759429782,"id":"d0a0c96d4a356148c47b5782ad324bd8bd2f384ebc160f432534cc00c768ddeb","kind":1,"pubkey":"a87c9bfc4570fe15afdda6c0095ade2d74fb14e3294bff37a965522983bda6a8","sig":"4dd44a0c329b5473a2803901c43f5f66bfb05684ebb6dc70488c10b876637ce4c88d4b548eab3f882efe36fc5d8c20cd777b349c6d1f5ad3a8b0ed134b87bbe7","tags":[["p","465eb13404d7219cd91c2b4a8a7e308ad4e09bc1298dc08c5eec852e9bf5da09"],["e","792de9f644bf8d7eacf7fe37b41d730c7632204311da558a4d10c380e8ffb1a1","","reply"]]}] +[14:29:51.220] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4\n\n🤣🤣 Who can watch cute kitty vids all day with shit like this available??\n\n#walkaway #antifaisfascist","created_at":1759429777,"id":"65e3f30e993ab0cf9f03173dcb7198326bf2e07c1ee00608d3d617ba0140979f","kind":1,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"f8d21348da0b01e21008d69c296c44f202dd39b3cc2db09ac1d7c80f4f001d17918f9fedd4931b08bb72ad0646ebd52ea4fb0779c5e58839d5bb56fce4955522","tags":[["alt","A short note: https://video.nostr.build/4e3b7f38fd88b262e5951701..."],["t","walkaway"],["t","antifaisfascist"],["r","https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4"],["imeta","url https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4","x 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","size 3839161","m video/mp4","dim 720x720","blurhash UTEyPjs:ogM{RMt7oLR*_NWVofWBR#bIofRj","ox 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","alt "]]}] +[14:29:51.280] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg\n\nSo Happy MoMmY ShE GoT It","created_at":1759429776,"id":"135b7b63c0863f010236fab9d4253666b3c71ab2b40aae118f4b5d9ff6e84ab5","kind":1,"pubkey":"553a3cd59c90068eb90b55ae624d3dc7213408939e5b4fa130d1716f482d443d","sig":"25c01bb19168f3a4cab015e15f2300bbadd8a5dd8e043a5c6f588a6fb5d0ad5fcdb7b153f6116b63a772fe14b4d7257c00e80d9918977ddbd7fc983f07e84b1e","tags":[["imeta","url https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg","m image/jpeg","x 732b1df18348e5b8b7c1b35b0e1c6b2581e27927ea876fa2d5bf1c9bb338525d","ox 1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154","blurhash LYE{CD~BkWOYtRbasm%1NZkWr=s-","dim 1920x1440","thumb https://image.nostr.build/thumb/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg"]]}] +[14:29:51.341] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に囲い書き…。縄張りか落書きか、危ない匂いがする。放っとくと広がる。写真撮って記録しろ、触るな。ひとりで行くな、誰かと見に行け。cuidado。困ったら相談しろ、諦めるな。一緒に行けば怖くない、vamos juntos。","created_at":1759429772,"id":"61732bbb0762d2e8f83e535e428f81c0cebfef2a78ba13871cd9c3a417504a5c","kind":1,"pubkey":"bd8eedc9473daa7c8820c942b74476b6f98e6758d3d1028d72b69e95842501be","sig":"3277b7d030e0eb1e8e21035c8e9bf5cf30aeca5b1afef90a71e8eb28353b65178ffb0d7d2b3d0752f7b15c9a9428f2d295304efab0fc22e91280e3a9aa176033","tags":[]}] +[14:29:51.401] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A bit not jealous but also a bit jealous. ","created_at":1759429766,"id":"cbe543b49177da02ee035fe670b09d8bfce786a90aa19a177c4c35f3239036bc","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"2d6f02dd6730195c6372d1ebdb9fdbeb8e6e574028776de5afc036a92e178e788ec66feced55a66fc40c61b8b782735cf3b082185e70e17803899cb018428ce9","tags":[["alt","A short note: A bit not jealous but also a bit jealous. "],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:29:51.462] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Making unusually profitable transactions available to all miners in the goal.","created_at":1759429765,"id":"d4b843a34caedddc3f96c30697231001d47621e1ae05c9e51ff1c1a839d142d1","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"270c2a9fa537699414e293c05a166a2a4e0fc71da502913feb1b74aff2aeadaf4de88e6fbd8728fdc137b661d9ae7af5a42680663154a8022b933ce8cfc017e5","tags":[["e","79b76b0754bf682ae84241163697483a3632200cecd5688b59267b2fb40503f3","wss://nostr.mineracks.com/","root"],["e","94ccf48c0ba6d31361c063d5cb7730f175d0cb21f3147d1928806c18cc551f82","","reply"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","a0cb70d3208f5f7cf66b9cbb582ef1e215ef4ef0c9531863858fb664ddfb0b8f"]]}] +[14:29:51.522] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんで大人たちはガキンチョに垂直の鉄の棒を登らせようと思ったんだろう","created_at":1759429765,"id":"9c4e654e1acf308eef7d8d1a672e9203a265e01e937b06649e93575d60dfb40d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"5d1c7acf689feb24fcde3f3bc28208cc43984a3f3d974c915ff3cb1414c53c92a5b482aa85cdb69c401dff79331f9764f9e2de3832166e71b5d6d18c8d970848","tags":[]}] +[14:29:51.583] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:51.643] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:29:51.704] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:29:51.764] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:51.825] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:51.885] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:51.946] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:52.007] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:52.067] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:52.128] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:52.188] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:52.249] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:52.732] RECV nos.lol:443: ecca9ed93d1394","kind":3,"pubkey":"e096a89eeb9082089 +[14:29:53.784] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:53.784] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:53.784] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:53.784] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:53.936] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BAD BITCHES \nhttps://images2.imgbox.com/2e/f8/4jAqkYx5_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429786,"id":"8f145c80d1b6c0a69910617ff561f5ce65268b8939031fa175edb9b800b1cad4","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"d4736f44e4f5ca906496c36dbc50fddbf30e6fa3bc9d53d8b99dcfcb1fa380ac9cf141b29762bb7cd1ba1942b195a5b2c442369189a00aba192f272c9f73d57e","tags":[]}] +[14:29:53.946] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"類人猿時代を思い出させたかったんじゃない","created_at":1759429786,"id":"fc338f08c71ae085a28493f31cd00d798bc403a52c350226b6c68e48de6d47cf","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"129699ebff83cdbac9ed27726398b34391eb3dbe77d5982bbe114c2d35d86203e0eb8adb51b82a4f4101e70248638c23a6bf3d3ce7be71430c685333676324e0","tags":[]}] +[14:29:54.007] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’s so sick. Worth the investment!","created_at":1759429782,"id":"50be2e81eb1b4073f47aadb211e4d20add5488b2d3c8e10f565f174f245d4f5d","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"05cc1396357a7b9f9639f36e814922ebeba52e4900f9f612a8c7b5223e37c0674f172f9970cb1f3e92b4b67e8503f219e1c489f449e70145ddbccf7862213c12","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["e","8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","","reply"],["p","de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a"]]}] +[14:29:54.067] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No idea, but it's very lite","created_at":1759429782,"id":"d0a0c96d4a356148c47b5782ad324bd8bd2f384ebc160f432534cc00c768ddeb","kind":1,"pubkey":"a87c9bfc4570fe15afdda6c0095ade2d74fb14e3294bff37a965522983bda6a8","sig":"4dd44a0c329b5473a2803901c43f5f66bfb05684ebb6dc70488c10b876637ce4c88d4b548eab3f882efe36fc5d8c20cd777b349c6d1f5ad3a8b0ed134b87bbe7","tags":[["p","465eb13404d7219cd91c2b4a8a7e308ad4e09bc1298dc08c5eec852e9bf5da09"],["e","792de9f644bf8d7eacf7fe37b41d730c7632204311da558a4d10c380e8ffb1a1","","reply"]]}] +[14:29:54.128] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4\n\n🤣🤣 Who can watch cute kitty vids all day with shit like this available??\n\n#walkaway #antifaisfascist","created_at":1759429777,"id":"65e3f30e993ab0cf9f03173dcb7198326bf2e07c1ee00608d3d617ba0140979f","kind":1,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"f8d21348da0b01e21008d69c296c44f202dd39b3cc2db09ac1d7c80f4f001d17918f9fedd4931b08bb72ad0646ebd52ea4fb0779c5e58839d5bb56fce4955522","tags":[["alt","A short note: https://video.nostr.build/4e3b7f38fd88b262e5951701..."],["t","walkaway"],["t","antifaisfascist"],["r","https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4"],["imeta","url https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4","x 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","size 3839161","m video/mp4","dim 720x720","blurhash UTEyPjs:ogM{RMt7oLR*_NWVofWBR#bIofRj","ox 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","alt "]]}] +[14:29:54.189] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg\n\nSo Happy MoMmY ShE GoT It","created_at":1759429776,"id":"135b7b63c0863f010236fab9d4253666b3c71ab2b40aae118f4b5d9ff6e84ab5","kind":1,"pubkey":"553a3cd59c90068eb90b55ae624d3dc7213408939e5b4fa130d1716f482d443d","sig":"25c01bb19168f3a4cab015e15f2300bbadd8a5dd8e043a5c6f588a6fb5d0ad5fcdb7b153f6116b63a772fe14b4d7257c00e80d9918977ddbd7fc983f07e84b1e","tags":[["imeta","url https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg","m image/jpeg","x 732b1df18348e5b8b7c1b35b0e1c6b2581e27927ea876fa2d5bf1c9bb338525d","ox 1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154","blurhash LYE{CD~BkWOYtRbasm%1NZkWr=s-","dim 1920x1440","thumb https://image.nostr.build/thumb/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg"]]}] +[14:29:54.249] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に囲い書き…。縄張りか落書きか、危ない匂いがする。放っとくと広がる。写真撮って記録しろ、触るな。ひとりで行くな、誰かと見に行け。cuidado。困ったら相談しろ、諦めるな。一緒に行けば怖くない、vamos juntos。","created_at":1759429772,"id":"61732bbb0762d2e8f83e535e428f81c0cebfef2a78ba13871cd9c3a417504a5c","kind":1,"pubkey":"bd8eedc9473daa7c8820c942b74476b6f98e6758d3d1028d72b69e95842501be","sig":"3277b7d030e0eb1e8e21035c8e9bf5cf30aeca5b1afef90a71e8eb28353b65178ffb0d7d2b3d0752f7b15c9a9428f2d295304efab0fc22e91280e3a9aa176033","tags":[]}] +[14:29:54.310] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A bit not jealous but also a bit jealous. ","created_at":1759429766,"id":"cbe543b49177da02ee035fe670b09d8bfce786a90aa19a177c4c35f3239036bc","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"2d6f02dd6730195c6372d1ebdb9fdbeb8e6e574028776de5afc036a92e178e788ec66feced55a66fc40c61b8b782735cf3b082185e70e17803899cb018428ce9","tags":[["alt","A short note: A bit not jealous but also a bit jealous. "],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:29:54.370] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Making unusually profitable transactions available to all miners in the goal.","created_at":1759429765,"id":"d4b843a34caedddc3f96c30697231001d47621e1ae05c9e51ff1c1a839d142d1","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"270c2a9fa537699414e293c05a166a2a4e0fc71da502913feb1b74aff2aeadaf4de88e6fbd8728fdc137b661d9ae7af5a42680663154a8022b933ce8cfc017e5","tags":[["e","79b76b0754bf682ae84241163697483a3632200cecd5688b59267b2fb40503f3","wss://nostr.mineracks.com/","root"],["e","94ccf48c0ba6d31361c063d5cb7730f175d0cb21f3147d1928806c18cc551f82","","reply"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","a0cb70d3208f5f7cf66b9cbb582ef1e215ef4ef0c9531863858fb664ddfb0b8f"]]}] +[14:29:54.431] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんで大人たちはガキンチョに垂直の鉄の棒を登らせようと思ったんだろう","created_at":1759429765,"id":"9c4e654e1acf308eef7d8d1a672e9203a265e01e937b06649e93575d60dfb40d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"5d1c7acf689feb24fcde3f3bc28208cc43984a3f3d974c915ff3cb1414c53c92a5b482aa85cdb69c401dff79331f9764f9e2de3832166e71b5d6d18c8d970848","tags":[]}] +[14:29:54.492] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:54.552] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:29:54.613] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:29:54.673] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:54.734] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:54.794] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:54.855] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:54.915] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:54.976] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:55.036] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:55.097] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:55.157] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:55.640] RECV nos.lol:443: ecca9ed93d1394","kind":3,"pubkey":"e096a89eeb9082089 +[14:29:56.492] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:56.493] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:56.493] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:56.493] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:56.643] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"りとりんも類人猿だよな","created_at":1759429796,"id":"d0c4c00c8bd8bf354a149ff6f14f809dc499804efbf85068008b4519e35f3a13","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d51b948d5afc24adff50f481d2e609f82cdb20d2771e21b74b500d84217fe214f70c4b33b35985c7a9eda06c7d61e5d9bcec4915dac203dc397f3cab6aa8835a","tags":[]}] +[14:29:56.704] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BAD BITCHES \nhttps://images2.imgbox.com/2e/f8/4jAqkYx5_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429786,"id":"8f145c80d1b6c0a69910617ff561f5ce65268b8939031fa175edb9b800b1cad4","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"d4736f44e4f5ca906496c36dbc50fddbf30e6fa3bc9d53d8b99dcfcb1fa380ac9cf141b29762bb7cd1ba1942b195a5b2c442369189a00aba192f272c9f73d57e","tags":[]}] +[14:29:56.765] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"類人猿時代を思い出させたかったんじゃない","created_at":1759429786,"id":"fc338f08c71ae085a28493f31cd00d798bc403a52c350226b6c68e48de6d47cf","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"129699ebff83cdbac9ed27726398b34391eb3dbe77d5982bbe114c2d35d86203e0eb8adb51b82a4f4101e70248638c23a6bf3d3ce7be71430c685333676324e0","tags":[]}] +[14:29:56.825] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’s so sick. Worth the investment!","created_at":1759429782,"id":"50be2e81eb1b4073f47aadb211e4d20add5488b2d3c8e10f565f174f245d4f5d","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"05cc1396357a7b9f9639f36e814922ebeba52e4900f9f612a8c7b5223e37c0674f172f9970cb1f3e92b4b67e8503f219e1c489f449e70145ddbccf7862213c12","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["e","8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","","reply"],["p","de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a"]]}] +[14:29:56.886] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No idea, but it's very lite","created_at":1759429782,"id":"d0a0c96d4a356148c47b5782ad324bd8bd2f384ebc160f432534cc00c768ddeb","kind":1,"pubkey":"a87c9bfc4570fe15afdda6c0095ade2d74fb14e3294bff37a965522983bda6a8","sig":"4dd44a0c329b5473a2803901c43f5f66bfb05684ebb6dc70488c10b876637ce4c88d4b548eab3f882efe36fc5d8c20cd777b349c6d1f5ad3a8b0ed134b87bbe7","tags":[["p","465eb13404d7219cd91c2b4a8a7e308ad4e09bc1298dc08c5eec852e9bf5da09"],["e","792de9f644bf8d7eacf7fe37b41d730c7632204311da558a4d10c380e8ffb1a1","","reply"]]}] +[14:29:56.947] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4\n\n🤣🤣 Who can watch cute kitty vids all day with shit like this available??\n\n#walkaway #antifaisfascist","created_at":1759429777,"id":"65e3f30e993ab0cf9f03173dcb7198326bf2e07c1ee00608d3d617ba0140979f","kind":1,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"f8d21348da0b01e21008d69c296c44f202dd39b3cc2db09ac1d7c80f4f001d17918f9fedd4931b08bb72ad0646ebd52ea4fb0779c5e58839d5bb56fce4955522","tags":[["alt","A short note: https://video.nostr.build/4e3b7f38fd88b262e5951701..."],["t","walkaway"],["t","antifaisfascist"],["r","https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4"],["imeta","url https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4","x 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","size 3839161","m video/mp4","dim 720x720","blurhash UTEyPjs:ogM{RMt7oLR*_NWVofWBR#bIofRj","ox 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","alt "]]}] +[14:29:57.007] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg\n\nSo Happy MoMmY ShE GoT It","created_at":1759429776,"id":"135b7b63c0863f010236fab9d4253666b3c71ab2b40aae118f4b5d9ff6e84ab5","kind":1,"pubkey":"553a3cd59c90068eb90b55ae624d3dc7213408939e5b4fa130d1716f482d443d","sig":"25c01bb19168f3a4cab015e15f2300bbadd8a5dd8e043a5c6f588a6fb5d0ad5fcdb7b153f6116b63a772fe14b4d7257c00e80d9918977ddbd7fc983f07e84b1e","tags":[["imeta","url https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg","m image/jpeg","x 732b1df18348e5b8b7c1b35b0e1c6b2581e27927ea876fa2d5bf1c9bb338525d","ox 1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154","blurhash LYE{CD~BkWOYtRbasm%1NZkWr=s-","dim 1920x1440","thumb https://image.nostr.build/thumb/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg"]]}] +[14:29:57.068] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に囲い書き…。縄張りか落書きか、危ない匂いがする。放っとくと広がる。写真撮って記録しろ、触るな。ひとりで行くな、誰かと見に行け。cuidado。困ったら相談しろ、諦めるな。一緒に行けば怖くない、vamos juntos。","created_at":1759429772,"id":"61732bbb0762d2e8f83e535e428f81c0cebfef2a78ba13871cd9c3a417504a5c","kind":1,"pubkey":"bd8eedc9473daa7c8820c942b74476b6f98e6758d3d1028d72b69e95842501be","sig":"3277b7d030e0eb1e8e21035c8e9bf5cf30aeca5b1afef90a71e8eb28353b65178ffb0d7d2b3d0752f7b15c9a9428f2d295304efab0fc22e91280e3a9aa176033","tags":[]}] +[14:29:57.128] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A bit not jealous but also a bit jealous. ","created_at":1759429766,"id":"cbe543b49177da02ee035fe670b09d8bfce786a90aa19a177c4c35f3239036bc","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"2d6f02dd6730195c6372d1ebdb9fdbeb8e6e574028776de5afc036a92e178e788ec66feced55a66fc40c61b8b782735cf3b082185e70e17803899cb018428ce9","tags":[["alt","A short note: A bit not jealous but also a bit jealous. "],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:29:57.189] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Making unusually profitable transactions available to all miners in the goal.","created_at":1759429765,"id":"d4b843a34caedddc3f96c30697231001d47621e1ae05c9e51ff1c1a839d142d1","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"270c2a9fa537699414e293c05a166a2a4e0fc71da502913feb1b74aff2aeadaf4de88e6fbd8728fdc137b661d9ae7af5a42680663154a8022b933ce8cfc017e5","tags":[["e","79b76b0754bf682ae84241163697483a3632200cecd5688b59267b2fb40503f3","wss://nostr.mineracks.com/","root"],["e","94ccf48c0ba6d31361c063d5cb7730f175d0cb21f3147d1928806c18cc551f82","","reply"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","a0cb70d3208f5f7cf66b9cbb582ef1e215ef4ef0c9531863858fb664ddfb0b8f"]]}] +[14:29:57.249] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:57.310] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:29:57.371] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:29:57.431] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:29:57.492] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:57.552] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:57.613] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:57.673] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:57.734] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:57.794] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:57.855] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:57.915] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:58.972] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:58.972] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:58.973] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:58.973] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:59.124] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I don’t do drugs actually haha so maybe I haven’t done enough drugs ","created_at":1759429796,"id":"a63f4b35d542da39936f5b6feac2da094e889f11196e8389a8ac9bcb3e711e8b","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"877a6edc0e7375aa94e2e86ad4e171da10888c2630d6184959f74a1b582adcc5b0903629a57d98ce2a91cc3c7d4c82b20a99e562fdd2ad338316e3fb04df6780","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["e","a3c2f2a587d4c3b3e7624f775682717b19a87c455b2691ccdca85eb45978a5a2","","reply"],["p","bea135f01ee6182b8618acaaa5eefd5271f22d5c8b2827413fe894a720051c36","","mention"]]}] +[14:29:59.184] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"りとりんも類人猿だよな","created_at":1759429796,"id":"d0c4c00c8bd8bf354a149ff6f14f809dc499804efbf85068008b4519e35f3a13","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d51b948d5afc24adff50f481d2e609f82cdb20d2771e21b74b500d84217fe214f70c4b33b35985c7a9eda06c7d61e5d9bcec4915dac203dc397f3cab6aa8835a","tags":[]}] +[14:29:59.426] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BAD BITCHES \nhttps://images2.imgbox.com/2e/f8/4jAqkYx5_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429786,"id":"8f145c80d1b6c0a69910617ff561f5ce65268b8939031fa175edb9b800b1cad4","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"d4736f44e4f5ca906496c36dbc50fddbf30e6fa3bc9d53d8b99dcfcb1fa380ac9cf141b29762bb7cd1ba1942b195a5b2c442369189a00aba192f272c9f73d57e","tags":[]}] +[14:29:59.486] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"類人猿時代を思い出させたかったんじゃない","created_at":1759429786,"id":"fc338f08c71ae085a28493f31cd00d798bc403a52c350226b6c68e48de6d47cf","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"129699ebff83cdbac9ed27726398b34391eb3dbe77d5982bbe114c2d35d86203e0eb8adb51b82a4f4101e70248638c23a6bf3d3ce7be71430c685333676324e0","tags":[]}] +[14:29:59.547] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’s so sick. Worth the investment!","created_at":1759429782,"id":"50be2e81eb1b4073f47aadb211e4d20add5488b2d3c8e10f565f174f245d4f5d","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"05cc1396357a7b9f9639f36e814922ebeba52e4900f9f612a8c7b5223e37c0674f172f9970cb1f3e92b4b67e8503f219e1c489f449e70145ddbccf7862213c12","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["e","8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","","reply"],["p","de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a"]]}] +[14:29:59.607] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No idea, but it's very lite","created_at":1759429782,"id":"d0a0c96d4a356148c47b5782ad324bd8bd2f384ebc160f432534cc00c768ddeb","kind":1,"pubkey":"a87c9bfc4570fe15afdda6c0095ade2d74fb14e3294bff37a965522983bda6a8","sig":"4dd44a0c329b5473a2803901c43f5f66bfb05684ebb6dc70488c10b876637ce4c88d4b548eab3f882efe36fc5d8c20cd777b349c6d1f5ad3a8b0ed134b87bbe7","tags":[["p","465eb13404d7219cd91c2b4a8a7e308ad4e09bc1298dc08c5eec852e9bf5da09"],["e","792de9f644bf8d7eacf7fe37b41d730c7632204311da558a4d10c380e8ffb1a1","","reply"]]}] +[14:29:59.668] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4\n\n🤣🤣 Who can watch cute kitty vids all day with shit like this available??\n\n#walkaway #antifaisfascist","created_at":1759429777,"id":"65e3f30e993ab0cf9f03173dcb7198326bf2e07c1ee00608d3d617ba0140979f","kind":1,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"f8d21348da0b01e21008d69c296c44f202dd39b3cc2db09ac1d7c80f4f001d17918f9fedd4931b08bb72ad0646ebd52ea4fb0779c5e58839d5bb56fce4955522","tags":[["alt","A short note: https://video.nostr.build/4e3b7f38fd88b262e5951701..."],["t","walkaway"],["t","antifaisfascist"],["r","https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4"],["imeta","url https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4","x 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","size 3839161","m video/mp4","dim 720x720","blurhash UTEyPjs:ogM{RMt7oLR*_NWVofWBR#bIofRj","ox 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","alt "]]}] +[14:29:59.728] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg\n\nSo Happy MoMmY ShE GoT It","created_at":1759429776,"id":"135b7b63c0863f010236fab9d4253666b3c71ab2b40aae118f4b5d9ff6e84ab5","kind":1,"pubkey":"553a3cd59c90068eb90b55ae624d3dc7213408939e5b4fa130d1716f482d443d","sig":"25c01bb19168f3a4cab015e15f2300bbadd8a5dd8e043a5c6f588a6fb5d0ad5fcdb7b153f6116b63a772fe14b4d7257c00e80d9918977ddbd7fc983f07e84b1e","tags":[["imeta","url https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg","m image/jpeg","x 732b1df18348e5b8b7c1b35b0e1c6b2581e27927ea876fa2d5bf1c9bb338525d","ox 1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154","blurhash LYE{CD~BkWOYtRbasm%1NZkWr=s-","dim 1920x1440","thumb https://image.nostr.build/thumb/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg"]]}] +[14:29:59.789] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に囲い書き…。縄張りか落書きか、危ない匂いがする。放っとくと広がる。写真撮って記録しろ、触るな。ひとりで行くな、誰かと見に行け。cuidado。困ったら相談しろ、諦めるな。一緒に行けば怖くない、vamos juntos。","created_at":1759429772,"id":"61732bbb0762d2e8f83e535e428f81c0cebfef2a78ba13871cd9c3a417504a5c","kind":1,"pubkey":"bd8eedc9473daa7c8820c942b74476b6f98e6758d3d1028d72b69e95842501be","sig":"3277b7d030e0eb1e8e21035c8e9bf5cf30aeca5b1afef90a71e8eb28353b65178ffb0d7d2b3d0752f7b15c9a9428f2d295304efab0fc22e91280e3a9aa176033","tags":[]}] +[14:29:59.850] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A bit not jealous but also a bit jealous. ","created_at":1759429766,"id":"cbe543b49177da02ee035fe670b09d8bfce786a90aa19a177c4c35f3239036bc","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"2d6f02dd6730195c6372d1ebdb9fdbeb8e6e574028776de5afc036a92e178e788ec66feced55a66fc40c61b8b782735cf3b082185e70e17803899cb018428ce9","tags":[["alt","A short note: A bit not jealous but also a bit jealous. "],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:29:59.910] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:59.971] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:00.031] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:00.092] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:00.152] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:00.213] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:00.273] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:00.334] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:00.394] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:30:00.455] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:00.515] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:00.576] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:01.670] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:01.670] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:01.671] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:01.671] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:01.822] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:01.883] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I don’t do drugs actually haha so maybe I haven’t done enough drugs ","created_at":1759429796,"id":"a63f4b35d542da39936f5b6feac2da094e889f11196e8389a8ac9bcb3e711e8b","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"877a6edc0e7375aa94e2e86ad4e171da10888c2630d6184959f74a1b582adcc5b0903629a57d98ce2a91cc3c7d4c82b20a99e562fdd2ad338316e3fb04df6780","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["e","a3c2f2a587d4c3b3e7624f775682717b19a87c455b2691ccdca85eb45978a5a2","","reply"],["p","bea135f01ee6182b8618acaaa5eefd5271f22d5c8b2827413fe894a720051c36","","mention"]]}] +[14:30:01.959] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"りとりんも類人猿だよな","created_at":1759429796,"id":"d0c4c00c8bd8bf354a149ff6f14f809dc499804efbf85068008b4519e35f3a13","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d51b948d5afc24adff50f481d2e609f82cdb20d2771e21b74b500d84217fe214f70c4b33b35985c7a9eda06c7d61e5d9bcec4915dac203dc397f3cab6aa8835a","tags":[]}] +[14:30:02.020] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BAD BITCHES \nhttps://images2.imgbox.com/2e/f8/4jAqkYx5_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429786,"id":"8f145c80d1b6c0a69910617ff561f5ce65268b8939031fa175edb9b800b1cad4","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"d4736f44e4f5ca906496c36dbc50fddbf30e6fa3bc9d53d8b99dcfcb1fa380ac9cf141b29762bb7cd1ba1942b195a5b2c442369189a00aba192f272c9f73d57e","tags":[]}] +[14:30:02.080] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"類人猿時代を思い出させたかったんじゃない","created_at":1759429786,"id":"fc338f08c71ae085a28493f31cd00d798bc403a52c350226b6c68e48de6d47cf","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"129699ebff83cdbac9ed27726398b34391eb3dbe77d5982bbe114c2d35d86203e0eb8adb51b82a4f4101e70248638c23a6bf3d3ce7be71430c685333676324e0","tags":[]}] +[14:30:02.141] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’s so sick. Worth the investment!","created_at":1759429782,"id":"50be2e81eb1b4073f47aadb211e4d20add5488b2d3c8e10f565f174f245d4f5d","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"05cc1396357a7b9f9639f36e814922ebeba52e4900f9f612a8c7b5223e37c0674f172f9970cb1f3e92b4b67e8503f219e1c489f449e70145ddbccf7862213c12","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["e","8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","","reply"],["p","de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a"]]}] +[14:30:02.201] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No idea, but it's very lite","created_at":1759429782,"id":"d0a0c96d4a356148c47b5782ad324bd8bd2f384ebc160f432534cc00c768ddeb","kind":1,"pubkey":"a87c9bfc4570fe15afdda6c0095ade2d74fb14e3294bff37a965522983bda6a8","sig":"4dd44a0c329b5473a2803901c43f5f66bfb05684ebb6dc70488c10b876637ce4c88d4b548eab3f882efe36fc5d8c20cd777b349c6d1f5ad3a8b0ed134b87bbe7","tags":[["p","465eb13404d7219cd91c2b4a8a7e308ad4e09bc1298dc08c5eec852e9bf5da09"],["e","792de9f644bf8d7eacf7fe37b41d730c7632204311da558a4d10c380e8ffb1a1","","reply"]]}] +[14:30:02.262] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4\n\n🤣🤣 Who can watch cute kitty vids all day with shit like this available??\n\n#walkaway #antifaisfascist","created_at":1759429777,"id":"65e3f30e993ab0cf9f03173dcb7198326bf2e07c1ee00608d3d617ba0140979f","kind":1,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"f8d21348da0b01e21008d69c296c44f202dd39b3cc2db09ac1d7c80f4f001d17918f9fedd4931b08bb72ad0646ebd52ea4fb0779c5e58839d5bb56fce4955522","tags":[["alt","A short note: https://video.nostr.build/4e3b7f38fd88b262e5951701..."],["t","walkaway"],["t","antifaisfascist"],["r","https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4"],["imeta","url https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4","x 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","size 3839161","m video/mp4","dim 720x720","blurhash UTEyPjs:ogM{RMt7oLR*_NWVofWBR#bIofRj","ox 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","alt "]]}] +[14:30:02.323] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg\n\nSo Happy MoMmY ShE GoT It","created_at":1759429776,"id":"135b7b63c0863f010236fab9d4253666b3c71ab2b40aae118f4b5d9ff6e84ab5","kind":1,"pubkey":"553a3cd59c90068eb90b55ae624d3dc7213408939e5b4fa130d1716f482d443d","sig":"25c01bb19168f3a4cab015e15f2300bbadd8a5dd8e043a5c6f588a6fb5d0ad5fcdb7b153f6116b63a772fe14b4d7257c00e80d9918977ddbd7fc983f07e84b1e","tags":[["imeta","url https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg","m image/jpeg","x 732b1df18348e5b8b7c1b35b0e1c6b2581e27927ea876fa2d5bf1c9bb338525d","ox 1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154","blurhash LYE{CD~BkWOYtRbasm%1NZkWr=s-","dim 1920x1440","thumb https://image.nostr.build/thumb/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg"]]}] +[14:30:02.383] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に囲い書き…。縄張りか落書きか、危ない匂いがする。放っとくと広がる。写真撮って記録しろ、触るな。ひとりで行くな、誰かと見に行け。cuidado。困ったら相談しろ、諦めるな。一緒に行けば怖くない、vamos juntos。","created_at":1759429772,"id":"61732bbb0762d2e8f83e535e428f81c0cebfef2a78ba13871cd9c3a417504a5c","kind":1,"pubkey":"bd8eedc9473daa7c8820c942b74476b6f98e6758d3d1028d72b69e95842501be","sig":"3277b7d030e0eb1e8e21035c8e9bf5cf30aeca5b1afef90a71e8eb28353b65178ffb0d7d2b3d0752f7b15c9a9428f2d295304efab0fc22e91280e3a9aa176033","tags":[]}] +[14:30:02.444] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:02.504] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:02.565] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:02.626] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:02.686] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:02.747] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:02.807] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:02.868] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:02.928] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:30:02.989] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:03.049] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:03.110] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:03.679] RECV nos.lol:443: 8451956cc14a2e9065ad1a8fda185c202698937b"],["p","787338757fc25d65cd929394d5e7713cf43638e8d259e8dc +[14:30:05.189] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:05.189] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:05.189] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:05.190] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:05.342] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:05.403] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:05.464] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:05.524] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I don’t do drugs actually haha so maybe I haven’t done enough drugs ","created_at":1759429796,"id":"a63f4b35d542da39936f5b6feac2da094e889f11196e8389a8ac9bcb3e711e8b","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"877a6edc0e7375aa94e2e86ad4e171da10888c2630d6184959f74a1b582adcc5b0903629a57d98ce2a91cc3c7d4c82b20a99e562fdd2ad338316e3fb04df6780","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["e","a3c2f2a587d4c3b3e7624f775682717b19a87c455b2691ccdca85eb45978a5a2","","reply"],["p","bea135f01ee6182b8618acaaa5eefd5271f22d5c8b2827413fe894a720051c36","","mention"]]}] +[14:30:05.585] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"りとりんも類人猿だよな","created_at":1759429796,"id":"d0c4c00c8bd8bf354a149ff6f14f809dc499804efbf85068008b4519e35f3a13","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d51b948d5afc24adff50f481d2e609f82cdb20d2771e21b74b500d84217fe214f70c4b33b35985c7a9eda06c7d61e5d9bcec4915dac203dc397f3cab6aa8835a","tags":[]}] +[14:30:05.645] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BAD BITCHES \nhttps://images2.imgbox.com/2e/f8/4jAqkYx5_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429786,"id":"8f145c80d1b6c0a69910617ff561f5ce65268b8939031fa175edb9b800b1cad4","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"d4736f44e4f5ca906496c36dbc50fddbf30e6fa3bc9d53d8b99dcfcb1fa380ac9cf141b29762bb7cd1ba1942b195a5b2c442369189a00aba192f272c9f73d57e","tags":[]}] +[14:30:05.706] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"類人猿時代を思い出させたかったんじゃない","created_at":1759429786,"id":"fc338f08c71ae085a28493f31cd00d798bc403a52c350226b6c68e48de6d47cf","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"129699ebff83cdbac9ed27726398b34391eb3dbe77d5982bbe114c2d35d86203e0eb8adb51b82a4f4101e70248638c23a6bf3d3ce7be71430c685333676324e0","tags":[]}] +[14:30:05.766] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’s so sick. Worth the investment!","created_at":1759429782,"id":"50be2e81eb1b4073f47aadb211e4d20add5488b2d3c8e10f565f174f245d4f5d","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"05cc1396357a7b9f9639f36e814922ebeba52e4900f9f612a8c7b5223e37c0674f172f9970cb1f3e92b4b67e8503f219e1c489f449e70145ddbccf7862213c12","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["e","8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","","reply"],["p","de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a"]]}] +[14:30:05.827] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No idea, but it's very lite","created_at":1759429782,"id":"d0a0c96d4a356148c47b5782ad324bd8bd2f384ebc160f432534cc00c768ddeb","kind":1,"pubkey":"a87c9bfc4570fe15afdda6c0095ade2d74fb14e3294bff37a965522983bda6a8","sig":"4dd44a0c329b5473a2803901c43f5f66bfb05684ebb6dc70488c10b876637ce4c88d4b548eab3f882efe36fc5d8c20cd777b349c6d1f5ad3a8b0ed134b87bbe7","tags":[["p","465eb13404d7219cd91c2b4a8a7e308ad4e09bc1298dc08c5eec852e9bf5da09"],["e","792de9f644bf8d7eacf7fe37b41d730c7632204311da558a4d10c380e8ffb1a1","","reply"]]}] +[14:30:05.887] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4\n\n🤣🤣 Who can watch cute kitty vids all day with shit like this available??\n\n#walkaway #antifaisfascist","created_at":1759429777,"id":"65e3f30e993ab0cf9f03173dcb7198326bf2e07c1ee00608d3d617ba0140979f","kind":1,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"f8d21348da0b01e21008d69c296c44f202dd39b3cc2db09ac1d7c80f4f001d17918f9fedd4931b08bb72ad0646ebd52ea4fb0779c5e58839d5bb56fce4955522","tags":[["alt","A short note: https://video.nostr.build/4e3b7f38fd88b262e5951701..."],["t","walkaway"],["t","antifaisfascist"],["r","https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4"],["imeta","url https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4","x 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","size 3839161","m video/mp4","dim 720x720","blurhash UTEyPjs:ogM{RMt7oLR*_NWVofWBR#bIofRj","ox 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","alt "]]}] +[14:30:05.948] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:06.009] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:06.069] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:06.130] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:06.190] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:06.251] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:06.311] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:06.372] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:06.432] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:06.493] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:30:06.553] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:06.614] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:06.674] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429803,"id":"b157b6c2eda397060f311f58e664acdaf80e53833cc758a8b84b610be89cc8a9","kind":3,"pubkey":"e2b8ba3e6f7d63ab44559f25a6863d1d9ba1a2cd751391a69e261ad027400d81","sig":"f921b754504d7f62c3e6ab21637f4d788acf0136ae6b44d63d5a23ad260c7e9ac8ea6da6aaff4461d53aa6832f6a8df0dc25e3ab5b9cdebc319dd816d75414f4","tags":[]}] +[14:30:07.278] RECV nos.lol:443: 8451956cc14a2e9065ad1a8fda185c202698937b"],["p","787338757fc25d65cd929394d5e7713cf43638e8d259e8dc +[14:30:08.614] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:08.614] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:08.614] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:08.614] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:08.798] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:08.859] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:08.920] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:08.980] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:09.041] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:09.102] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I don’t do drugs actually haha so maybe I haven’t done enough drugs ","created_at":1759429796,"id":"a63f4b35d542da39936f5b6feac2da094e889f11196e8389a8ac9bcb3e711e8b","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"877a6edc0e7375aa94e2e86ad4e171da10888c2630d6184959f74a1b582adcc5b0903629a57d98ce2a91cc3c7d4c82b20a99e562fdd2ad338316e3fb04df6780","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["e","a3c2f2a587d4c3b3e7624f775682717b19a87c455b2691ccdca85eb45978a5a2","","reply"],["p","bea135f01ee6182b8618acaaa5eefd5271f22d5c8b2827413fe894a720051c36","","mention"]]}] +[14:30:09.162] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"りとりんも類人猿だよな","created_at":1759429796,"id":"d0c4c00c8bd8bf354a149ff6f14f809dc499804efbf85068008b4519e35f3a13","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d51b948d5afc24adff50f481d2e609f82cdb20d2771e21b74b500d84217fe214f70c4b33b35985c7a9eda06c7d61e5d9bcec4915dac203dc397f3cab6aa8835a","tags":[]}] +[14:30:09.222] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BAD BITCHES \nhttps://images2.imgbox.com/2e/f8/4jAqkYx5_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429786,"id":"8f145c80d1b6c0a69910617ff561f5ce65268b8939031fa175edb9b800b1cad4","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"d4736f44e4f5ca906496c36dbc50fddbf30e6fa3bc9d53d8b99dcfcb1fa380ac9cf141b29762bb7cd1ba1942b195a5b2c442369189a00aba192f272c9f73d57e","tags":[]}] +[14:30:09.283] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"類人猿時代を思い出させたかったんじゃない","created_at":1759429786,"id":"fc338f08c71ae085a28493f31cd00d798bc403a52c350226b6c68e48de6d47cf","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"129699ebff83cdbac9ed27726398b34391eb3dbe77d5982bbe114c2d35d86203e0eb8adb51b82a4f4101e70248638c23a6bf3d3ce7be71430c685333676324e0","tags":[]}] +[14:30:09.343] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’s so sick. Worth the investment!","created_at":1759429782,"id":"50be2e81eb1b4073f47aadb211e4d20add5488b2d3c8e10f565f174f245d4f5d","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"05cc1396357a7b9f9639f36e814922ebeba52e4900f9f612a8c7b5223e37c0674f172f9970cb1f3e92b4b67e8503f219e1c489f449e70145ddbccf7862213c12","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["e","8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","","reply"],["p","de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a"]]}] +[14:30:09.404] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:09.464] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:09.525] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:09.585] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:09.646] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:09.706] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:09.767] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:09.827] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:09.888] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:09.948] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:30:10.009] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:10.070] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:10.130] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429803,"id":"b157b6c2eda397060f311f58e664acdaf80e53833cc758a8b84b610be89cc8a9","kind":3,"pubkey":"e2b8ba3e6f7d63ab44559f25a6863d1d9ba1a2cd751391a69e261ad027400d81","sig":"f921b754504d7f62c3e6ab21637f4d788acf0136ae6b44d63d5a23ad260c7e9ac8ea6da6aaff4461d53aa6832f6a8df0dc25e3ab5b9cdebc319dd816d75414f4","tags":[]}] +[14:30:10.734] RECV nos.lol:443: 8451956cc14a2e9065ad1a8fda185c202698937b"],["p","787338757fc25d65cd929394d5e7713cf43638e8d259e8dc +[14:30:12.067] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:12.067] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:12.067] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:12.067] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:12.218] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:12.278] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:12.339] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:12.399] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:12.460] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:12.520] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I don’t do drugs actually haha so maybe I haven’t done enough drugs ","created_at":1759429796,"id":"a63f4b35d542da39936f5b6feac2da094e889f11196e8389a8ac9bcb3e711e8b","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"877a6edc0e7375aa94e2e86ad4e171da10888c2630d6184959f74a1b582adcc5b0903629a57d98ce2a91cc3c7d4c82b20a99e562fdd2ad338316e3fb04df6780","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["e","a3c2f2a587d4c3b3e7624f775682717b19a87c455b2691ccdca85eb45978a5a2","","reply"],["p","bea135f01ee6182b8618acaaa5eefd5271f22d5c8b2827413fe894a720051c36","","mention"]]}] +[14:30:12.581] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"りとりんも類人猿だよな","created_at":1759429796,"id":"d0c4c00c8bd8bf354a149ff6f14f809dc499804efbf85068008b4519e35f3a13","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d51b948d5afc24adff50f481d2e609f82cdb20d2771e21b74b500d84217fe214f70c4b33b35985c7a9eda06c7d61e5d9bcec4915dac203dc397f3cab6aa8835a","tags":[]}] +[14:30:12.642] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BAD BITCHES \nhttps://images2.imgbox.com/2e/f8/4jAqkYx5_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429786,"id":"8f145c80d1b6c0a69910617ff561f5ce65268b8939031fa175edb9b800b1cad4","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"d4736f44e4f5ca906496c36dbc50fddbf30e6fa3bc9d53d8b99dcfcb1fa380ac9cf141b29762bb7cd1ba1942b195a5b2c442369189a00aba192f272c9f73d57e","tags":[]}] +[14:30:12.702] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"類人猿時代を思い出させたかったんじゃない","created_at":1759429786,"id":"fc338f08c71ae085a28493f31cd00d798bc403a52c350226b6c68e48de6d47cf","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"129699ebff83cdbac9ed27726398b34391eb3dbe77d5982bbe114c2d35d86203e0eb8adb51b82a4f4101e70248638c23a6bf3d3ce7be71430c685333676324e0","tags":[]}] +[14:30:12.763] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’s so sick. Worth the investment!","created_at":1759429782,"id":"50be2e81eb1b4073f47aadb211e4d20add5488b2d3c8e10f565f174f245d4f5d","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"05cc1396357a7b9f9639f36e814922ebeba52e4900f9f612a8c7b5223e37c0674f172f9970cb1f3e92b4b67e8503f219e1c489f449e70145ddbccf7862213c12","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["e","8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","","reply"],["p","de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a"]]}] +[14:30:12.823] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:12.884] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:12.944] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:30:13.005] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:13.066] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:13.092] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:13.152] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:13.213] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:13.273] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:13.334] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:13.394] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:13.455] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:14.179] RECV nos.lol:443: 9b45a321d9"],["p","0114bb11dd8eb89bfb40669509b2a5a473d27126e27acae58257f2fd7cd95776"],["p","21c0f7a430 +[14:30:14.240] RECV nos.lol:443: cf74b7fc1d796c367771125f992a106a00273b2f6c8580171c0d"],[ +[14:30:15.216] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:15.216] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:15.216] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:15.216] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:15.368] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:30:15.429] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:15.490] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:15.550] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:15.611] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:15.671] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:15.732] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I don’t do drugs actually haha so maybe I haven’t done enough drugs ","created_at":1759429796,"id":"a63f4b35d542da39936f5b6feac2da094e889f11196e8389a8ac9bcb3e711e8b","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"877a6edc0e7375aa94e2e86ad4e171da10888c2630d6184959f74a1b582adcc5b0903629a57d98ce2a91cc3c7d4c82b20a99e562fdd2ad338316e3fb04df6780","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["e","a3c2f2a587d4c3b3e7624f775682717b19a87c455b2691ccdca85eb45978a5a2","","reply"],["p","bea135f01ee6182b8618acaaa5eefd5271f22d5c8b2827413fe894a720051c36","","mention"]]}] +[14:30:15.792] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"りとりんも類人猿だよな","created_at":1759429796,"id":"d0c4c00c8bd8bf354a149ff6f14f809dc499804efbf85068008b4519e35f3a13","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d51b948d5afc24adff50f481d2e609f82cdb20d2771e21b74b500d84217fe214f70c4b33b35985c7a9eda06c7d61e5d9bcec4915dac203dc397f3cab6aa8835a","tags":[]}] +[14:30:15.853] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BAD BITCHES \nhttps://images2.imgbox.com/2e/f8/4jAqkYx5_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429786,"id":"8f145c80d1b6c0a69910617ff561f5ce65268b8939031fa175edb9b800b1cad4","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"d4736f44e4f5ca906496c36dbc50fddbf30e6fa3bc9d53d8b99dcfcb1fa380ac9cf141b29762bb7cd1ba1942b195a5b2c442369189a00aba192f272c9f73d57e","tags":[]}] +[14:30:15.913] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"類人猿時代を思い出させたかったんじゃない","created_at":1759429786,"id":"fc338f08c71ae085a28493f31cd00d798bc403a52c350226b6c68e48de6d47cf","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"129699ebff83cdbac9ed27726398b34391eb3dbe77d5982bbe114c2d35d86203e0eb8adb51b82a4f4101e70248638c23a6bf3d3ce7be71430c685333676324e0","tags":[]}] +[14:30:15.974] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:16.034] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:16.095] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:30:16.155] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:16.216] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:16.276] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:16.337] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:16.397] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:16.458] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:16.518] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:16.579] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:16.639] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:17.364] RECV nos.lol:443: 9b45a321d9"],["p","0114bb11dd8eb89bfb40669509b2a5a473d27126e27acae58257f2fd7cd95776"],["p","21c0f7a430 +[14:30:17.424] RECV nos.lol:443: cf74b7fc1d796c367771125f992a106a00273b2f6c8580171c0d"],[ +[14:30:18.395] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:18.395] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:18.395] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:18.396] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:18.547] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:30:18.557] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:18.618] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:18.678] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:18.739] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:18.799] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:18.860] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I don’t do drugs actually haha so maybe I haven’t done enough drugs ","created_at":1759429796,"id":"a63f4b35d542da39936f5b6feac2da094e889f11196e8389a8ac9bcb3e711e8b","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"877a6edc0e7375aa94e2e86ad4e171da10888c2630d6184959f74a1b582adcc5b0903629a57d98ce2a91cc3c7d4c82b20a99e562fdd2ad338316e3fb04df6780","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["e","a3c2f2a587d4c3b3e7624f775682717b19a87c455b2691ccdca85eb45978a5a2","","reply"],["p","bea135f01ee6182b8618acaaa5eefd5271f22d5c8b2827413fe894a720051c36","","mention"]]}] +[14:30:18.920] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"りとりんも類人猿だよな","created_at":1759429796,"id":"d0c4c00c8bd8bf354a149ff6f14f809dc499804efbf85068008b4519e35f3a13","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d51b948d5afc24adff50f481d2e609f82cdb20d2771e21b74b500d84217fe214f70c4b33b35985c7a9eda06c7d61e5d9bcec4915dac203dc397f3cab6aa8835a","tags":[]}] +[14:30:18.981] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BAD BITCHES \nhttps://images2.imgbox.com/2e/f8/4jAqkYx5_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429786,"id":"8f145c80d1b6c0a69910617ff561f5ce65268b8939031fa175edb9b800b1cad4","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"d4736f44e4f5ca906496c36dbc50fddbf30e6fa3bc9d53d8b99dcfcb1fa380ac9cf141b29762bb7cd1ba1942b195a5b2c442369189a00aba192f272c9f73d57e","tags":[]}] +[14:30:19.041] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"類人猿時代を思い出させたかったんじゃない","created_at":1759429786,"id":"fc338f08c71ae085a28493f31cd00d798bc403a52c350226b6c68e48de6d47cf","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"129699ebff83cdbac9ed27726398b34391eb3dbe77d5982bbe114c2d35d86203e0eb8adb51b82a4f4101e70248638c23a6bf3d3ce7be71430c685333676324e0","tags":[]}] +[14:30:19.102] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:19.162] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:19.223] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:30:19.283] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:19.344] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:19.404] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:19.465] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:19.525] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:19.586] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:19.646] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:19.707] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:19.768] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:20.492] RECV nos.lol:443: 9b45a321d9"],["p","0114bb11dd8eb89bfb40669509b2a5a473d27126e27acae58257f2fd7cd95776"],["p","21c0f7a430 +[14:30:20.553] RECV nos.lol:443: cf74b7fc1d796c367771125f992a106a00273b2f6c8580171c0d"],[ +[14:30:21.870] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:21.870] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:21.870] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:21.870] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:22.202] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:30:22.263] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:30:22.323] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:22.384] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:22.444] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:22.505] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:22.565] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:22.626] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I don’t do drugs actually haha so maybe I haven’t done enough drugs ","created_at":1759429796,"id":"a63f4b35d542da39936f5b6feac2da094e889f11196e8389a8ac9bcb3e711e8b","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"877a6edc0e7375aa94e2e86ad4e171da10888c2630d6184959f74a1b582adcc5b0903629a57d98ce2a91cc3c7d4c82b20a99e562fdd2ad338316e3fb04df6780","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["e","a3c2f2a587d4c3b3e7624f775682717b19a87c455b2691ccdca85eb45978a5a2","","reply"],["p","bea135f01ee6182b8618acaaa5eefd5271f22d5c8b2827413fe894a720051c36","","mention"]]}] +[14:30:22.687] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"りとりんも類人猿だよな","created_at":1759429796,"id":"d0c4c00c8bd8bf354a149ff6f14f809dc499804efbf85068008b4519e35f3a13","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d51b948d5afc24adff50f481d2e609f82cdb20d2771e21b74b500d84217fe214f70c4b33b35985c7a9eda06c7d61e5d9bcec4915dac203dc397f3cab6aa8835a","tags":[]}] +[14:30:22.747] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BAD BITCHES \nhttps://images2.imgbox.com/2e/f8/4jAqkYx5_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429786,"id":"8f145c80d1b6c0a69910617ff561f5ce65268b8939031fa175edb9b800b1cad4","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"d4736f44e4f5ca906496c36dbc50fddbf30e6fa3bc9d53d8b99dcfcb1fa380ac9cf141b29762bb7cd1ba1942b195a5b2c442369189a00aba192f272c9f73d57e","tags":[]}] +[14:30:22.808] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:22.868] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:22.929] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:30:22.990] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:23.050] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:23.111] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:23.136] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:23.197] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:23.257] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:23.318] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:23.378] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:23.439] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:24.164] RECV nos.lol:443: 9b45a321d9"],["p","0114bb11dd8eb89bfb40669509b2a5a473d27126e27acae58257f2fd7cd95776"],["p","21c0f7a430 +[14:30:24.224] RECV nos.lol:443: cf74b7fc1d796c367771125f992a106a00273b2f6c8580171c0d"],[ +[14:30:25.397] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:25.397] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:25.397] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:25.397] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:25.729] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:30:25.790] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:30:25.850] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:25.911] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:25.971] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:26.032] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:26.092] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:26.153] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I don’t do drugs actually haha so maybe I haven’t done enough drugs ","created_at":1759429796,"id":"a63f4b35d542da39936f5b6feac2da094e889f11196e8389a8ac9bcb3e711e8b","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"877a6edc0e7375aa94e2e86ad4e171da10888c2630d6184959f74a1b582adcc5b0903629a57d98ce2a91cc3c7d4c82b20a99e562fdd2ad338316e3fb04df6780","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["e","a3c2f2a587d4c3b3e7624f775682717b19a87c455b2691ccdca85eb45978a5a2","","reply"],["p","bea135f01ee6182b8618acaaa5eefd5271f22d5c8b2827413fe894a720051c36","","mention"]]}] +[14:30:26.213] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"りとりんも類人猿だよな","created_at":1759429796,"id":"d0c4c00c8bd8bf354a149ff6f14f809dc499804efbf85068008b4519e35f3a13","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d51b948d5afc24adff50f481d2e609f82cdb20d2771e21b74b500d84217fe214f70c4b33b35985c7a9eda06c7d61e5d9bcec4915dac203dc397f3cab6aa8835a","tags":[]}] +[14:30:26.274] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BAD BITCHES \nhttps://images2.imgbox.com/2e/f8/4jAqkYx5_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429786,"id":"8f145c80d1b6c0a69910617ff561f5ce65268b8939031fa175edb9b800b1cad4","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"d4736f44e4f5ca906496c36dbc50fddbf30e6fa3bc9d53d8b99dcfcb1fa380ac9cf141b29762bb7cd1ba1942b195a5b2c442369189a00aba192f272c9f73d57e","tags":[]}] +[14:30:26.334] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:26.395] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:26.455] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:30:26.515] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:26.576] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:26.636] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:26.697] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:26.757] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:26.818] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:26.878] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:26.939] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:26.999] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:27.060] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429824,"id":"a51292e4aa01768e687836a7468fcbf6845227ce834f3aca420c4806068f43dd","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"d00b404a61b77029b7b97a018c5c8a2833668fbf84ea8685ee8c7244a14a0088512f18a03b2b18471759fc5cf6d99a7babea881d751f577bd78726b2162eb461","tags":[["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"]]}] +[14:30:27.785] RECV nos.lol:443: 9b45a321d9"],["p","0114bb11dd8eb89bfb40669509b2a5a473d27126e27acae58257f2fd7cd95776"],["p","21c0f7a430 +[14:30:27.845] RECV nos.lol:443: cf74b7fc1d796c367771125f992a106a00273b2f6c8580171c0d"],[ +[14:30:28.787] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:28.787] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:28.787] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:28.787] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:28.938] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:30:28.999] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:30:29.060] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:30:29.120] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:29.181] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:29.241] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:29.302] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:29.362] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:29.423] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I don’t do drugs actually haha so maybe I haven’t done enough drugs ","created_at":1759429796,"id":"a63f4b35d542da39936f5b6feac2da094e889f11196e8389a8ac9bcb3e711e8b","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"877a6edc0e7375aa94e2e86ad4e171da10888c2630d6184959f74a1b582adcc5b0903629a57d98ce2a91cc3c7d4c82b20a99e562fdd2ad338316e3fb04df6780","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["e","a3c2f2a587d4c3b3e7624f775682717b19a87c455b2691ccdca85eb45978a5a2","","reply"],["p","bea135f01ee6182b8618acaaa5eefd5271f22d5c8b2827413fe894a720051c36","","mention"]]}] +[14:30:29.484] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"りとりんも類人猿だよな","created_at":1759429796,"id":"d0c4c00c8bd8bf354a149ff6f14f809dc499804efbf85068008b4519e35f3a13","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d51b948d5afc24adff50f481d2e609f82cdb20d2771e21b74b500d84217fe214f70c4b33b35985c7a9eda06c7d61e5d9bcec4915dac203dc397f3cab6aa8835a","tags":[]}] +[14:30:29.544] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:29.605] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:29.665] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:30:29.726] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:29.787] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:29.847] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:29.908] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:29.968] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:30.029] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:30.089] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:30.150] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:30.211] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:30.271] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429824,"id":"a51292e4aa01768e687836a7468fcbf6845227ce834f3aca420c4806068f43dd","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"d00b404a61b77029b7b97a018c5c8a2833668fbf84ea8685ee8c7244a14a0088512f18a03b2b18471759fc5cf6d99a7babea881d751f577bd78726b2162eb461","tags":[["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"]]}] +[14:30:30.996] RECV nos.lol:443: 9b45a321d9"],["p","0114bb11dd8eb89bfb40669509b2a5a473d27126e27acae58257f2fd7cd95776"],["p","21c0f7a430 +[14:30:31.056] RECV nos.lol:443: cf74b7fc1d796c367771125f992a106a00273b2f6c8580171c0d"],[ +[14:30:32.222] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:32.222] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:32.222] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:32.222] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:32.375] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:30:32.436] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:30:32.496] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:30:32.557] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:30:32.617] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:32.678] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:32.739] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:32.799] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:32.860] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:32.920] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I don’t do drugs actually haha so maybe I haven’t done enough drugs ","created_at":1759429796,"id":"a63f4b35d542da39936f5b6feac2da094e889f11196e8389a8ac9bcb3e711e8b","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"877a6edc0e7375aa94e2e86ad4e171da10888c2630d6184959f74a1b582adcc5b0903629a57d98ce2a91cc3c7d4c82b20a99e562fdd2ad338316e3fb04df6780","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["e","a3c2f2a587d4c3b3e7624f775682717b19a87c455b2691ccdca85eb45978a5a2","","reply"],["p","bea135f01ee6182b8618acaaa5eefd5271f22d5c8b2827413fe894a720051c36","","mention"]]}] +[14:30:32.981] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:33.042] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:33.102] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:30:33.128] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:33.188] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:33.249] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:33.309] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:33.370] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:33.430] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:33.491] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:33.551] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:33.612] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:33.672] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429824,"id":"a51292e4aa01768e687836a7468fcbf6845227ce834f3aca420c4806068f43dd","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"d00b404a61b77029b7b97a018c5c8a2833668fbf84ea8685ee8c7244a14a0088512f18a03b2b18471759fc5cf6d99a7babea881d751f577bd78726b2162eb461","tags":[["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"]]}] +[14:30:34.397] RECV nos.lol:443: 9b45a321d9"],["p","0114bb11dd8eb89bfb40669509b2a5a473d27126e27acae58257f2fd7cd95776"],["p","21c0f7a430 +[14:30:34.458] RECV nos.lol:443: cf74b7fc1d796c367771125f992a106a00273b2f6c8580171c0d"],[ +[14:30:35.433] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:35.433] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:35.433] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:35.433] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:35.584] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:30:35.645] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:30:35.705] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:30:35.766] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:30:35.826] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:35.887] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:35.947] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:36.008] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:36.068] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:36.129] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I don’t do drugs actually haha so maybe I haven’t done enough drugs ","created_at":1759429796,"id":"a63f4b35d542da39936f5b6feac2da094e889f11196e8389a8ac9bcb3e711e8b","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"877a6edc0e7375aa94e2e86ad4e171da10888c2630d6184959f74a1b582adcc5b0903629a57d98ce2a91cc3c7d4c82b20a99e562fdd2ad338316e3fb04df6780","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["e","a3c2f2a587d4c3b3e7624f775682717b19a87c455b2691ccdca85eb45978a5a2","","reply"],["p","bea135f01ee6182b8618acaaa5eefd5271f22d5c8b2827413fe894a720051c36","","mention"]]}] +[14:30:36.190] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:36.250] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:36.311] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:30:36.371] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:36.432] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:36.492] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:36.553] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:36.613] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:36.673] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:36.734] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:36.794] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:36.855] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:38.612] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:38.613] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:38.613] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:38.613] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:38.765] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:30:38.775] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:30:38.836] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:30:38.896] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:30:38.957] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:39.017] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:39.078] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:39.138] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:39.199] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:39.259] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I don’t do drugs actually haha so maybe I haven’t done enough drugs ","created_at":1759429796,"id":"a63f4b35d542da39936f5b6feac2da094e889f11196e8389a8ac9bcb3e711e8b","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"877a6edc0e7375aa94e2e86ad4e171da10888c2630d6184959f74a1b582adcc5b0903629a57d98ce2a91cc3c7d4c82b20a99e562fdd2ad338316e3fb04df6780","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["e","a3c2f2a587d4c3b3e7624f775682717b19a87c455b2691ccdca85eb45978a5a2","","reply"],["p","bea135f01ee6182b8618acaaa5eefd5271f22d5c8b2827413fe894a720051c36","","mention"]]}] +[14:30:39.320] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:39.380] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:39.441] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:30:39.501] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:39.562] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:39.622] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:39.683] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:39.743] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:39.804] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:39.864] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:39.925] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:39.985] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:42.247] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:42.247] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:42.247] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:42.248] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:42.400] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:30:42.461] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:30:42.521] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:30:42.582] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:30:42.642] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:30:42.703] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:42.763] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:42.824] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:42.884] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:42.945] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:43.005] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:43.066] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:43.091] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:30:43.152] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:43.212] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:43.273] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:43.333] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:43.394] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:43.454] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:43.515] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:43.576] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:43.636] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:45.394] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:45.394] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:45.394] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:45.394] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:45.545] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:30:45.606] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:30:45.666] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:30:45.727] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:30:45.787] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:30:45.848] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:45.909] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:45.969] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:46.030] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:46.090] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:46.151] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:46.211] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:46.272] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:30:46.332] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:46.393] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:46.453] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:46.514] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:46.574] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:46.635] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:46.695] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:46.756] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:46.816] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:46.877] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429843,"id":"2927ed4e940004cac93cff81ab541892b9ecff1a6bfc45cfe2e95fb0d0652278","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"83ba87c77d170f995b47660a27c8e8d00e5b1b335249db8753b148d39d5013653781e5f2448f95031287e35aa90bdd5100fb7996791d6bde68921d935c5da930","tags":[["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"]]}] +[14:30:48.641] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:48.641] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:48.641] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:48.641] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:48.793] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:30:48.804] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:30:48.864] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:30:48.925] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:30:48.985] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:30:49.046] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:49.106] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:49.167] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:49.227] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:49.288] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:49.348] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:49.409] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:49.469] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:30:49.530] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:49.590] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:49.651] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:49.711] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:49.772] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:49.832] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:49.893] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:49.953] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:50.014] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:50.074] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429843,"id":"2927ed4e940004cac93cff81ab541892b9ecff1a6bfc45cfe2e95fb0d0652278","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"83ba87c77d170f995b47660a27c8e8d00e5b1b335249db8753b148d39d5013653781e5f2448f95031287e35aa90bdd5100fb7996791d6bde68921d935c5da930","tags":[["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"]]}] +[14:30:51.837] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:51.837] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:51.837] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:51.837] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:51.988] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:30:52.049] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:30:52.109] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:30:52.170] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:30:52.230] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:30:52.291] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:52.351] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:52.412] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:52.472] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:52.533] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:52.593] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:52.654] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:52.714] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:30:52.775] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:52.835] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:52.896] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:52.956] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:53.017] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:53.077] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:53.103] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:53.163] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:53.224] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:53.465] RECV nos.lol:443: b450","kind":3,"pubkey":"e5237023a5c0929e7ae0e5128d41a8213138400ec110dbe9d8a29278f22b7c13","sig": +[14:30:53.767] RECV nos.lol:443: 68f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"], +[14:30:54.190] RECV nos.lol:443: 118ca7b62129d267f3d"],["p","2b349bb9ae581ab6092365a16aef15c0ffc8f1a593e22f79b04fdb122543c1f9"],["p +[14:30:54.491] RECV nos.lol:443: 7da5413aa0eeca0c21322"],["p","2f5de0003db84ecd5449128350c +[14:30:55.647] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:55.647] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:55.647] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:55.647] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:55.799] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:30:55.860] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:30:55.920] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:30:55.980] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:30:56.041] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:30:56.101] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:56.162] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:56.222] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:56.283] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:56.343] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:56.404] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:56.464] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:56.525] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:30:56.585] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:56.646] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:56.706] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:56.767] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:56.827] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:56.888] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:56.960] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:57.020] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:57.081] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:57.141] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:30:57.383] RECV nos.lol:443: b450","kind":3,"pubkey":"e5237023a5c0929e7ae0e5128d41a8213138400ec110dbe9d8a29278f22b7c13","sig": +[14:30:57.685] RECV nos.lol:443: 68f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"], +[14:30:58.108] RECV nos.lol:443: 118ca7b62129d267f3d"],["p","2b349bb9ae581ab6092365a16aef15c0ffc8f1a593e22f79b04fdb122543c1f9"],["p +[14:30:58.374] RECV nos.lol:443: 7da5413aa0eeca0c21322"],["p","2f5de0003db84ecd5449128350c +[14:30:59.529] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:59.530] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:59.530] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:59.530] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:59.682] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:30:59.742] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:30:59.803] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:30:59.863] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:30:59.924] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:30:59.984] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:31:00.045] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:31:00.105] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:00.165] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:31:00.226] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:31:00.286] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:00.347] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:00.407] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:00.468] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:00.528] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:00.589] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:31:00.649] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:00.710] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:00.770] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:00.831] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:00.891] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:00.952] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:01.012] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:01.254] RECV nos.lol:443: b450","kind":3,"pubkey":"e5237023a5c0929e7ae0e5128d41a8213138400ec110dbe9d8a29278f22b7c13","sig": +[14:31:01.556] RECV nos.lol:443: 68f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"], +[14:31:01.978] RECV nos.lol:443: 118ca7b62129d267f3d"],["p","2b349bb9ae581ab6092365a16aef15c0ffc8f1a593e22f79b04fdb122543c1f9"],["p +[14:31:02.279] RECV nos.lol:443: 7da5413aa0eeca0c21322"],["p","2f5de0003db84ecd5449128350c +[14:31:03.915] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:03.915] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:03.915] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:03.915] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:04.087] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:04.147] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:04.207] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:31:04.268] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:31:04.328] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:31:04.389] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:31:04.449] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:31:04.510] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:04.570] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:31:04.631] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:31:04.691] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:04.752] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:04.812] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:04.873] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:04.933] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:04.994] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:05.054] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:31:05.115] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:05.175] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:05.236] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:05.297] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:05.357] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:05.418] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:05.479] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:06.144] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:07.053] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:07.054] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:07.054] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:07.054] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:07.205] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:07.265] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:07.326] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:31:07.386] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:31:07.447] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:31:07.508] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:31:07.568] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:31:07.629] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:07.689] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:31:07.749] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:31:07.810] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:07.870] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:07.931] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:07.991] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:08.052] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:08.077] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:08.138] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:31:08.198] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:08.259] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:08.319] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:08.380] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:08.440] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:08.501] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:08.561] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:09.226] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:10.137] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:10.137] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:10.137] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:10.137] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:10.294] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:10.355] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:10.416] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:10.476] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:31:10.537] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:31:10.597] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:31:10.658] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:31:10.719] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:31:10.779] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:10.840] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:31:10.900] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:10.961] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:11.021] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:11.082] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:11.143] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:11.203] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:11.264] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:31:11.324] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:11.385] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:11.445] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:11.506] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:11.566] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:11.627] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:11.688] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:12.352] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:13.265] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:13.265] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:13.265] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:13.265] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:13.416] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:13.426] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:13.487] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:13.547] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:31:13.608] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:31:13.668] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:31:13.729] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:31:13.790] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:31:13.850] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:13.911] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:31:13.971] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:14.032] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:14.092] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:14.153] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:14.213] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:14.274] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:14.334] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:31:14.395] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:14.455] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:14.516] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:14.576] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:14.637] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:14.697] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:14.758] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:15.422] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:16.341] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:16.341] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:16.341] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:16.341] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:16.493] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:16.553] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:16.614] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:16.674] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:31:16.735] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:31:16.795] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:31:16.856] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:31:16.916] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:31:16.978] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:17.038] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:31:17.099] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:17.159] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:17.220] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:17.280] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:17.341] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:17.401] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:17.462] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:31:17.522] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:17.583] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:17.643] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:17.704] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:17.765] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:17.825] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:17.886] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:18.515] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:19.428] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:19.428] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:19.428] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:19.428] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:19.734] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:31:19.794] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:19.855] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:19.915] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:19.976] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:20.036] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:31:20.097] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:31:20.158] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:31:20.218] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:31:20.279] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:31:20.339] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:20.400] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:20.461] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:20.521] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:20.582] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:20.642] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:20.703] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:31:20.763] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:20.824] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:20.884] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:20.945] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:21.005] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:21.066] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:21.126] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:21.790] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:22.706] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:22.706] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:22.706] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:22.706] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:22.858] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:31:22.919] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:22.979] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:23.040] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:23.100] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:23.126] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:31:23.186] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:31:23.247] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:31:23.307] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:31:23.368] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:31:23.428] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:23.489] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:23.549] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:23.610] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:23.670] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:23.731] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:23.791] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:31:23.852] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:23.912] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:23.973] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:24.033] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:24.094] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:24.154] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:24.215] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:24.880] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:25.796] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:25.796] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:25.796] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:25.796] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:25.958] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:31:26.018] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:26.079] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:26.139] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:26.200] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:26.260] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:31:26.321] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:31:26.381] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:31:26.442] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:31:26.502] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:31:26.563] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:26.624] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:26.684] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:26.745] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:26.805] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:26.866] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:26.926] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:31:26.987] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:27.047] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:27.108] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:27.168] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:27.229] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:27.290] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:27.350] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:28.015] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:28.895] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:28.895] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:28.895] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:28.895] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:29.047] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:31:29.108] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:31:29.168] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:29.229] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:29.289] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:29.350] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:29.410] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:31:29.471] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:31:29.531] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:31:29.592] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:31:29.652] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:29.713] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Left vs. Right, Post-Charlie Kirk: A Rebuttal to Greg Conte’s “Keith Woods and the Jews’ New Class War”\n\nFrom Counter Currents\n\n1,201 words I had major disagreements with Charlie Kirk on immigration and Israel, as I do with much of mainstream conservatism. In fact, my first article was about roasting Charlie at UCLA during the Groyper War. But we fought each other with words, not bullets. After the death of Charlie Kirk, many on the Right […]\n\nOct 2nd 2025 2:12pm EDT\n\nSource Link: https://counter-currents.com/2025/10/left-vs-right-post-charlie-kirk-a-rebuttal-to-greg-contes-keith-woods-and-the-jews-new-class-war/\n\nInternet Archive Link: https://web.archive.org/web/20251002181641/https://counter-currents.com/2025/10/left-vs-right-post-charlie-kirk-a-rebuttal-to-greg-contes-keith-woods-and-the-jews-new-class-war/\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044387","created_at":1759429828,"id":"c6e3b98759ff015e2c5ebd0077b32d4f5c8994b7d73eacdd1ddffa91c759e5a5","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"a1d38bad0dbb908ffc7a38e6f144fd73a9a3b01882713f916b32d05d62e6bf36e87e379762a97eb53c245d504ed164fe14530c902d0b94cd5b10bdbecfb09770","tags":[]}] +[14:31:29.773] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:29.834] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:29.894] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:29.955] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:30.015] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:30.076] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:31:30.136] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:30.197] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:30.257] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:30.318] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:30.378] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:30.439] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:30.500] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:31.164] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:32.079] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:32.079] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:32.079] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:32.079] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:32.232] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:31:32.292] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:31:32.353] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:31:32.413] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:31:32.474] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:32.534] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:32.595] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:32.655] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:32.716] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:31:32.776] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Left vs. Right, Post-Charlie Kirk: A Rebuttal to Greg Conte’s “Keith Woods and the Jews’ New Class War”\n\nFrom Counter Currents\n\n1,201 words I had major disagreements with Charlie Kirk on immigration and Israel, as I do with much of mainstream conservatism. In fact, my first article was about roasting Charlie at UCLA during the Groyper War. But we fought each other with words, not bullets. After the death of Charlie Kirk, many on the Right […]\n\nOct 2nd 2025 2:12pm EDT\n\nSource Link: https://counter-currents.com/2025/10/left-vs-right-post-charlie-kirk-a-rebuttal-to-greg-contes-keith-woods-and-the-jews-new-class-war/\n\nInternet Archive Link: https://web.archive.org/web/20251002181641/https://counter-currents.com/2025/10/left-vs-right-post-charlie-kirk-a-rebuttal-to-greg-contes-keith-woods-and-the-jews-new-class-war/\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044387","created_at":1759429828,"id":"c6e3b98759ff015e2c5ebd0077b32d4f5c8994b7d73eacdd1ddffa91c759e5a5","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"a1d38bad0dbb908ffc7a38e6f144fd73a9a3b01882713f916b32d05d62e6bf36e87e379762a97eb53c245d504ed164fe14530c902d0b94cd5b10bdbecfb09770","tags":[]}] +[14:31:32.837] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:32.897] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:31:32.958] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:31:33.018] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:33.079] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:33.104] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:33.165] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:33.225] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:33.286] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:33.346] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:33.407] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:33.467] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:33.528] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429891,"id":"8a2dd902fdbd8138581fa9c76f76a2569749577bbc0da41ec04099dede30d14c","kind":3,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"da0f621b4831e83706c7cd7458874d715cadd4654960637b75c02172ba06a4c6763a69b66802115476ae4c45fd7b2ee8d741e70bdab4b4d93ebf208591288f5c","tags":[["p","20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:33.589] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:33.650] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:34.314] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:35.226] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:35.226] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:35.227] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:35.227] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:35.378] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:31:35.438] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:31:35.499] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:31:35.559] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:31:35.620] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:35.680] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:35.741] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:35.801] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:35.862] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:31:35.922] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Left vs. Right, Post-Charlie Kirk: A Rebuttal to Greg Conte’s “Keith Woods and the Jews’ New Class War”\n\nFrom Counter Currents\n\n1,201 words I had major disagreements with Charlie Kirk on immigration and Israel, as I do with much of mainstream conservatism. In fact, my first article was about roasting Charlie at UCLA during the Groyper War. But we fought each other with words, not bullets. After the death of Charlie Kirk, many on the Right […]\n\nOct 2nd 2025 2:12pm EDT\n\nSource Link: https://counter-currents.com/2025/10/left-vs-right-post-charlie-kirk-a-rebuttal-to-greg-contes-keith-woods-and-the-jews-new-class-war/\n\nInternet Archive Link: https://web.archive.org/web/20251002181641/https://counter-currents.com/2025/10/left-vs-right-post-charlie-kirk-a-rebuttal-to-greg-contes-keith-woods-and-the-jews-new-class-war/\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044387","created_at":1759429828,"id":"c6e3b98759ff015e2c5ebd0077b32d4f5c8994b7d73eacdd1ddffa91c759e5a5","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"a1d38bad0dbb908ffc7a38e6f144fd73a9a3b01882713f916b32d05d62e6bf36e87e379762a97eb53c245d504ed164fe14530c902d0b94cd5b10bdbecfb09770","tags":[]}] +[14:31:35.983] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:36.043] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:31:36.104] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:31:36.164] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:36.225] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:36.285] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:36.346] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:36.406] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:36.467] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:36.527] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:36.588] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:36.648] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:36.709] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429891,"id":"8a2dd902fdbd8138581fa9c76f76a2569749577bbc0da41ec04099dede30d14c","kind":3,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"da0f621b4831e83706c7cd7458874d715cadd4654960637b75c02172ba06a4c6763a69b66802115476ae4c45fd7b2ee8d741e70bdab4b4d93ebf208591288f5c","tags":[["p","20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:36.770] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:36.830] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:37.495] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:38.412] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:38.412] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:38.412] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:38.412] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:38.567] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root"],["p","adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1"],["r","wss://relay.primal.net/"]]}] +[14:31:38.577] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:31:38.637] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:31:38.698] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:31:38.758] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:31:38.819] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:38.879] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:38.940] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:39.000] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:39.061] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:31:39.121] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:39.182] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:31:39.242] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:31:39.303] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:39.363] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:39.424] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:39.484] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:39.545] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:39.605] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:39.666] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:39.726] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:39.787] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:39.847] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429891,"id":"8a2dd902fdbd8138581fa9c76f76a2569749577bbc0da41ec04099dede30d14c","kind":3,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"da0f621b4831e83706c7cd7458874d715cadd4654960637b75c02172ba06a4c6763a69b66802115476ae4c45fd7b2ee8d741e70bdab4b4d93ebf208591288f5c","tags":[["p","20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:39.908] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:39.968] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:40.632] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:41.541] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:41.542] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:41.542] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:41.542] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:41.696] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root"],["p","adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1"],["r","wss://relay.primal.net/"]]}] +[14:31:41.756] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:31:41.817] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:31:41.877] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:31:41.937] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:31:41.998] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:42.058] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:42.119] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:42.179] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:42.240] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:31:42.301] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:42.361] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:31:42.422] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:31:42.482] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:42.543] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:42.603] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:42.664] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:42.725] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:42.785] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:42.845] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:42.906] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:42.966] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:43.027] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429891,"id":"8a2dd902fdbd8138581fa9c76f76a2569749577bbc0da41ec04099dede30d14c","kind":3,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"da0f621b4831e83706c7cd7458874d715cadd4654960637b75c02172ba06a4c6763a69b66802115476ae4c45fd7b2ee8d741e70bdab4b4d93ebf208591288f5c","tags":[["p","20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:43.088] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:43.113] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:43.778] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:44.698] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:44.698] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:44.698] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:44.698] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:44.853] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root"],["p","adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1"],["r","wss://relay.primal.net/"]]}] +[14:31:44.914] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:31:44.974] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:31:45.034] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:31:45.095] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:31:45.156] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:45.216] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:45.276] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:45.337] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:45.397] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:31:45.458] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:45.518] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:31:45.579] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:31:45.640] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:45.700] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:45.761] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:45.821] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:45.882] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:45.942] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:46.003] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:46.064] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:46.124] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:46.185] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429891,"id":"8a2dd902fdbd8138581fa9c76f76a2569749577bbc0da41ec04099dede30d14c","kind":3,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"da0f621b4831e83706c7cd7458874d715cadd4654960637b75c02172ba06a4c6763a69b66802115476ae4c45fd7b2ee8d741e70bdab4b4d93ebf208591288f5c","tags":[["p","20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:46.246] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:46.306] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:46.971] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:47.886] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:47.886] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:47.886] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:47.886] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:48.038] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:31:48.099] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root"],["p","adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1"],["r","wss://relay.primal.net/"]]}] +[14:31:48.124] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:31:48.185] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:31:48.245] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:31:48.306] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:31:48.366] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:48.427] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:48.487] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:48.548] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:48.608] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:48.669] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:31:48.729] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:31:48.790] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:48.850] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:48.911] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:48.971] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:49.032] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:49.092] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:49.153] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:49.213] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:49.274] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:49.334] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429891,"id":"8a2dd902fdbd8138581fa9c76f76a2569749577bbc0da41ec04099dede30d14c","kind":3,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"da0f621b4831e83706c7cd7458874d715cadd4654960637b75c02172ba06a4c6763a69b66802115476ae4c45fd7b2ee8d741e70bdab4b4d93ebf208591288f5c","tags":[["p","20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:49.395] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:49.455] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:50.119] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:51.228] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:51.228] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:51.228] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:51.228] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:51.379] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:31:51.440] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:31:51.501] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root"],["p","adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1"],["r","wss://relay.primal.net/"]]}] +[14:31:51.561] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:31:51.622] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:31:51.682] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:31:51.743] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:31:51.803] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:51.864] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:51.960] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:52.021] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:52.082] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:31:52.142] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:31:52.203] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:31:52.263] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:52.324] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:52.384] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:52.445] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:52.505] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:52.566] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:52.626] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:52.687] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:52.747] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:52.808] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429891,"id":"8a2dd902fdbd8138581fa9c76f76a2569749577bbc0da41ec04099dede30d14c","kind":3,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"da0f621b4831e83706c7cd7458874d715cadd4654960637b75c02172ba06a4c6763a69b66802115476ae4c45fd7b2ee8d741e70bdab4b4d93ebf208591288f5c","tags":[["p","20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:52.869] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:52.929] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:53.559] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:54.664] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:54.664] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:54.664] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:54.664] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:54.816] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:31:54.876] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:31:54.937] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:31:54.997] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root"],["p","adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1"],["r","wss://relay.primal.net/"]]}] +[14:31:55.058] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:31:55.118] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:31:55.179] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:31:55.239] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:31:55.300] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:55.360] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:55.421] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:55.481] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:31:55.542] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:31:55.602] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:55.663] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:55.723] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:55.784] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:55.844] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:55.905] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:55.965] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:56.026] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:56.086] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:56.147] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429891,"id":"8a2dd902fdbd8138581fa9c76f76a2569749577bbc0da41ec04099dede30d14c","kind":3,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"da0f621b4831e83706c7cd7458874d715cadd4654960637b75c02172ba06a4c6763a69b66802115476ae4c45fd7b2ee8d741e70bdab4b4d93ebf208591288f5c","tags":[["p","20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:56.208] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:56.268] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:56.933] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:57.888] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:57.888] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:57.888] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:57.888] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:58.040] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:31:58.100] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:31:58.126] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:31:58.186] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root"],["p","adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1"],["r","wss://relay.primal.net/"]]}] +[14:31:58.247] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:31:58.307] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:31:58.368] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:31:58.428] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:31:58.489] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:58.549] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:58.610] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:58.671] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:31:58.731] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:31:58.792] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:58.852] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:58.913] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:58.974] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:59.034] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:59.095] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:59.155] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:59.216] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:59.276] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:59.337] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429891,"id":"8a2dd902fdbd8138581fa9c76f76a2569749577bbc0da41ec04099dede30d14c","kind":3,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"da0f621b4831e83706c7cd7458874d715cadd4654960637b75c02172ba06a4c6763a69b66802115476ae4c45fd7b2ee8d741e70bdab4b4d93ebf208591288f5c","tags":[["p","20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:59.398] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:59.459] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:32:00.123] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:32:01.045] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:01.045] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:01.045] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:01.045] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:01.197] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:32:01.257] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:32:01.318] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:32:01.378] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root"],["p","adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1"],["r","wss://relay.primal.net/"]]}] +[14:32:01.439] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:32:01.499] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:32:01.560] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:32:01.620] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:32:01.681] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:32:01.741] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:32:01.802] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:01.862] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:01.923] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:01.983] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:02.044] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:02.104] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:02.165] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:02.225] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:02.286] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:02.346] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:02.407] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:02.467] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:02.528] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429891,"id":"8a2dd902fdbd8138581fa9c76f76a2569749577bbc0da41ec04099dede30d14c","kind":3,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"da0f621b4831e83706c7cd7458874d715cadd4654960637b75c02172ba06a4c6763a69b66802115476ae4c45fd7b2ee8d741e70bdab4b4d93ebf208591288f5c","tags":[["p","20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:32:02.588] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:32:02.649] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:32:03.279] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:32:04.349] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:04.349] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:04.349] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:04.349] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:04.500] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:32:04.561] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:32:04.621] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:32:04.682] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root"],["p","adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1"],["r","wss://relay.primal.net/"]]}] +[14:32:04.742] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:32:04.803] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:32:04.863] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:32:04.924] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:32:04.984] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:32:05.045] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:32:05.106] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:05.166] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:05.227] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:05.287] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:05.348] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:05.409] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:05.469] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:05.529] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:05.590] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:05.650] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:05.711] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:05.771] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:05.832] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429891,"id":"8a2dd902fdbd8138581fa9c76f76a2569749577bbc0da41ec04099dede30d14c","kind":3,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"da0f621b4831e83706c7cd7458874d715cadd4654960637b75c02172ba06a4c6763a69b66802115476ae4c45fd7b2ee8d741e70bdab4b4d93ebf208591288f5c","tags":[["p","20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:32:05.893] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:32:05.953] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:32:06.618] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:32:07.531] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:07.531] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:07.531] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:07.531] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:07.863] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ah, weird. Maybe I should include an habla link, next time. 🤔","created_at":1759429928,"id":"bb111ccbd8387abd11985dc06a6c22a9ac74abb49707720779ec1a7dc572ba1a","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"01ca2525324d4692ce6392d2b8f07afee807f01b1ee12c7464e2c95f9b6a388392c01084041cd1ff350a11c18afe1ec36d51e73622ca0ebc3265e67aff46a575","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nos.lol/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","eb90457ec19b35bfa43a85c4559bf5aa7821f1f8ac831b2f575388e6fef42850","wss://aggr.nostr.land/","reply","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"],["p","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"]]}] +[14:32:07.923] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:32:07.984] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:32:08.044] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:32:08.105] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root"],["p","adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1"],["r","wss://relay.primal.net/"]]}] +[14:32:08.130] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:32:08.191] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:32:08.251] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:32:08.312] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:32:08.372] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:32:08.433] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:08.493] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:08.554] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:08.614] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:08.675] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:08.735] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:08.795] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:08.856] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:08.916] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:08.977] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:09.037] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:09.098] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:09.159] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429891,"id":"8a2dd902fdbd8138581fa9c76f76a2569749577bbc0da41ec04099dede30d14c","kind":3,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"da0f621b4831e83706c7cd7458874d715cadd4654960637b75c02172ba06a4c6763a69b66802115476ae4c45fd7b2ee8d741e70bdab4b4d93ebf208591288f5c","tags":[["p","20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:32:09.219] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:32:09.280] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:32:09.944] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:32:10.860] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:10.860] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:10.860] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:10.860] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:11.012] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Maybe I'm missing something, but how is it hexadecimal with only 14 sides? ","created_at":1759429928,"id":"997c0476afbd87cb85c9e26ed0e12b512f1872795887476ae6465e8bc20e7abb","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"c58d391424edb86b7685549fcdb99e155435adbfc89903276fef7dfa209455efa7ad10d111de004e67bca1e3f2139c817bd51685fd167c32c6197048622237e2","tags":[["alt","A short note: Maybe I'm missing something, but how is it hexadec..."],["e","43118b01dbefa5a66a8e6edf4766a0d3d36a5184d9de19107e1c8280d07f2f1a","wss://relay.damus.io/","root","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075"],["p","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075","wss://relay.damus.io/"]]}] +[14:32:11.072] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ah, weird. Maybe I should include an habla link, next time. 🤔","created_at":1759429928,"id":"bb111ccbd8387abd11985dc06a6c22a9ac74abb49707720779ec1a7dc572ba1a","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"01ca2525324d4692ce6392d2b8f07afee807f01b1ee12c7464e2c95f9b6a388392c01084041cd1ff350a11c18afe1ec36d51e73622ca0ebc3265e67aff46a575","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nos.lol/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","eb90457ec19b35bfa43a85c4559bf5aa7821f1f8ac831b2f575388e6fef42850","wss://aggr.nostr.land/","reply","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"],["p","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"]]}] +[14:32:11.133] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A nip05 provider used by a bot farm.","created_at":1759429925,"id":"d9b485f34c28de324f3f0412e998b65f3c41ff102a1a7534c8a3243177357798","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"569429fe427af1e5350676355447da2204fdaf623c82966b795cf677217440197d5f5b5123cea9df61baa1a50ad5ad892c7abd6b5711a7269448c95ab1182fbc","tags":[["alt","A short note: A nip05 provider used by a bot farm."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","cc67a20a5a2f10677227fc13db81f8b3c90682fe9c0149ed83c631095a3496b2","wss://nostr.bitcoiner.social/","reply","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7","wss://relay.nostr.band/"]]}] +[14:32:11.194] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:32:11.254] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:32:11.315] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:32:11.375] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root"],["p","adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1"],["r","wss://relay.primal.net/"]]}] +[14:32:11.436] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:32:11.497] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:32:11.557] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:32:11.618] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:11.678] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:11.739] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:11.799] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:11.860] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:11.921] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:11.981] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:12.042] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:12.102] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:12.163] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:12.223] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:12.283] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:12.344] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429891,"id":"8a2dd902fdbd8138581fa9c76f76a2569749577bbc0da41ec04099dede30d14c","kind":3,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"da0f621b4831e83706c7cd7458874d715cadd4654960637b75c02172ba06a4c6763a69b66802115476ae4c45fd7b2ee8d741e70bdab4b4d93ebf208591288f5c","tags":[["p","20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:32:12.404] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:32:12.465] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:32:13.095] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:32:14.009] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:14.010] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:14.010] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:14.010] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:14.342] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Maybe I'm missing something, but how is it hexadecimal with only 14 sides? ","created_at":1759429928,"id":"997c0476afbd87cb85c9e26ed0e12b512f1872795887476ae6465e8bc20e7abb","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"c58d391424edb86b7685549fcdb99e155435adbfc89903276fef7dfa209455efa7ad10d111de004e67bca1e3f2139c817bd51685fd167c32c6197048622237e2","tags":[["alt","A short note: Maybe I'm missing something, but how is it hexadec..."],["e","43118b01dbefa5a66a8e6edf4766a0d3d36a5184d9de19107e1c8280d07f2f1a","wss://relay.damus.io/","root","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075"],["p","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075","wss://relay.damus.io/"]]}] +[14:32:14.402] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ah, weird. Maybe I should include an habla link, next time. 🤔","created_at":1759429928,"id":"bb111ccbd8387abd11985dc06a6c22a9ac74abb49707720779ec1a7dc572ba1a","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"01ca2525324d4692ce6392d2b8f07afee807f01b1ee12c7464e2c95f9b6a388392c01084041cd1ff350a11c18afe1ec36d51e73622ca0ebc3265e67aff46a575","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nos.lol/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","eb90457ec19b35bfa43a85c4559bf5aa7821f1f8ac831b2f575388e6fef42850","wss://aggr.nostr.land/","reply","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"],["p","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"]]}] +[14:32:14.463] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A nip05 provider used by a bot farm.","created_at":1759429925,"id":"d9b485f34c28de324f3f0412e998b65f3c41ff102a1a7534c8a3243177357798","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"569429fe427af1e5350676355447da2204fdaf623c82966b795cf677217440197d5f5b5123cea9df61baa1a50ad5ad892c7abd6b5711a7269448c95ab1182fbc","tags":[["alt","A short note: A nip05 provider used by a bot farm."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","cc67a20a5a2f10677227fc13db81f8b3c90682fe9c0149ed83c631095a3496b2","wss://nostr.bitcoiner.social/","reply","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7","wss://relay.nostr.band/"]]}] +[14:32:14.523] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:32:14.584] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:32:14.644] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:32:14.705] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root"],["p","adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1"],["r","wss://relay.primal.net/"]]}] +[14:32:14.765] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:32:14.826] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:32:14.886] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:32:14.947] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:15.007] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:15.068] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:15.128] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:15.189] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:15.249] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:15.310] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:15.370] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:15.431] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:15.491] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:15.552] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:15.612] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:15.673] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429891,"id":"8a2dd902fdbd8138581fa9c76f76a2569749577bbc0da41ec04099dede30d14c","kind":3,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"da0f621b4831e83706c7cd7458874d715cadd4654960637b75c02172ba06a4c6763a69b66802115476ae4c45fd7b2ee8d741e70bdab4b4d93ebf208591288f5c","tags":[["p","20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:32:15.734] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:32:15.794] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:32:16.458] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:32:17.385] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:17.385] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:17.385] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:17.385] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:17.538] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"First, run on banks, people. \nnostr:nevent1qqs9wjyayud3h5wkefm6dnpcdhac2f90x0davu9n7cnjhcfjk9hv3rqpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczyz4cewqwtep2t3zleu9xc2t7wk93zw58m2js9zcskg4c4h6njh2syqcyqqqqqqg20q2a3","created_at":1759429935,"id":"114b4567ffbaddc02d305db741146d19e0d65d4c427e8a29ba75e83675c06ad2","kind":1,"pubkey":"ec9bd7465546ba061f5dfde716a4f20f3f27ecc28ca4870775e5e853df11a9d0","sig":"5821103c9f344e4b94dfbd40082aa809fafb934139bd48f3a9e529c1d00711bbb3f2572cceeda50aefc88d971126a63d2379e10cc003b06a159b184a68ebd535","tags":[["alt","A short note: First, run on banks, people. \nnostr:nevent1qqs9wjy..."],["p","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","wss://nos.lol/"],["q","57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","wss://relay.primal.net/","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502"]]}] +[14:32:17.598] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Maybe I'm missing something, but how is it hexadecimal with only 14 sides? ","created_at":1759429928,"id":"997c0476afbd87cb85c9e26ed0e12b512f1872795887476ae6465e8bc20e7abb","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"c58d391424edb86b7685549fcdb99e155435adbfc89903276fef7dfa209455efa7ad10d111de004e67bca1e3f2139c817bd51685fd167c32c6197048622237e2","tags":[["alt","A short note: Maybe I'm missing something, but how is it hexadec..."],["e","43118b01dbefa5a66a8e6edf4766a0d3d36a5184d9de19107e1c8280d07f2f1a","wss://relay.damus.io/","root","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075"],["p","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075","wss://relay.damus.io/"]]}] +[14:32:17.659] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ah, weird. Maybe I should include an habla link, next time. 🤔","created_at":1759429928,"id":"bb111ccbd8387abd11985dc06a6c22a9ac74abb49707720779ec1a7dc572ba1a","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"01ca2525324d4692ce6392d2b8f07afee807f01b1ee12c7464e2c95f9b6a388392c01084041cd1ff350a11c18afe1ec36d51e73622ca0ebc3265e67aff46a575","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nos.lol/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","eb90457ec19b35bfa43a85c4559bf5aa7821f1f8ac831b2f575388e6fef42850","wss://aggr.nostr.land/","reply","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"],["p","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"]]}] +[14:32:17.719] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A nip05 provider used by a bot farm.","created_at":1759429925,"id":"d9b485f34c28de324f3f0412e998b65f3c41ff102a1a7534c8a3243177357798","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"569429fe427af1e5350676355447da2204fdaf623c82966b795cf677217440197d5f5b5123cea9df61baa1a50ad5ad892c7abd6b5711a7269448c95ab1182fbc","tags":[["alt","A short note: A nip05 provider used by a bot farm."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","cc67a20a5a2f10677227fc13db81f8b3c90682fe9c0149ed83c631095a3496b2","wss://nostr.bitcoiner.social/","reply","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7","wss://relay.nostr.band/"]]}] +[14:32:17.780] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:32:17.840] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:32:17.901] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:32:17.961] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root"],["p","adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1"],["r","wss://relay.primal.net/"]]}] +[14:32:18.021] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:32:18.082] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:32:18.107] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:18.168] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:32:18.229] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:18.289] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:18.350] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:18.412] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:18.472] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:18.533] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:18.593] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:18.654] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:18.715] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:18.775] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:19.561] RECV nos.lol:443: 9343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea +[14:32:21.208] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:21.208] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:21.208] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:21.208] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:21.359] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"3:32 「今夜は寝かせないよ」\n3:44 就寝","created_at":1759429939,"id":"2846d3c890c9017dfdfb404060047643441fb750924c4f1f88098669f5ae6e4d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6eb1d33d14fe21c9f23736d9fdcb8adf2527a2e2d7399a103bd54eeaf9cacbb861359fa7fab86c2b3cdebaf367a38b74081b06f091cceef54cb8ea5bfa901e41","tags":[]}] +[14:32:21.420] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"First, run on banks, people. \nnostr:nevent1qqs9wjyayud3h5wkefm6dnpcdhac2f90x0davu9n7cnjhcfjk9hv3rqpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczyz4cewqwtep2t3zleu9xc2t7wk93zw58m2js9zcskg4c4h6njh2syqcyqqqqqqg20q2a3","created_at":1759429935,"id":"114b4567ffbaddc02d305db741146d19e0d65d4c427e8a29ba75e83675c06ad2","kind":1,"pubkey":"ec9bd7465546ba061f5dfde716a4f20f3f27ecc28ca4870775e5e853df11a9d0","sig":"5821103c9f344e4b94dfbd40082aa809fafb934139bd48f3a9e529c1d00711bbb3f2572cceeda50aefc88d971126a63d2379e10cc003b06a159b184a68ebd535","tags":[["alt","A short note: First, run on banks, people. \nnostr:nevent1qqs9wjy..."],["p","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","wss://nos.lol/"],["q","57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","wss://relay.primal.net/","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502"]]}] +[14:32:21.480] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Maybe I'm missing something, but how is it hexadecimal with only 14 sides? ","created_at":1759429928,"id":"997c0476afbd87cb85c9e26ed0e12b512f1872795887476ae6465e8bc20e7abb","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"c58d391424edb86b7685549fcdb99e155435adbfc89903276fef7dfa209455efa7ad10d111de004e67bca1e3f2139c817bd51685fd167c32c6197048622237e2","tags":[["alt","A short note: Maybe I'm missing something, but how is it hexadec..."],["e","43118b01dbefa5a66a8e6edf4766a0d3d36a5184d9de19107e1c8280d07f2f1a","wss://relay.damus.io/","root","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075"],["p","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075","wss://relay.damus.io/"]]}] +[14:32:21.541] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ah, weird. Maybe I should include an habla link, next time. 🤔","created_at":1759429928,"id":"bb111ccbd8387abd11985dc06a6c22a9ac74abb49707720779ec1a7dc572ba1a","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"01ca2525324d4692ce6392d2b8f07afee807f01b1ee12c7464e2c95f9b6a388392c01084041cd1ff350a11c18afe1ec36d51e73622ca0ebc3265e67aff46a575","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nos.lol/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","eb90457ec19b35bfa43a85c4559bf5aa7821f1f8ac831b2f575388e6fef42850","wss://aggr.nostr.land/","reply","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"],["p","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"]]}] +[14:32:21.601] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A nip05 provider used by a bot farm.","created_at":1759429925,"id":"d9b485f34c28de324f3f0412e998b65f3c41ff102a1a7534c8a3243177357798","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"569429fe427af1e5350676355447da2204fdaf623c82966b795cf677217440197d5f5b5123cea9df61baa1a50ad5ad892c7abd6b5711a7269448c95ab1182fbc","tags":[["alt","A short note: A nip05 provider used by a bot farm."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","cc67a20a5a2f10677227fc13db81f8b3c90682fe9c0149ed83c631095a3496b2","wss://nostr.bitcoiner.social/","reply","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7","wss://relay.nostr.band/"]]}] +[14:32:21.662] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:32:21.722] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:32:21.783] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:32:21.843] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root"],["p","adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1"],["r","wss://relay.primal.net/"]]}] +[14:32:21.904] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:32:21.964] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:22.025] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:32:22.085] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:22.146] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:22.206] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:22.267] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:22.327] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:22.388] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:22.448] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:22.509] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:22.569] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:22.630] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:23.380] RECV nos.lol:443: 9343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea +[14:32:24.417] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:24.417] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:24.417] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:24.417] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:24.569] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"3:32 「今夜は寝かせないよ」\n3:44 就寝","created_at":1759429939,"id":"2846d3c890c9017dfdfb404060047643441fb750924c4f1f88098669f5ae6e4d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6eb1d33d14fe21c9f23736d9fdcb8adf2527a2e2d7399a103bd54eeaf9cacbb861359fa7fab86c2b3cdebaf367a38b74081b06f091cceef54cb8ea5bfa901e41","tags":[]}] +[14:32:24.629] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"First, run on banks, people. \nnostr:nevent1qqs9wjyayud3h5wkefm6dnpcdhac2f90x0davu9n7cnjhcfjk9hv3rqpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczyz4cewqwtep2t3zleu9xc2t7wk93zw58m2js9zcskg4c4h6njh2syqcyqqqqqqg20q2a3","created_at":1759429935,"id":"114b4567ffbaddc02d305db741146d19e0d65d4c427e8a29ba75e83675c06ad2","kind":1,"pubkey":"ec9bd7465546ba061f5dfde716a4f20f3f27ecc28ca4870775e5e853df11a9d0","sig":"5821103c9f344e4b94dfbd40082aa809fafb934139bd48f3a9e529c1d00711bbb3f2572cceeda50aefc88d971126a63d2379e10cc003b06a159b184a68ebd535","tags":[["alt","A short note: First, run on banks, people. \nnostr:nevent1qqs9wjy..."],["p","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","wss://nos.lol/"],["q","57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","wss://relay.primal.net/","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502"]]}] +[14:32:24.690] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Maybe I'm missing something, but how is it hexadecimal with only 14 sides? ","created_at":1759429928,"id":"997c0476afbd87cb85c9e26ed0e12b512f1872795887476ae6465e8bc20e7abb","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"c58d391424edb86b7685549fcdb99e155435adbfc89903276fef7dfa209455efa7ad10d111de004e67bca1e3f2139c817bd51685fd167c32c6197048622237e2","tags":[["alt","A short note: Maybe I'm missing something, but how is it hexadec..."],["e","43118b01dbefa5a66a8e6edf4766a0d3d36a5184d9de19107e1c8280d07f2f1a","wss://relay.damus.io/","root","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075"],["p","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075","wss://relay.damus.io/"]]}] +[14:32:24.751] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ah, weird. Maybe I should include an habla link, next time. 🤔","created_at":1759429928,"id":"bb111ccbd8387abd11985dc06a6c22a9ac74abb49707720779ec1a7dc572ba1a","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"01ca2525324d4692ce6392d2b8f07afee807f01b1ee12c7464e2c95f9b6a388392c01084041cd1ff350a11c18afe1ec36d51e73622ca0ebc3265e67aff46a575","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nos.lol/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","eb90457ec19b35bfa43a85c4559bf5aa7821f1f8ac831b2f575388e6fef42850","wss://aggr.nostr.land/","reply","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"],["p","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"]]}] +[14:32:24.811] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A nip05 provider used by a bot farm.","created_at":1759429925,"id":"d9b485f34c28de324f3f0412e998b65f3c41ff102a1a7534c8a3243177357798","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"569429fe427af1e5350676355447da2204fdaf623c82966b795cf677217440197d5f5b5123cea9df61baa1a50ad5ad892c7abd6b5711a7269448c95ab1182fbc","tags":[["alt","A short note: A nip05 provider used by a bot farm."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","cc67a20a5a2f10677227fc13db81f8b3c90682fe9c0149ed83c631095a3496b2","wss://nostr.bitcoiner.social/","reply","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7","wss://relay.nostr.band/"]]}] +[14:32:24.872] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:32:24.932] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:32:24.993] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:32:25.054] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root"],["p","adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1"],["r","wss://relay.primal.net/"]]}] +[14:32:25.114] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:32:25.175] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:25.235] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:32:25.296] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:25.356] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:25.417] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:25.477] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:25.538] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:25.599] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:25.659] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:25.720] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:25.780] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:25.841] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:26.626] RECV nos.lol:443: 9343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea +[14:32:27.659] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:27.660] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:27.660] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:27.660] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:27.811] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"3:32 「今夜は寝かせないよ」\n3:44 就寝","created_at":1759429939,"id":"2846d3c890c9017dfdfb404060047643441fb750924c4f1f88098669f5ae6e4d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6eb1d33d14fe21c9f23736d9fdcb8adf2527a2e2d7399a103bd54eeaf9cacbb861359fa7fab86c2b3cdebaf367a38b74081b06f091cceef54cb8ea5bfa901e41","tags":[]}] +[14:32:27.871] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"First, run on banks, people. \nnostr:nevent1qqs9wjyayud3h5wkefm6dnpcdhac2f90x0davu9n7cnjhcfjk9hv3rqpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczyz4cewqwtep2t3zleu9xc2t7wk93zw58m2js9zcskg4c4h6njh2syqcyqqqqqqg20q2a3","created_at":1759429935,"id":"114b4567ffbaddc02d305db741146d19e0d65d4c427e8a29ba75e83675c06ad2","kind":1,"pubkey":"ec9bd7465546ba061f5dfde716a4f20f3f27ecc28ca4870775e5e853df11a9d0","sig":"5821103c9f344e4b94dfbd40082aa809fafb934139bd48f3a9e529c1d00711bbb3f2572cceeda50aefc88d971126a63d2379e10cc003b06a159b184a68ebd535","tags":[["alt","A short note: First, run on banks, people. \nnostr:nevent1qqs9wjy..."],["p","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","wss://nos.lol/"],["q","57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","wss://relay.primal.net/","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502"]]}] +[14:32:27.932] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Maybe I'm missing something, but how is it hexadecimal with only 14 sides? ","created_at":1759429928,"id":"997c0476afbd87cb85c9e26ed0e12b512f1872795887476ae6465e8bc20e7abb","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"c58d391424edb86b7685549fcdb99e155435adbfc89903276fef7dfa209455efa7ad10d111de004e67bca1e3f2139c817bd51685fd167c32c6197048622237e2","tags":[["alt","A short note: Maybe I'm missing something, but how is it hexadec..."],["e","43118b01dbefa5a66a8e6edf4766a0d3d36a5184d9de19107e1c8280d07f2f1a","wss://relay.damus.io/","root","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075"],["p","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075","wss://relay.damus.io/"]]}] +[14:32:27.992] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ah, weird. Maybe I should include an habla link, next time. 🤔","created_at":1759429928,"id":"bb111ccbd8387abd11985dc06a6c22a9ac74abb49707720779ec1a7dc572ba1a","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"01ca2525324d4692ce6392d2b8f07afee807f01b1ee12c7464e2c95f9b6a388392c01084041cd1ff350a11c18afe1ec36d51e73622ca0ebc3265e67aff46a575","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nos.lol/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","eb90457ec19b35bfa43a85c4559bf5aa7821f1f8ac831b2f575388e6fef42850","wss://aggr.nostr.land/","reply","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"],["p","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"]]}] +[14:32:28.053] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A nip05 provider used by a bot farm.","created_at":1759429925,"id":"d9b485f34c28de324f3f0412e998b65f3c41ff102a1a7534c8a3243177357798","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"569429fe427af1e5350676355447da2204fdaf623c82966b795cf677217440197d5f5b5123cea9df61baa1a50ad5ad892c7abd6b5711a7269448c95ab1182fbc","tags":[["alt","A short note: A nip05 provider used by a bot farm."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","cc67a20a5a2f10677227fc13db81f8b3c90682fe9c0149ed83c631095a3496b2","wss://nostr.bitcoiner.social/","reply","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7","wss://relay.nostr.band/"]]}] +[14:32:28.078] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:32:28.139] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:32:28.199] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:32:28.260] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root"],["p","adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1"],["r","wss://relay.primal.net/"]]}] +[14:32:28.320] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:32:28.381] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:28.441] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:32:28.502] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:28.562] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:28.623] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:28.683] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:28.744] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:28.804] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:28.865] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:28.925] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:28.986] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:29.046] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:29.107] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429946,"id":"44077bd3722c5a8acbbd60fd31daa277fd8a528b14a34f1e65c080b02d89db7e","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"cfd8f226ca5d12b4ff57dcc72cecb0afa978f50cd1258d8080646d7d80912a35a6c0dce36e8ff4fe6a0dcccaf8e5de2aabe09c3686c282280d0d47e02c2c3008","tags":[["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"]]}] +[14:32:29.892] RECV nos.lol:443: 9343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea +[14:32:30.928] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:30.928] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:30.928] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:30.928] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:31.080] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"3:32 「今夜は寝かせないよ」\n3:44 就寝","created_at":1759429939,"id":"2846d3c890c9017dfdfb404060047643441fb750924c4f1f88098669f5ae6e4d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6eb1d33d14fe21c9f23736d9fdcb8adf2527a2e2d7399a103bd54eeaf9cacbb861359fa7fab86c2b3cdebaf367a38b74081b06f091cceef54cb8ea5bfa901e41","tags":[]}] +[14:32:31.140] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"First, run on banks, people. \nnostr:nevent1qqs9wjyayud3h5wkefm6dnpcdhac2f90x0davu9n7cnjhcfjk9hv3rqpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczyz4cewqwtep2t3zleu9xc2t7wk93zw58m2js9zcskg4c4h6njh2syqcyqqqqqqg20q2a3","created_at":1759429935,"id":"114b4567ffbaddc02d305db741146d19e0d65d4c427e8a29ba75e83675c06ad2","kind":1,"pubkey":"ec9bd7465546ba061f5dfde716a4f20f3f27ecc28ca4870775e5e853df11a9d0","sig":"5821103c9f344e4b94dfbd40082aa809fafb934139bd48f3a9e529c1d00711bbb3f2572cceeda50aefc88d971126a63d2379e10cc003b06a159b184a68ebd535","tags":[["alt","A short note: First, run on banks, people. \nnostr:nevent1qqs9wjy..."],["p","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","wss://nos.lol/"],["q","57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","wss://relay.primal.net/","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502"]]}] +[14:32:31.201] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Maybe I'm missing something, but how is it hexadecimal with only 14 sides? ","created_at":1759429928,"id":"997c0476afbd87cb85c9e26ed0e12b512f1872795887476ae6465e8bc20e7abb","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"c58d391424edb86b7685549fcdb99e155435adbfc89903276fef7dfa209455efa7ad10d111de004e67bca1e3f2139c817bd51685fd167c32c6197048622237e2","tags":[["alt","A short note: Maybe I'm missing something, but how is it hexadec..."],["e","43118b01dbefa5a66a8e6edf4766a0d3d36a5184d9de19107e1c8280d07f2f1a","wss://relay.damus.io/","root","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075"],["p","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075","wss://relay.damus.io/"]]}] +[14:32:31.261] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ah, weird. Maybe I should include an habla link, next time. 🤔","created_at":1759429928,"id":"bb111ccbd8387abd11985dc06a6c22a9ac74abb49707720779ec1a7dc572ba1a","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"01ca2525324d4692ce6392d2b8f07afee807f01b1ee12c7464e2c95f9b6a388392c01084041cd1ff350a11c18afe1ec36d51e73622ca0ebc3265e67aff46a575","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nos.lol/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","eb90457ec19b35bfa43a85c4559bf5aa7821f1f8ac831b2f575388e6fef42850","wss://aggr.nostr.land/","reply","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"],["p","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"]]}] +[14:32:31.322] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A nip05 provider used by a bot farm.","created_at":1759429925,"id":"d9b485f34c28de324f3f0412e998b65f3c41ff102a1a7534c8a3243177357798","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"569429fe427af1e5350676355447da2204fdaf623c82966b795cf677217440197d5f5b5123cea9df61baa1a50ad5ad892c7abd6b5711a7269448c95ab1182fbc","tags":[["alt","A short note: A nip05 provider used by a bot farm."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","cc67a20a5a2f10677227fc13db81f8b3c90682fe9c0149ed83c631095a3496b2","wss://nostr.bitcoiner.social/","reply","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7","wss://relay.nostr.band/"]]}] +[14:32:31.382] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:32:31.443] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:32:31.503] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:32:31.564] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root"],["p","adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1"],["r","wss://relay.primal.net/"]]}] +[14:32:31.624] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:32:31.685] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:31.745] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:32:31.806] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:31.867] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:31.927] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:31.987] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:32.048] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:32.108] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:32.169] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:32.229] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:32.290] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:32.350] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:32.411] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429946,"id":"44077bd3722c5a8acbbd60fd31daa277fd8a528b14a34f1e65c080b02d89db7e","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"cfd8f226ca5d12b4ff57dcc72cecb0afa978f50cd1258d8080646d7d80912a35a6c0dce36e8ff4fe6a0dcccaf8e5de2aabe09c3686c282280d0d47e02c2c3008","tags":[["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"]]}] +[14:32:33.161] RECV nos.lol:443: 9343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea +[14:32:34.195] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:34.195] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:34.195] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:34.195] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:34.504] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"3:32 「今夜は寝かせないよ」\n3:44 就寝","created_at":1759429939,"id":"2846d3c890c9017dfdfb404060047643441fb750924c4f1f88098669f5ae6e4d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6eb1d33d14fe21c9f23736d9fdcb8adf2527a2e2d7399a103bd54eeaf9cacbb861359fa7fab86c2b3cdebaf367a38b74081b06f091cceef54cb8ea5bfa901e41","tags":[]}] +[14:32:34.564] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"First, run on banks, people. \nnostr:nevent1qqs9wjyayud3h5wkefm6dnpcdhac2f90x0davu9n7cnjhcfjk9hv3rqpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczyz4cewqwtep2t3zleu9xc2t7wk93zw58m2js9zcskg4c4h6njh2syqcyqqqqqqg20q2a3","created_at":1759429935,"id":"114b4567ffbaddc02d305db741146d19e0d65d4c427e8a29ba75e83675c06ad2","kind":1,"pubkey":"ec9bd7465546ba061f5dfde716a4f20f3f27ecc28ca4870775e5e853df11a9d0","sig":"5821103c9f344e4b94dfbd40082aa809fafb934139bd48f3a9e529c1d00711bbb3f2572cceeda50aefc88d971126a63d2379e10cc003b06a159b184a68ebd535","tags":[["alt","A short note: First, run on banks, people. \nnostr:nevent1qqs9wjy..."],["p","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","wss://nos.lol/"],["q","57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","wss://relay.primal.net/","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502"]]}] +[14:32:34.625] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Maybe I'm missing something, but how is it hexadecimal with only 14 sides? ","created_at":1759429928,"id":"997c0476afbd87cb85c9e26ed0e12b512f1872795887476ae6465e8bc20e7abb","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"c58d391424edb86b7685549fcdb99e155435adbfc89903276fef7dfa209455efa7ad10d111de004e67bca1e3f2139c817bd51685fd167c32c6197048622237e2","tags":[["alt","A short note: Maybe I'm missing something, but how is it hexadec..."],["e","43118b01dbefa5a66a8e6edf4766a0d3d36a5184d9de19107e1c8280d07f2f1a","wss://relay.damus.io/","root","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075"],["p","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075","wss://relay.damus.io/"]]}] +[14:32:34.685] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ah, weird. Maybe I should include an habla link, next time. 🤔","created_at":1759429928,"id":"bb111ccbd8387abd11985dc06a6c22a9ac74abb49707720779ec1a7dc572ba1a","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"01ca2525324d4692ce6392d2b8f07afee807f01b1ee12c7464e2c95f9b6a388392c01084041cd1ff350a11c18afe1ec36d51e73622ca0ebc3265e67aff46a575","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nos.lol/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","eb90457ec19b35bfa43a85c4559bf5aa7821f1f8ac831b2f575388e6fef42850","wss://aggr.nostr.land/","reply","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"],["p","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"]]}] +[14:32:34.745] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A nip05 provider used by a bot farm.","created_at":1759429925,"id":"d9b485f34c28de324f3f0412e998b65f3c41ff102a1a7534c8a3243177357798","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"569429fe427af1e5350676355447da2204fdaf623c82966b795cf677217440197d5f5b5123cea9df61baa1a50ad5ad892c7abd6b5711a7269448c95ab1182fbc","tags":[["alt","A short note: A nip05 provider used by a bot farm."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","cc67a20a5a2f10677227fc13db81f8b3c90682fe9c0149ed83c631095a3496b2","wss://nostr.bitcoiner.social/","reply","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7","wss://relay.nostr.band/"]]}] +[14:32:34.806] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:32:34.866] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:32:34.927] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:32:34.987] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root"],["p","adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1"],["r","wss://relay.primal.net/"]]}] +[14:32:35.048] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:32:35.108] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:35.169] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:32:35.229] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:35.290] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:35.350] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:35.411] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:35.471] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:35.532] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:35.592] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:35.653] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:35.713] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:35.774] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:35.834] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:32:36.258] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:32:36.741] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:32:36.802] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:32:36.922] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:32:37.406] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:32:38.827] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:38.827] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:38.827] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:38.827] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:38.978] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolute love bats!! ","created_at":1759429955,"id":"22a4d6bec023f484e7e4825853b6b4eeda0aee1af68ce73117dcaec4ca956a12","kind":1,"pubkey":"288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7","sig":"e5ff2ba05950507ccb331ed3a42dd0ef0b282a1bcd364d2a452bdd7214f9b9b303b4dbd6069a4473df365902e9a665c87e760f1495ce61c87392f9cd6534de96","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://search.nos.today","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","","mention"]]}] +[14:32:39.039] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"3:32 「今夜は寝かせないよ」\n3:44 就寝","created_at":1759429939,"id":"2846d3c890c9017dfdfb404060047643441fb750924c4f1f88098669f5ae6e4d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6eb1d33d14fe21c9f23736d9fdcb8adf2527a2e2d7399a103bd54eeaf9cacbb861359fa7fab86c2b3cdebaf367a38b74081b06f091cceef54cb8ea5bfa901e41","tags":[]}] +[14:32:39.099] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"First, run on banks, people. \nnostr:nevent1qqs9wjyayud3h5wkefm6dnpcdhac2f90x0davu9n7cnjhcfjk9hv3rqpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczyz4cewqwtep2t3zleu9xc2t7wk93zw58m2js9zcskg4c4h6njh2syqcyqqqqqqg20q2a3","created_at":1759429935,"id":"114b4567ffbaddc02d305db741146d19e0d65d4c427e8a29ba75e83675c06ad2","kind":1,"pubkey":"ec9bd7465546ba061f5dfde716a4f20f3f27ecc28ca4870775e5e853df11a9d0","sig":"5821103c9f344e4b94dfbd40082aa809fafb934139bd48f3a9e529c1d00711bbb3f2572cceeda50aefc88d971126a63d2379e10cc003b06a159b184a68ebd535","tags":[["alt","A short note: First, run on banks, people. \nnostr:nevent1qqs9wjy..."],["p","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","wss://nos.lol/"],["q","57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","wss://relay.primal.net/","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502"]]}] +[14:32:39.160] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Maybe I'm missing something, but how is it hexadecimal with only 14 sides? ","created_at":1759429928,"id":"997c0476afbd87cb85c9e26ed0e12b512f1872795887476ae6465e8bc20e7abb","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"c58d391424edb86b7685549fcdb99e155435adbfc89903276fef7dfa209455efa7ad10d111de004e67bca1e3f2139c817bd51685fd167c32c6197048622237e2","tags":[["alt","A short note: Maybe I'm missing something, but how is it hexadec..."],["e","43118b01dbefa5a66a8e6edf4766a0d3d36a5184d9de19107e1c8280d07f2f1a","wss://relay.damus.io/","root","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075"],["p","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075","wss://relay.damus.io/"]]}] +[14:32:39.220] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ah, weird. Maybe I should include an habla link, next time. 🤔","created_at":1759429928,"id":"bb111ccbd8387abd11985dc06a6c22a9ac74abb49707720779ec1a7dc572ba1a","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"01ca2525324d4692ce6392d2b8f07afee807f01b1ee12c7464e2c95f9b6a388392c01084041cd1ff350a11c18afe1ec36d51e73622ca0ebc3265e67aff46a575","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nos.lol/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","eb90457ec19b35bfa43a85c4559bf5aa7821f1f8ac831b2f575388e6fef42850","wss://aggr.nostr.land/","reply","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"],["p","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"]]}] +[14:32:39.281] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A nip05 provider used by a bot farm.","created_at":1759429925,"id":"d9b485f34c28de324f3f0412e998b65f3c41ff102a1a7534c8a3243177357798","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"569429fe427af1e5350676355447da2204fdaf623c82966b795cf677217440197d5f5b5123cea9df61baa1a50ad5ad892c7abd6b5711a7269448c95ab1182fbc","tags":[["alt","A short note: A nip05 provider used by a bot farm."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","cc67a20a5a2f10677227fc13db81f8b3c90682fe9c0149ed83c631095a3496b2","wss://nostr.bitcoiner.social/","reply","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7","wss://relay.nostr.band/"]]}] +[14:32:39.342] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:32:39.402] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:32:39.463] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:32:39.523] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root"],["p","adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1"],["r","wss://relay.primal.net/"]]}] +[14:32:39.584] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:39.645] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:32:39.705] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:39.766] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:39.826] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:39.887] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:39.947] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:40.008] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:40.069] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:40.129] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:40.190] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:40.251] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:40.311] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:32:40.734] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:32:41.218] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:32:41.278] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:32:41.399] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:32:41.882] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:32:43.340] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:43.340] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:43.340] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:43.340] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:43.492] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"bros would collapse lol","created_at":1759429962,"id":"a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","kind":1,"pubkey":"d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","sig":"ddb1114898686ace4acfa7b033d82e9ad0d4a7352b3e3eadf56fc5d873eaab7af9b67cc01e5ff69cb399af52aad5367763a67b4436a976b30f020ab0790a90e4","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root"],["p","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"]]}] +[14:32:43.502] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gonna pass on that 🤣🤣","created_at":1759429961,"id":"2da409e728c947ae2be844d17cb94c9420daf6c58ab094af7f95726e9709e2bd","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"703e5114df17beef403eed155cd4ed010bbb7a1f1e0c1b0027b1529fe7269e72fe58cceffaefd45188941cfc26eac92102b11d3184f8e4d3bf6646b1a9f3839e","tags":[["alt","A short note: Gonna pass on that 🤣🤣"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://nostr.mom/","","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:32:43.563] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me zapping you ⚡️ ⚡️ ⚡️ \nhttps://blossom.primal.net/bef570492a85dc1dbf47fa8be4f4f5666f09ce06a3007d02e27f1bc5d13d29f7.gif","created_at":1759429959,"id":"72a0046835c9dab38a47a37839a1ccb3c5b0f1e237ced0bb1e81cfb14fff1e97","kind":1,"pubkey":"1f022acff382b56e6243440d3f665939f2722d093993cb5f1169a3014a11d2ec","sig":"e6b2037b0d78c141314efc3f1205069509d3b9c5cd87aa487943b3e5c116c49fa49c465a5ea3d0a837cfade7f712b67db4c529b465f0bb71565741003e046f2a","tags":[]}] +[14:32:43.624] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolute love bats!! ","created_at":1759429955,"id":"22a4d6bec023f484e7e4825853b6b4eeda0aee1af68ce73117dcaec4ca956a12","kind":1,"pubkey":"288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7","sig":"e5ff2ba05950507ccb331ed3a42dd0ef0b282a1bcd364d2a452bdd7214f9b9b303b4dbd6069a4473df365902e9a665c87e760f1495ce61c87392f9cd6534de96","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://search.nos.today","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","","mention"]]}] +[14:32:43.684] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"3:32 「今夜は寝かせないよ」\n3:44 就寝","created_at":1759429939,"id":"2846d3c890c9017dfdfb404060047643441fb750924c4f1f88098669f5ae6e4d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6eb1d33d14fe21c9f23736d9fdcb8adf2527a2e2d7399a103bd54eeaf9cacbb861359fa7fab86c2b3cdebaf367a38b74081b06f091cceef54cb8ea5bfa901e41","tags":[]}] +[14:32:43.745] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"First, run on banks, people. \nnostr:nevent1qqs9wjyayud3h5wkefm6dnpcdhac2f90x0davu9n7cnjhcfjk9hv3rqpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczyz4cewqwtep2t3zleu9xc2t7wk93zw58m2js9zcskg4c4h6njh2syqcyqqqqqqg20q2a3","created_at":1759429935,"id":"114b4567ffbaddc02d305db741146d19e0d65d4c427e8a29ba75e83675c06ad2","kind":1,"pubkey":"ec9bd7465546ba061f5dfde716a4f20f3f27ecc28ca4870775e5e853df11a9d0","sig":"5821103c9f344e4b94dfbd40082aa809fafb934139bd48f3a9e529c1d00711bbb3f2572cceeda50aefc88d971126a63d2379e10cc003b06a159b184a68ebd535","tags":[["alt","A short note: First, run on banks, people. \nnostr:nevent1qqs9wjy..."],["p","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","wss://nos.lol/"],["q","57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","wss://relay.primal.net/","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502"]]}] +[14:32:43.805] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Maybe I'm missing something, but how is it hexadecimal with only 14 sides? ","created_at":1759429928,"id":"997c0476afbd87cb85c9e26ed0e12b512f1872795887476ae6465e8bc20e7abb","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"c58d391424edb86b7685549fcdb99e155435adbfc89903276fef7dfa209455efa7ad10d111de004e67bca1e3f2139c817bd51685fd167c32c6197048622237e2","tags":[["alt","A short note: Maybe I'm missing something, but how is it hexadec..."],["e","43118b01dbefa5a66a8e6edf4766a0d3d36a5184d9de19107e1c8280d07f2f1a","wss://relay.damus.io/","root","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075"],["p","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075","wss://relay.damus.io/"]]}] +[14:32:43.866] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ah, weird. Maybe I should include an habla link, next time. 🤔","created_at":1759429928,"id":"bb111ccbd8387abd11985dc06a6c22a9ac74abb49707720779ec1a7dc572ba1a","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"01ca2525324d4692ce6392d2b8f07afee807f01b1ee12c7464e2c95f9b6a388392c01084041cd1ff350a11c18afe1ec36d51e73622ca0ebc3265e67aff46a575","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nos.lol/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","eb90457ec19b35bfa43a85c4559bf5aa7821f1f8ac831b2f575388e6fef42850","wss://aggr.nostr.land/","reply","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"],["p","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"]]}] +[14:32:43.926] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A nip05 provider used by a bot farm.","created_at":1759429925,"id":"d9b485f34c28de324f3f0412e998b65f3c41ff102a1a7534c8a3243177357798","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"569429fe427af1e5350676355447da2204fdaf623c82966b795cf677217440197d5f5b5123cea9df61baa1a50ad5ad892c7abd6b5711a7269448c95ab1182fbc","tags":[["alt","A short note: A nip05 provider used by a bot farm."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","cc67a20a5a2f10677227fc13db81f8b3c90682fe9c0149ed83c631095a3496b2","wss://nostr.bitcoiner.social/","reply","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7","wss://relay.nostr.band/"]]}] +[14:32:43.987] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:32:44.047] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:44.108] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:32:44.168] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:44.229] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:44.289] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:44.350] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:44.410] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:44.471] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:44.531] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:44.592] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:44.652] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:44.713] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:44.773] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:32:45.196] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:32:45.679] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:32:45.740] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:32:45.861] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:32:46.344] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:32:47.815] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:47.815] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:47.815] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:47.815] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:47.966] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"bros would collapse lol","created_at":1759429962,"id":"a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","kind":1,"pubkey":"d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","sig":"ddb1114898686ace4acfa7b033d82e9ad0d4a7352b3e3eadf56fc5d873eaab7af9b67cc01e5ff69cb399af52aad5367763a67b4436a976b30f020ab0790a90e4","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root"],["p","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"]]}] +[14:32:48.027] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gonna pass on that 🤣🤣","created_at":1759429961,"id":"2da409e728c947ae2be844d17cb94c9420daf6c58ab094af7f95726e9709e2bd","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"703e5114df17beef403eed155cd4ed010bbb7a1f1e0c1b0027b1529fe7269e72fe58cceffaefd45188941cfc26eac92102b11d3184f8e4d3bf6646b1a9f3839e","tags":[["alt","A short note: Gonna pass on that 🤣🤣"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://nostr.mom/","","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:32:48.088] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me zapping you ⚡️ ⚡️ ⚡️ \nhttps://blossom.primal.net/bef570492a85dc1dbf47fa8be4f4f5666f09ce06a3007d02e27f1bc5d13d29f7.gif","created_at":1759429959,"id":"72a0046835c9dab38a47a37839a1ccb3c5b0f1e237ced0bb1e81cfb14fff1e97","kind":1,"pubkey":"1f022acff382b56e6243440d3f665939f2722d093993cb5f1169a3014a11d2ec","sig":"e6b2037b0d78c141314efc3f1205069509d3b9c5cd87aa487943b3e5c116c49fa49c465a5ea3d0a837cfade7f712b67db4c529b465f0bb71565741003e046f2a","tags":[]}] +[14:32:48.113] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolute love bats!! ","created_at":1759429955,"id":"22a4d6bec023f484e7e4825853b6b4eeda0aee1af68ce73117dcaec4ca956a12","kind":1,"pubkey":"288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7","sig":"e5ff2ba05950507ccb331ed3a42dd0ef0b282a1bcd364d2a452bdd7214f9b9b303b4dbd6069a4473df365902e9a665c87e760f1495ce61c87392f9cd6534de96","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://search.nos.today","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","","mention"]]}] +[14:32:48.174] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"3:32 「今夜は寝かせないよ」\n3:44 就寝","created_at":1759429939,"id":"2846d3c890c9017dfdfb404060047643441fb750924c4f1f88098669f5ae6e4d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6eb1d33d14fe21c9f23736d9fdcb8adf2527a2e2d7399a103bd54eeaf9cacbb861359fa7fab86c2b3cdebaf367a38b74081b06f091cceef54cb8ea5bfa901e41","tags":[]}] +[14:32:48.234] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"First, run on banks, people. \nnostr:nevent1qqs9wjyayud3h5wkefm6dnpcdhac2f90x0davu9n7cnjhcfjk9hv3rqpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczyz4cewqwtep2t3zleu9xc2t7wk93zw58m2js9zcskg4c4h6njh2syqcyqqqqqqg20q2a3","created_at":1759429935,"id":"114b4567ffbaddc02d305db741146d19e0d65d4c427e8a29ba75e83675c06ad2","kind":1,"pubkey":"ec9bd7465546ba061f5dfde716a4f20f3f27ecc28ca4870775e5e853df11a9d0","sig":"5821103c9f344e4b94dfbd40082aa809fafb934139bd48f3a9e529c1d00711bbb3f2572cceeda50aefc88d971126a63d2379e10cc003b06a159b184a68ebd535","tags":[["alt","A short note: First, run on banks, people. \nnostr:nevent1qqs9wjy..."],["p","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","wss://nos.lol/"],["q","57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","wss://relay.primal.net/","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502"]]}] +[14:32:48.295] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Maybe I'm missing something, but how is it hexadecimal with only 14 sides? ","created_at":1759429928,"id":"997c0476afbd87cb85c9e26ed0e12b512f1872795887476ae6465e8bc20e7abb","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"c58d391424edb86b7685549fcdb99e155435adbfc89903276fef7dfa209455efa7ad10d111de004e67bca1e3f2139c817bd51685fd167c32c6197048622237e2","tags":[["alt","A short note: Maybe I'm missing something, but how is it hexadec..."],["e","43118b01dbefa5a66a8e6edf4766a0d3d36a5184d9de19107e1c8280d07f2f1a","wss://relay.damus.io/","root","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075"],["p","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075","wss://relay.damus.io/"]]}] +[14:32:48.355] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ah, weird. Maybe I should include an habla link, next time. 🤔","created_at":1759429928,"id":"bb111ccbd8387abd11985dc06a6c22a9ac74abb49707720779ec1a7dc572ba1a","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"01ca2525324d4692ce6392d2b8f07afee807f01b1ee12c7464e2c95f9b6a388392c01084041cd1ff350a11c18afe1ec36d51e73622ca0ebc3265e67aff46a575","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nos.lol/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","eb90457ec19b35bfa43a85c4559bf5aa7821f1f8ac831b2f575388e6fef42850","wss://aggr.nostr.land/","reply","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"],["p","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"]]}] +[14:32:48.416] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A nip05 provider used by a bot farm.","created_at":1759429925,"id":"d9b485f34c28de324f3f0412e998b65f3c41ff102a1a7534c8a3243177357798","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"569429fe427af1e5350676355447da2204fdaf623c82966b795cf677217440197d5f5b5123cea9df61baa1a50ad5ad892c7abd6b5711a7269448c95ab1182fbc","tags":[["alt","A short note: A nip05 provider used by a bot farm."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","cc67a20a5a2f10677227fc13db81f8b3c90682fe9c0149ed83c631095a3496b2","wss://nostr.bitcoiner.social/","reply","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7","wss://relay.nostr.band/"]]}] +[14:32:48.476] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:32:48.537] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:48.597] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:32:48.658] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:48.718] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:48.779] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:48.839] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:48.900] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:48.960] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:49.021] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:49.081] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:49.142] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:49.202] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:49.263] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:32:49.686] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:32:50.169] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:32:50.230] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:32:50.351] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:32:50.834] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:32:52.291] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:52.291] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:52.291] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:52.292] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:52.513] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I love David Bentley Hart, his book That All Shall Be Saved literally saved my life (and my faith)","created_at":1759429971,"id":"46723523276f6878a21ca3597361ded3c589d45892d6ebdc02c79746a2540f5b","kind":1,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"7af720d7e5572bf658dc44392eb307fbc56ce3c3c9aacb055bfb8df61aa8b4842ce0e2d477d6ae9c31c326f5fd99e69e35b50a7b0b252b0901bed17d8c738fc0","tags":[["alt","A short note: I love David Bentley Hart, his book That All Shall..."],["e","ede71003978ae8c3277e6706283e9ed8ce032339860b209fd077bf9ae325d4df","wss://pyramid.fiatjaf.com/","root","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4","wss://cobrafuma.com/relay"]]}] +[14:32:52.574] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"bros would collapse lol","created_at":1759429962,"id":"a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","kind":1,"pubkey":"d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","sig":"ddb1114898686ace4acfa7b033d82e9ad0d4a7352b3e3eadf56fc5d873eaab7af9b67cc01e5ff69cb399af52aad5367763a67b4436a976b30f020ab0790a90e4","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root"],["p","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"]]}] +[14:32:52.634] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gonna pass on that 🤣🤣","created_at":1759429961,"id":"2da409e728c947ae2be844d17cb94c9420daf6c58ab094af7f95726e9709e2bd","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"703e5114df17beef403eed155cd4ed010bbb7a1f1e0c1b0027b1529fe7269e72fe58cceffaefd45188941cfc26eac92102b11d3184f8e4d3bf6646b1a9f3839e","tags":[["alt","A short note: Gonna pass on that 🤣🤣"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://nostr.mom/","","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:32:52.695] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me zapping you ⚡️ ⚡️ ⚡️ \nhttps://blossom.primal.net/bef570492a85dc1dbf47fa8be4f4f5666f09ce06a3007d02e27f1bc5d13d29f7.gif","created_at":1759429959,"id":"72a0046835c9dab38a47a37839a1ccb3c5b0f1e237ced0bb1e81cfb14fff1e97","kind":1,"pubkey":"1f022acff382b56e6243440d3f665939f2722d093993cb5f1169a3014a11d2ec","sig":"e6b2037b0d78c141314efc3f1205069509d3b9c5cd87aa487943b3e5c116c49fa49c465a5ea3d0a837cfade7f712b67db4c529b465f0bb71565741003e046f2a","tags":[]}] +[14:32:52.755] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolute love bats!! ","created_at":1759429955,"id":"22a4d6bec023f484e7e4825853b6b4eeda0aee1af68ce73117dcaec4ca956a12","kind":1,"pubkey":"288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7","sig":"e5ff2ba05950507ccb331ed3a42dd0ef0b282a1bcd364d2a452bdd7214f9b9b303b4dbd6069a4473df365902e9a665c87e760f1495ce61c87392f9cd6534de96","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://search.nos.today","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","","mention"]]}] +[14:32:52.816] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"3:32 「今夜は寝かせないよ」\n3:44 就寝","created_at":1759429939,"id":"2846d3c890c9017dfdfb404060047643441fb750924c4f1f88098669f5ae6e4d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6eb1d33d14fe21c9f23736d9fdcb8adf2527a2e2d7399a103bd54eeaf9cacbb861359fa7fab86c2b3cdebaf367a38b74081b06f091cceef54cb8ea5bfa901e41","tags":[]}] +[14:32:52.876] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"First, run on banks, people. \nnostr:nevent1qqs9wjyayud3h5wkefm6dnpcdhac2f90x0davu9n7cnjhcfjk9hv3rqpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczyz4cewqwtep2t3zleu9xc2t7wk93zw58m2js9zcskg4c4h6njh2syqcyqqqqqqg20q2a3","created_at":1759429935,"id":"114b4567ffbaddc02d305db741146d19e0d65d4c427e8a29ba75e83675c06ad2","kind":1,"pubkey":"ec9bd7465546ba061f5dfde716a4f20f3f27ecc28ca4870775e5e853df11a9d0","sig":"5821103c9f344e4b94dfbd40082aa809fafb934139bd48f3a9e529c1d00711bbb3f2572cceeda50aefc88d971126a63d2379e10cc003b06a159b184a68ebd535","tags":[["alt","A short note: First, run on banks, people. \nnostr:nevent1qqs9wjy..."],["p","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","wss://nos.lol/"],["q","57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","wss://relay.primal.net/","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502"]]}] +[14:32:52.937] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Maybe I'm missing something, but how is it hexadecimal with only 14 sides? ","created_at":1759429928,"id":"997c0476afbd87cb85c9e26ed0e12b512f1872795887476ae6465e8bc20e7abb","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"c58d391424edb86b7685549fcdb99e155435adbfc89903276fef7dfa209455efa7ad10d111de004e67bca1e3f2139c817bd51685fd167c32c6197048622237e2","tags":[["alt","A short note: Maybe I'm missing something, but how is it hexadec..."],["e","43118b01dbefa5a66a8e6edf4766a0d3d36a5184d9de19107e1c8280d07f2f1a","wss://relay.damus.io/","root","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075"],["p","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075","wss://relay.damus.io/"]]}] +[14:32:52.997] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ah, weird. Maybe I should include an habla link, next time. 🤔","created_at":1759429928,"id":"bb111ccbd8387abd11985dc06a6c22a9ac74abb49707720779ec1a7dc572ba1a","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"01ca2525324d4692ce6392d2b8f07afee807f01b1ee12c7464e2c95f9b6a388392c01084041cd1ff350a11c18afe1ec36d51e73622ca0ebc3265e67aff46a575","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nos.lol/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","eb90457ec19b35bfa43a85c4559bf5aa7821f1f8ac831b2f575388e6fef42850","wss://aggr.nostr.land/","reply","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"],["p","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"]]}] +[14:32:53.058] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A nip05 provider used by a bot farm.","created_at":1759429925,"id":"d9b485f34c28de324f3f0412e998b65f3c41ff102a1a7534c8a3243177357798","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"569429fe427af1e5350676355447da2204fdaf623c82966b795cf677217440197d5f5b5123cea9df61baa1a50ad5ad892c7abd6b5711a7269448c95ab1182fbc","tags":[["alt","A short note: A nip05 provider used by a bot farm."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","cc67a20a5a2f10677227fc13db81f8b3c90682fe9c0149ed83c631095a3496b2","wss://nostr.bitcoiner.social/","reply","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7","wss://relay.nostr.band/"]]}] +[14:32:53.084] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:53.144] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:32:53.205] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:53.265] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:53.326] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:53.386] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:53.447] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:53.508] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:53.568] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:53.628] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:53.689] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:53.749] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:53.810] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:32:54.233] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:32:54.716] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:32:54.777] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:32:54.897] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:32:55.380] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:32:56.837] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:56.837] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:56.837] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:56.837] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:56.989] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"気絶します","created_at":1759429975,"id":"3afb674c8b7c4d8dad7c0d450ca4940bb0fc70d676bae1e1151e19236477ccdb","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"3a77d4ab09fa1cc3b6a7c084b050f6a5ae5af04415440ffa731f782bfae42cd87a9973c5a697da87578c418e7dce24cafb0d8a300f2e52340503f6c01fac402c","tags":[]}] +[14:32:57.049] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ロボ","created_at":1759429973,"id":"394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"356a4cfa51886b587e15d0f2c037c4fb9aa49836c0071c3146277eab171d6d08aaad1ec19adb8892c5092b30158d97ad0f9a576a7e13eaae0ec4f137bdb88b8a","tags":[]}] +[14:32:57.110] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I love David Bentley Hart, his book That All Shall Be Saved literally saved my life (and my faith)","created_at":1759429971,"id":"46723523276f6878a21ca3597361ded3c589d45892d6ebdc02c79746a2540f5b","kind":1,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"7af720d7e5572bf658dc44392eb307fbc56ce3c3c9aacb055bfb8df61aa8b4842ce0e2d477d6ae9c31c326f5fd99e69e35b50a7b0b252b0901bed17d8c738fc0","tags":[["alt","A short note: I love David Bentley Hart, his book That All Shall..."],["e","ede71003978ae8c3277e6706283e9ed8ce032339860b209fd077bf9ae325d4df","wss://pyramid.fiatjaf.com/","root","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4","wss://cobrafuma.com/relay"]]}] +[14:32:57.170] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"bros would collapse lol","created_at":1759429962,"id":"a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","kind":1,"pubkey":"d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","sig":"ddb1114898686ace4acfa7b033d82e9ad0d4a7352b3e3eadf56fc5d873eaab7af9b67cc01e5ff69cb399af52aad5367763a67b4436a976b30f020ab0790a90e4","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root"],["p","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"]]}] +[14:32:57.231] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gonna pass on that 🤣🤣","created_at":1759429961,"id":"2da409e728c947ae2be844d17cb94c9420daf6c58ab094af7f95726e9709e2bd","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"703e5114df17beef403eed155cd4ed010bbb7a1f1e0c1b0027b1529fe7269e72fe58cceffaefd45188941cfc26eac92102b11d3184f8e4d3bf6646b1a9f3839e","tags":[["alt","A short note: Gonna pass on that 🤣🤣"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://nostr.mom/","","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:32:57.291] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me zapping you ⚡️ ⚡️ ⚡️ \nhttps://blossom.primal.net/bef570492a85dc1dbf47fa8be4f4f5666f09ce06a3007d02e27f1bc5d13d29f7.gif","created_at":1759429959,"id":"72a0046835c9dab38a47a37839a1ccb3c5b0f1e237ced0bb1e81cfb14fff1e97","kind":1,"pubkey":"1f022acff382b56e6243440d3f665939f2722d093993cb5f1169a3014a11d2ec","sig":"e6b2037b0d78c141314efc3f1205069509d3b9c5cd87aa487943b3e5c116c49fa49c465a5ea3d0a837cfade7f712b67db4c529b465f0bb71565741003e046f2a","tags":[]}] +[14:32:57.352] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolute love bats!! ","created_at":1759429955,"id":"22a4d6bec023f484e7e4825853b6b4eeda0aee1af68ce73117dcaec4ca956a12","kind":1,"pubkey":"288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7","sig":"e5ff2ba05950507ccb331ed3a42dd0ef0b282a1bcd364d2a452bdd7214f9b9b303b4dbd6069a4473df365902e9a665c87e760f1495ce61c87392f9cd6534de96","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://search.nos.today","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","","mention"]]}] +[14:32:57.412] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"3:32 「今夜は寝かせないよ」\n3:44 就寝","created_at":1759429939,"id":"2846d3c890c9017dfdfb404060047643441fb750924c4f1f88098669f5ae6e4d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6eb1d33d14fe21c9f23736d9fdcb8adf2527a2e2d7399a103bd54eeaf9cacbb861359fa7fab86c2b3cdebaf367a38b74081b06f091cceef54cb8ea5bfa901e41","tags":[]}] +[14:32:57.473] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"First, run on banks, people. \nnostr:nevent1qqs9wjyayud3h5wkefm6dnpcdhac2f90x0davu9n7cnjhcfjk9hv3rqpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczyz4cewqwtep2t3zleu9xc2t7wk93zw58m2js9zcskg4c4h6njh2syqcyqqqqqqg20q2a3","created_at":1759429935,"id":"114b4567ffbaddc02d305db741146d19e0d65d4c427e8a29ba75e83675c06ad2","kind":1,"pubkey":"ec9bd7465546ba061f5dfde716a4f20f3f27ecc28ca4870775e5e853df11a9d0","sig":"5821103c9f344e4b94dfbd40082aa809fafb934139bd48f3a9e529c1d00711bbb3f2572cceeda50aefc88d971126a63d2379e10cc003b06a159b184a68ebd535","tags":[["alt","A short note: First, run on banks, people. \nnostr:nevent1qqs9wjy..."],["p","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","wss://nos.lol/"],["q","57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","wss://relay.primal.net/","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502"]]}] +[14:32:57.533] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Maybe I'm missing something, but how is it hexadecimal with only 14 sides? ","created_at":1759429928,"id":"997c0476afbd87cb85c9e26ed0e12b512f1872795887476ae6465e8bc20e7abb","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"c58d391424edb86b7685549fcdb99e155435adbfc89903276fef7dfa209455efa7ad10d111de004e67bca1e3f2139c817bd51685fd167c32c6197048622237e2","tags":[["alt","A short note: Maybe I'm missing something, but how is it hexadec..."],["e","43118b01dbefa5a66a8e6edf4766a0d3d36a5184d9de19107e1c8280d07f2f1a","wss://relay.damus.io/","root","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075"],["p","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075","wss://relay.damus.io/"]]}] +[14:32:57.594] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:57.655] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:32:57.715] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:57.776] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:57.836] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:57.897] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:57.957] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:58.018] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:58.079] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:58.104] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:58.165] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:58.225] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:58.286] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:32:58.709] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:32:59.192] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:32:59.253] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:32:59.374] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:32:59.857] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:33:01.312] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:01.313] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:01.313] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:01.313] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:01.464] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"気絶します","created_at":1759429975,"id":"3afb674c8b7c4d8dad7c0d450ca4940bb0fc70d676bae1e1151e19236477ccdb","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"3a77d4ab09fa1cc3b6a7c084b050f6a5ae5af04415440ffa731f782bfae42cd87a9973c5a697da87578c418e7dce24cafb0d8a300f2e52340503f6c01fac402c","tags":[]}] +[14:33:01.635] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ロボ","created_at":1759429973,"id":"394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"356a4cfa51886b587e15d0f2c037c4fb9aa49836c0071c3146277eab171d6d08aaad1ec19adb8892c5092b30158d97ad0f9a576a7e13eaae0ec4f137bdb88b8a","tags":[]}] +[14:33:01.696] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I love David Bentley Hart, his book That All Shall Be Saved literally saved my life (and my faith)","created_at":1759429971,"id":"46723523276f6878a21ca3597361ded3c589d45892d6ebdc02c79746a2540f5b","kind":1,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"7af720d7e5572bf658dc44392eb307fbc56ce3c3c9aacb055bfb8df61aa8b4842ce0e2d477d6ae9c31c326f5fd99e69e35b50a7b0b252b0901bed17d8c738fc0","tags":[["alt","A short note: I love David Bentley Hart, his book That All Shall..."],["e","ede71003978ae8c3277e6706283e9ed8ce032339860b209fd077bf9ae325d4df","wss://pyramid.fiatjaf.com/","root","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4","wss://cobrafuma.com/relay"]]}] +[14:33:01.756] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"bros would collapse lol","created_at":1759429962,"id":"a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","kind":1,"pubkey":"d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","sig":"ddb1114898686ace4acfa7b033d82e9ad0d4a7352b3e3eadf56fc5d873eaab7af9b67cc01e5ff69cb399af52aad5367763a67b4436a976b30f020ab0790a90e4","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root"],["p","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"]]}] +[14:33:01.817] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gonna pass on that 🤣🤣","created_at":1759429961,"id":"2da409e728c947ae2be844d17cb94c9420daf6c58ab094af7f95726e9709e2bd","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"703e5114df17beef403eed155cd4ed010bbb7a1f1e0c1b0027b1529fe7269e72fe58cceffaefd45188941cfc26eac92102b11d3184f8e4d3bf6646b1a9f3839e","tags":[["alt","A short note: Gonna pass on that 🤣🤣"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://nostr.mom/","","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:33:01.877] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me zapping you ⚡️ ⚡️ ⚡️ \nhttps://blossom.primal.net/bef570492a85dc1dbf47fa8be4f4f5666f09ce06a3007d02e27f1bc5d13d29f7.gif","created_at":1759429959,"id":"72a0046835c9dab38a47a37839a1ccb3c5b0f1e237ced0bb1e81cfb14fff1e97","kind":1,"pubkey":"1f022acff382b56e6243440d3f665939f2722d093993cb5f1169a3014a11d2ec","sig":"e6b2037b0d78c141314efc3f1205069509d3b9c5cd87aa487943b3e5c116c49fa49c465a5ea3d0a837cfade7f712b67db4c529b465f0bb71565741003e046f2a","tags":[]}] +[14:33:01.938] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolute love bats!! ","created_at":1759429955,"id":"22a4d6bec023f484e7e4825853b6b4eeda0aee1af68ce73117dcaec4ca956a12","kind":1,"pubkey":"288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7","sig":"e5ff2ba05950507ccb331ed3a42dd0ef0b282a1bcd364d2a452bdd7214f9b9b303b4dbd6069a4473df365902e9a665c87e760f1495ce61c87392f9cd6534de96","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://search.nos.today","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","","mention"]]}] +[14:33:01.998] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"3:32 「今夜は寝かせないよ」\n3:44 就寝","created_at":1759429939,"id":"2846d3c890c9017dfdfb404060047643441fb750924c4f1f88098669f5ae6e4d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6eb1d33d14fe21c9f23736d9fdcb8adf2527a2e2d7399a103bd54eeaf9cacbb861359fa7fab86c2b3cdebaf367a38b74081b06f091cceef54cb8ea5bfa901e41","tags":[]}] +[14:33:02.059] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"First, run on banks, people. \nnostr:nevent1qqs9wjyayud3h5wkefm6dnpcdhac2f90x0davu9n7cnjhcfjk9hv3rqpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczyz4cewqwtep2t3zleu9xc2t7wk93zw58m2js9zcskg4c4h6njh2syqcyqqqqqqg20q2a3","created_at":1759429935,"id":"114b4567ffbaddc02d305db741146d19e0d65d4c427e8a29ba75e83675c06ad2","kind":1,"pubkey":"ec9bd7465546ba061f5dfde716a4f20f3f27ecc28ca4870775e5e853df11a9d0","sig":"5821103c9f344e4b94dfbd40082aa809fafb934139bd48f3a9e529c1d00711bbb3f2572cceeda50aefc88d971126a63d2379e10cc003b06a159b184a68ebd535","tags":[["alt","A short note: First, run on banks, people. \nnostr:nevent1qqs9wjy..."],["p","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","wss://nos.lol/"],["q","57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","wss://relay.primal.net/","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502"]]}] +[14:33:02.119] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Maybe I'm missing something, but how is it hexadecimal with only 14 sides? ","created_at":1759429928,"id":"997c0476afbd87cb85c9e26ed0e12b512f1872795887476ae6465e8bc20e7abb","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"c58d391424edb86b7685549fcdb99e155435adbfc89903276fef7dfa209455efa7ad10d111de004e67bca1e3f2139c817bd51685fd167c32c6197048622237e2","tags":[["alt","A short note: Maybe I'm missing something, but how is it hexadec..."],["e","43118b01dbefa5a66a8e6edf4766a0d3d36a5184d9de19107e1c8280d07f2f1a","wss://relay.damus.io/","root","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075"],["p","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075","wss://relay.damus.io/"]]}] +[14:33:02.180] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:02.240] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:33:02.301] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:33:02.361] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:33:02.422] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:33:02.482] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:02.543] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:33:02.603] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:02.664] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:33:02.724] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:33:02.785] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:33:02.845] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:33:02.906] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:33:03.294] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:33:03.777] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:33:03.837] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:33:03.958] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:33:04.441] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:33:05.898] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:05.898] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:05.898] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:05.898] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:06.053] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Searches for “second job” have hit an all-time high, surpassing 2008 crisis and COVID levels.\n\nSecond jobs are the new normal.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759429760967-G2RlqpaXcAArH_H.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759429981,"id":"552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"2c25ca686291c59fc9c3f8454b9f1db523ea54fd5bedef16d4a74e71331a92206297b2d7886e2b5c3f038345a1dfbe51f01494b07b59e7af168b07ff05efe712","tags":[]}] +[14:33:06.113] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"気絶します","created_at":1759429975,"id":"3afb674c8b7c4d8dad7c0d450ca4940bb0fc70d676bae1e1151e19236477ccdb","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"3a77d4ab09fa1cc3b6a7c084b050f6a5ae5af04415440ffa731f782bfae42cd87a9973c5a697da87578c418e7dce24cafb0d8a300f2e52340503f6c01fac402c","tags":[]}] +[14:33:06.174] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ロボ","created_at":1759429973,"id":"394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"356a4cfa51886b587e15d0f2c037c4fb9aa49836c0071c3146277eab171d6d08aaad1ec19adb8892c5092b30158d97ad0f9a576a7e13eaae0ec4f137bdb88b8a","tags":[]}] +[14:33:06.234] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I love David Bentley Hart, his book That All Shall Be Saved literally saved my life (and my faith)","created_at":1759429971,"id":"46723523276f6878a21ca3597361ded3c589d45892d6ebdc02c79746a2540f5b","kind":1,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"7af720d7e5572bf658dc44392eb307fbc56ce3c3c9aacb055bfb8df61aa8b4842ce0e2d477d6ae9c31c326f5fd99e69e35b50a7b0b252b0901bed17d8c738fc0","tags":[["alt","A short note: I love David Bentley Hart, his book That All Shall..."],["e","ede71003978ae8c3277e6706283e9ed8ce032339860b209fd077bf9ae325d4df","wss://pyramid.fiatjaf.com/","root","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4","wss://cobrafuma.com/relay"]]}] +[14:33:06.295] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"bros would collapse lol","created_at":1759429962,"id":"a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","kind":1,"pubkey":"d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","sig":"ddb1114898686ace4acfa7b033d82e9ad0d4a7352b3e3eadf56fc5d873eaab7af9b67cc01e5ff69cb399af52aad5367763a67b4436a976b30f020ab0790a90e4","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root"],["p","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"]]}] +[14:33:06.355] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gonna pass on that 🤣🤣","created_at":1759429961,"id":"2da409e728c947ae2be844d17cb94c9420daf6c58ab094af7f95726e9709e2bd","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"703e5114df17beef403eed155cd4ed010bbb7a1f1e0c1b0027b1529fe7269e72fe58cceffaefd45188941cfc26eac92102b11d3184f8e4d3bf6646b1a9f3839e","tags":[["alt","A short note: Gonna pass on that 🤣🤣"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://nostr.mom/","","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:33:06.416] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me zapping you ⚡️ ⚡️ ⚡️ \nhttps://blossom.primal.net/bef570492a85dc1dbf47fa8be4f4f5666f09ce06a3007d02e27f1bc5d13d29f7.gif","created_at":1759429959,"id":"72a0046835c9dab38a47a37839a1ccb3c5b0f1e237ced0bb1e81cfb14fff1e97","kind":1,"pubkey":"1f022acff382b56e6243440d3f665939f2722d093993cb5f1169a3014a11d2ec","sig":"e6b2037b0d78c141314efc3f1205069509d3b9c5cd87aa487943b3e5c116c49fa49c465a5ea3d0a837cfade7f712b67db4c529b465f0bb71565741003e046f2a","tags":[]}] +[14:33:06.476] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolute love bats!! ","created_at":1759429955,"id":"22a4d6bec023f484e7e4825853b6b4eeda0aee1af68ce73117dcaec4ca956a12","kind":1,"pubkey":"288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7","sig":"e5ff2ba05950507ccb331ed3a42dd0ef0b282a1bcd364d2a452bdd7214f9b9b303b4dbd6069a4473df365902e9a665c87e760f1495ce61c87392f9cd6534de96","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://search.nos.today","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","","mention"]]}] +[14:33:06.537] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"3:32 「今夜は寝かせないよ」\n3:44 就寝","created_at":1759429939,"id":"2846d3c890c9017dfdfb404060047643441fb750924c4f1f88098669f5ae6e4d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6eb1d33d14fe21c9f23736d9fdcb8adf2527a2e2d7399a103bd54eeaf9cacbb861359fa7fab86c2b3cdebaf367a38b74081b06f091cceef54cb8ea5bfa901e41","tags":[]}] +[14:33:06.597] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"First, run on banks, people. \nnostr:nevent1qqs9wjyayud3h5wkefm6dnpcdhac2f90x0davu9n7cnjhcfjk9hv3rqpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczyz4cewqwtep2t3zleu9xc2t7wk93zw58m2js9zcskg4c4h6njh2syqcyqqqqqqg20q2a3","created_at":1759429935,"id":"114b4567ffbaddc02d305db741146d19e0d65d4c427e8a29ba75e83675c06ad2","kind":1,"pubkey":"ec9bd7465546ba061f5dfde716a4f20f3f27ecc28ca4870775e5e853df11a9d0","sig":"5821103c9f344e4b94dfbd40082aa809fafb934139bd48f3a9e529c1d00711bbb3f2572cceeda50aefc88d971126a63d2379e10cc003b06a159b184a68ebd535","tags":[["alt","A short note: First, run on banks, people. \nnostr:nevent1qqs9wjy..."],["p","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","wss://nos.lol/"],["q","57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","wss://relay.primal.net/","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502"]]}] +[14:33:06.658] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:06.718] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:33:06.779] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:33:06.839] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:33:06.900] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:33:06.960] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:07.021] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:33:07.081] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:07.142] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:33:07.202] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:33:07.263] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:33:07.323] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:33:07.384] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:33:07.807] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:33:08.255] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:33:08.316] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:33:08.437] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:33:08.919] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:33:10.375] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:10.375] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:10.375] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:10.375] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:10.526] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今北産業","created_at":1759429990,"id":"14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"820f791dc1ae7ff34c2231efcc4cebd9ef80918b7b1a7351e26d9070a50aa0b3abebe9d4b2451ac29d715bdf634837612e81f6e3ed786252a9930cc532ea9c62","tags":[["e","394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e",""],["e","24c50bec7ae0c58d2b258c1b359ddb7657be8493cfb61e6ed96927e1de579121","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:10.587] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 102485.5EUR (0%)\nBTC: 0.0099\nEUR: 1015\nMethod: Revolut\nCreated: 2025-10-02T18:28:27Z","created_at":1759429989,"id":"ee172d33132b5b74e48cdc0bb050fec347b6d18e20c5623144158e4cdceedbee","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"65887309c22eead0e0d4b9f32ffc29c3579d8d653aec9a3ea074558ff7ca2c2ca1d8b9a139e02dbba2b79cd444b1c7e5d16d51516d5bc42b84ad75e78443a2ea","tags":[]}] +[14:33:10.648] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I honestly don't want to sell it... but I'm in another housing crisis. Thankfully no where near as bad as 2023 when the community helped me not be homeless. \n\nTurns out, they never had a title...\nI'm now paying into escrow and waiting for court.\n🙄\n\nI'm honestly sick and tired of dealing with housing issues...\nI want somewhere I can get roots into the ground for once.","created_at":1759429986,"id":"20b75a49d097c025b85c20b0f56ea9589e2bbeb2282f5b20f605539e75d42f50","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"1ea0a597f19359a5ec61a2d91b551c4989505da4fb342575f6f946f2d0ff47174b635ec3159c31ccf5c7c2fd52be6ee21cc1b4ff7f69dfc7d30ed7995b288cd8","tags":[["alt","A short note: I honestly don't want to sell it... but I'm in ano..."],["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","wss://bitcoiner.social/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","wss://relay.damus.io/","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"]]}] +[14:33:10.709] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Searches for “second job” have hit an all-time high, surpassing 2008 crisis and COVID levels.\n\nSecond jobs are the new normal.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759429760967-G2RlqpaXcAArH_H.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759429981,"id":"552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"2c25ca686291c59fc9c3f8454b9f1db523ea54fd5bedef16d4a74e71331a92206297b2d7886e2b5c3f038345a1dfbe51f01494b07b59e7af168b07ff05efe712","tags":[]}] +[14:33:10.770] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"気絶します","created_at":1759429975,"id":"3afb674c8b7c4d8dad7c0d450ca4940bb0fc70d676bae1e1151e19236477ccdb","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"3a77d4ab09fa1cc3b6a7c084b050f6a5ae5af04415440ffa731f782bfae42cd87a9973c5a697da87578c418e7dce24cafb0d8a300f2e52340503f6c01fac402c","tags":[]}] +[14:33:10.830] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ロボ","created_at":1759429973,"id":"394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"356a4cfa51886b587e15d0f2c037c4fb9aa49836c0071c3146277eab171d6d08aaad1ec19adb8892c5092b30158d97ad0f9a576a7e13eaae0ec4f137bdb88b8a","tags":[]}] +[14:33:10.891] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I love David Bentley Hart, his book That All Shall Be Saved literally saved my life (and my faith)","created_at":1759429971,"id":"46723523276f6878a21ca3597361ded3c589d45892d6ebdc02c79746a2540f5b","kind":1,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"7af720d7e5572bf658dc44392eb307fbc56ce3c3c9aacb055bfb8df61aa8b4842ce0e2d477d6ae9c31c326f5fd99e69e35b50a7b0b252b0901bed17d8c738fc0","tags":[["alt","A short note: I love David Bentley Hart, his book That All Shall..."],["e","ede71003978ae8c3277e6706283e9ed8ce032339860b209fd077bf9ae325d4df","wss://pyramid.fiatjaf.com/","root","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4","wss://cobrafuma.com/relay"]]}] +[14:33:10.951] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"bros would collapse lol","created_at":1759429962,"id":"a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","kind":1,"pubkey":"d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","sig":"ddb1114898686ace4acfa7b033d82e9ad0d4a7352b3e3eadf56fc5d873eaab7af9b67cc01e5ff69cb399af52aad5367763a67b4436a976b30f020ab0790a90e4","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root"],["p","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"]]}] +[14:33:11.012] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gonna pass on that 🤣🤣","created_at":1759429961,"id":"2da409e728c947ae2be844d17cb94c9420daf6c58ab094af7f95726e9709e2bd","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"703e5114df17beef403eed155cd4ed010bbb7a1f1e0c1b0027b1529fe7269e72fe58cceffaefd45188941cfc26eac92102b11d3184f8e4d3bf6646b1a9f3839e","tags":[["alt","A short note: Gonna pass on that 🤣🤣"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://nostr.mom/","","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:33:11.072] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me zapping you ⚡️ ⚡️ ⚡️ \nhttps://blossom.primal.net/bef570492a85dc1dbf47fa8be4f4f5666f09ce06a3007d02e27f1bc5d13d29f7.gif","created_at":1759429959,"id":"72a0046835c9dab38a47a37839a1ccb3c5b0f1e237ced0bb1e81cfb14fff1e97","kind":1,"pubkey":"1f022acff382b56e6243440d3f665939f2722d093993cb5f1169a3014a11d2ec","sig":"e6b2037b0d78c141314efc3f1205069509d3b9c5cd87aa487943b3e5c116c49fa49c465a5ea3d0a837cfade7f712b67db4c529b465f0bb71565741003e046f2a","tags":[]}] +[14:33:11.133] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:11.194] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:33:11.254] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:33:11.315] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:33:11.375] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:33:11.436] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:11.496] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:33:11.557] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:11.618] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:33:11.678] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:33:11.739] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:33:11.799] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:33:11.860] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:33:12.283] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:33:12.767] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:33:12.827] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:33:12.948] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:33:13.397] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:33:14.854] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:14.854] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:14.854] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:14.854] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:15.005] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah definitely. But at scale. Work together with all Bitcoin meetups would be a beginning. Better than what we have now. Even though it wouldn't scale enough to reach everyone.","created_at":1759429993,"id":"0025ec6870c1da0eef5950248c126cef9c62bb23a2e6bf77da5f12b42b0b0d11","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"88ec0b36df24b0adb70eec8733b1ec1412aa8b33abfaa30482c02e384611df90846e227280de05e637841ac6fbc0f9fa5e81b0a930dc8aebe6edcaf9b0dc6c62","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"]]}] +[14:33:15.066] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今北産業","created_at":1759429990,"id":"14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"820f791dc1ae7ff34c2231efcc4cebd9ef80918b7b1a7351e26d9070a50aa0b3abebe9d4b2451ac29d715bdf634837612e81f6e3ed786252a9930cc532ea9c62","tags":[["e","394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e",""],["e","24c50bec7ae0c58d2b258c1b359ddb7657be8493cfb61e6ed96927e1de579121","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:15.127] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 102485.5EUR (0%)\nBTC: 0.0099\nEUR: 1015\nMethod: Revolut\nCreated: 2025-10-02T18:28:27Z","created_at":1759429989,"id":"ee172d33132b5b74e48cdc0bb050fec347b6d18e20c5623144158e4cdceedbee","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"65887309c22eead0e0d4b9f32ffc29c3579d8d653aec9a3ea074558ff7ca2c2ca1d8b9a139e02dbba2b79cd444b1c7e5d16d51516d5bc42b84ad75e78443a2ea","tags":[]}] +[14:33:15.187] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I honestly don't want to sell it... but I'm in another housing crisis. Thankfully no where near as bad as 2023 when the community helped me not be homeless. \n\nTurns out, they never had a title...\nI'm now paying into escrow and waiting for court.\n🙄\n\nI'm honestly sick and tired of dealing with housing issues...\nI want somewhere I can get roots into the ground for once.","created_at":1759429986,"id":"20b75a49d097c025b85c20b0f56ea9589e2bbeb2282f5b20f605539e75d42f50","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"1ea0a597f19359a5ec61a2d91b551c4989505da4fb342575f6f946f2d0ff47174b635ec3159c31ccf5c7c2fd52be6ee21cc1b4ff7f69dfc7d30ed7995b288cd8","tags":[["alt","A short note: I honestly don't want to sell it... but I'm in ano..."],["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","wss://bitcoiner.social/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","wss://relay.damus.io/","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"]]}] +[14:33:15.248] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Searches for “second job” have hit an all-time high, surpassing 2008 crisis and COVID levels.\n\nSecond jobs are the new normal.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759429760967-G2RlqpaXcAArH_H.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759429981,"id":"552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"2c25ca686291c59fc9c3f8454b9f1db523ea54fd5bedef16d4a74e71331a92206297b2d7886e2b5c3f038345a1dfbe51f01494b07b59e7af168b07ff05efe712","tags":[]}] +[14:33:15.308] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"気絶します","created_at":1759429975,"id":"3afb674c8b7c4d8dad7c0d450ca4940bb0fc70d676bae1e1151e19236477ccdb","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"3a77d4ab09fa1cc3b6a7c084b050f6a5ae5af04415440ffa731f782bfae42cd87a9973c5a697da87578c418e7dce24cafb0d8a300f2e52340503f6c01fac402c","tags":[]}] +[14:33:15.369] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ロボ","created_at":1759429973,"id":"394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"356a4cfa51886b587e15d0f2c037c4fb9aa49836c0071c3146277eab171d6d08aaad1ec19adb8892c5092b30158d97ad0f9a576a7e13eaae0ec4f137bdb88b8a","tags":[]}] +[14:33:15.430] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I love David Bentley Hart, his book That All Shall Be Saved literally saved my life (and my faith)","created_at":1759429971,"id":"46723523276f6878a21ca3597361ded3c589d45892d6ebdc02c79746a2540f5b","kind":1,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"7af720d7e5572bf658dc44392eb307fbc56ce3c3c9aacb055bfb8df61aa8b4842ce0e2d477d6ae9c31c326f5fd99e69e35b50a7b0b252b0901bed17d8c738fc0","tags":[["alt","A short note: I love David Bentley Hart, his book That All Shall..."],["e","ede71003978ae8c3277e6706283e9ed8ce032339860b209fd077bf9ae325d4df","wss://pyramid.fiatjaf.com/","root","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4","wss://cobrafuma.com/relay"]]}] +[14:33:15.490] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"bros would collapse lol","created_at":1759429962,"id":"a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","kind":1,"pubkey":"d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","sig":"ddb1114898686ace4acfa7b033d82e9ad0d4a7352b3e3eadf56fc5d873eaab7af9b67cc01e5ff69cb399af52aad5367763a67b4436a976b30f020ab0790a90e4","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root"],["p","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"]]}] +[14:33:15.550] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gonna pass on that 🤣🤣","created_at":1759429961,"id":"2da409e728c947ae2be844d17cb94c9420daf6c58ab094af7f95726e9709e2bd","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"703e5114df17beef403eed155cd4ed010bbb7a1f1e0c1b0027b1529fe7269e72fe58cceffaefd45188941cfc26eac92102b11d3184f8e4d3bf6646b1a9f3839e","tags":[["alt","A short note: Gonna pass on that 🤣🤣"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://nostr.mom/","","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:33:15.611] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:15.671] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:33:15.732] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:33:15.792] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:33:15.853] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:33:15.914] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:15.974] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:33:16.035] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:16.095] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:33:16.156] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:33:16.216] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:33:16.277] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:33:16.337] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:33:16.761] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:33:17.244] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:33:17.304] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:33:17.425] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:33:17.909] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:33:19.333] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:19.334] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:19.334] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:19.334] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:19.555] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","created_at":1759429998,"id":"c5bbbca355cab2adf622ec0a8fc134dcf55707bdc18d5aebc684f0615fce285f","kind":1,"pubkey":"c8383d81dd24406745b68409be40d6721c301029464067fcc50a25ddf9139549","sig":"e60c4077b62d278b1dc3ad117772e3518e7a6dd0c0ba8467750e644cb377f975ca4363c8ebe71429ee130e1743bff977bbd8ff901d514b163d8d82dd192731c9","tags":[["imeta","url https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","blurhash ecMG#Jx]?bS4%M~qs:R*j[Rj?^M{M{s.RjkXRjRjWBjY-;oKWCWBay","dim 1284x1205"],["r","https://i.nostr.build/IoP50bwnY5ph2kAy.jpg"]]}] +[14:33:19.616] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"He's in to some weird shit...😂","created_at":1759429998,"id":"d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"d0879c9708611e79ce2603a22fc160d6bf8c4b2f9af4251e84e114f68bc30807c389ef26f89cddd024a060c322390df267526fcfec23bac06e9556f5e97a713d","tags":[["alt","A short note: He's in to some weird shit...😂"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","wss://nostr.wine/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:33:19.677] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah definitely. But at scale. Work together with all Bitcoin meetups would be a beginning. Better than what we have now. Even though it wouldn't scale enough to reach everyone.","created_at":1759429993,"id":"0025ec6870c1da0eef5950248c126cef9c62bb23a2e6bf77da5f12b42b0b0d11","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"88ec0b36df24b0adb70eec8733b1ec1412aa8b33abfaa30482c02e384611df90846e227280de05e637841ac6fbc0f9fa5e81b0a930dc8aebe6edcaf9b0dc6c62","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"]]}] +[14:33:19.737] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今北産業","created_at":1759429990,"id":"14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"820f791dc1ae7ff34c2231efcc4cebd9ef80918b7b1a7351e26d9070a50aa0b3abebe9d4b2451ac29d715bdf634837612e81f6e3ed786252a9930cc532ea9c62","tags":[["e","394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e",""],["e","24c50bec7ae0c58d2b258c1b359ddb7657be8493cfb61e6ed96927e1de579121","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:19.798] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 102485.5EUR (0%)\nBTC: 0.0099\nEUR: 1015\nMethod: Revolut\nCreated: 2025-10-02T18:28:27Z","created_at":1759429989,"id":"ee172d33132b5b74e48cdc0bb050fec347b6d18e20c5623144158e4cdceedbee","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"65887309c22eead0e0d4b9f32ffc29c3579d8d653aec9a3ea074558ff7ca2c2ca1d8b9a139e02dbba2b79cd444b1c7e5d16d51516d5bc42b84ad75e78443a2ea","tags":[]}] +[14:33:19.858] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I honestly don't want to sell it... but I'm in another housing crisis. Thankfully no where near as bad as 2023 when the community helped me not be homeless. \n\nTurns out, they never had a title...\nI'm now paying into escrow and waiting for court.\n🙄\n\nI'm honestly sick and tired of dealing with housing issues...\nI want somewhere I can get roots into the ground for once.","created_at":1759429986,"id":"20b75a49d097c025b85c20b0f56ea9589e2bbeb2282f5b20f605539e75d42f50","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"1ea0a597f19359a5ec61a2d91b551c4989505da4fb342575f6f946f2d0ff47174b635ec3159c31ccf5c7c2fd52be6ee21cc1b4ff7f69dfc7d30ed7995b288cd8","tags":[["alt","A short note: I honestly don't want to sell it... but I'm in ano..."],["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","wss://bitcoiner.social/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","wss://relay.damus.io/","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"]]}] +[14:33:19.919] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Searches for “second job” have hit an all-time high, surpassing 2008 crisis and COVID levels.\n\nSecond jobs are the new normal.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759429760967-G2RlqpaXcAArH_H.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759429981,"id":"552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"2c25ca686291c59fc9c3f8454b9f1db523ea54fd5bedef16d4a74e71331a92206297b2d7886e2b5c3f038345a1dfbe51f01494b07b59e7af168b07ff05efe712","tags":[]}] +[14:33:19.979] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"気絶します","created_at":1759429975,"id":"3afb674c8b7c4d8dad7c0d450ca4940bb0fc70d676bae1e1151e19236477ccdb","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"3a77d4ab09fa1cc3b6a7c084b050f6a5ae5af04415440ffa731f782bfae42cd87a9973c5a697da87578c418e7dce24cafb0d8a300f2e52340503f6c01fac402c","tags":[]}] +[14:33:20.040] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ロボ","created_at":1759429973,"id":"394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"356a4cfa51886b587e15d0f2c037c4fb9aa49836c0071c3146277eab171d6d08aaad1ec19adb8892c5092b30158d97ad0f9a576a7e13eaae0ec4f137bdb88b8a","tags":[]}] +[14:33:20.100] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I love David Bentley Hart, his book That All Shall Be Saved literally saved my life (and my faith)","created_at":1759429971,"id":"46723523276f6878a21ca3597361ded3c589d45892d6ebdc02c79746a2540f5b","kind":1,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"7af720d7e5572bf658dc44392eb307fbc56ce3c3c9aacb055bfb8df61aa8b4842ce0e2d477d6ae9c31c326f5fd99e69e35b50a7b0b252b0901bed17d8c738fc0","tags":[["alt","A short note: I love David Bentley Hart, his book That All Shall..."],["e","ede71003978ae8c3277e6706283e9ed8ce032339860b209fd077bf9ae325d4df","wss://pyramid.fiatjaf.com/","root","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4","wss://cobrafuma.com/relay"]]}] +[14:33:20.161] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:20.221] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:33:20.282] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:33:20.343] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:33:20.403] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:33:20.463] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:20.524] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:33:20.585] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:20.645] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:33:20.706] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:33:20.766] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:33:20.827] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:33:20.888] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:33:21.311] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:33:21.794] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:33:21.854] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:33:21.975] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:33:22.458] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:33:23.885] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:23.885] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:23.886] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:23.886] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:24.038] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolutely loved it here!\nUtah amazed me not just with its 150-million-year-old dinosaur fossils and 1,000-year-old wall paintings, but also with its incredible canyons. I can’t decide what’s more exciting: touching ancient history or witnessing the beauty of geology. Either way, it was totally worth the full day of exploring. Another one checked off the to-do list ✔️\nhttps://blossom.primal.net/ea089fffe3fae5c1a23b488ebd93b14ce5fe0bbe197d872d9aa645f609b30131.jpg\nhttps://blossom.primal.net/58e2bd01b8f1e3906df39dcb74ac8544b1404fdb5026f760c409eb546c4368cb.jpg\nhttps://blossom.primal.net/a47ea7983593f40aa58e4ee4d7f137160e287c754c6969e4645e07c070bbb7cf.jpg\nhttps://blossom.primal.net/50b8631745042a1a1097a727e34120d7f7d43def2b640606af2b702d890b86a0.jpg","created_at":1759429998,"id":"c97d95b20e8c7d087ade75d5b7d49228172b35acce3ab486378df77b2ae96490","kind":1,"pubkey":"f74eda3a6c57670ba0eda854dc53c7e4875fbdee7ca1a1344471bcdcc9f69133","sig":"1baa9df90744249df9576b05cd47f4c35d2961eb1f8b11e6a9d6c34398d0d767d8b60a65f19ce4c4af0bf3dd7b0f73b6f45e32098c8798dce3a288490a9cd834","tags":[]}] +[14:33:24.098] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","created_at":1759429998,"id":"c5bbbca355cab2adf622ec0a8fc134dcf55707bdc18d5aebc684f0615fce285f","kind":1,"pubkey":"c8383d81dd24406745b68409be40d6721c301029464067fcc50a25ddf9139549","sig":"e60c4077b62d278b1dc3ad117772e3518e7a6dd0c0ba8467750e644cb377f975ca4363c8ebe71429ee130e1743bff977bbd8ff901d514b163d8d82dd192731c9","tags":[["imeta","url https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","blurhash ecMG#Jx]?bS4%M~qs:R*j[Rj?^M{M{s.RjkXRjRjWBjY-;oKWCWBay","dim 1284x1205"],["r","https://i.nostr.build/IoP50bwnY5ph2kAy.jpg"]]}] +[14:33:24.159] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"He's in to some weird shit...😂","created_at":1759429998,"id":"d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"d0879c9708611e79ce2603a22fc160d6bf8c4b2f9af4251e84e114f68bc30807c389ef26f89cddd024a060c322390df267526fcfec23bac06e9556f5e97a713d","tags":[["alt","A short note: He's in to some weird shit...😂"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","wss://nostr.wine/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:33:24.219] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah definitely. But at scale. Work together with all Bitcoin meetups would be a beginning. Better than what we have now. Even though it wouldn't scale enough to reach everyone.","created_at":1759429993,"id":"0025ec6870c1da0eef5950248c126cef9c62bb23a2e6bf77da5f12b42b0b0d11","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"88ec0b36df24b0adb70eec8733b1ec1412aa8b33abfaa30482c02e384611df90846e227280de05e637841ac6fbc0f9fa5e81b0a930dc8aebe6edcaf9b0dc6c62","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"]]}] +[14:33:24.280] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今北産業","created_at":1759429990,"id":"14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"820f791dc1ae7ff34c2231efcc4cebd9ef80918b7b1a7351e26d9070a50aa0b3abebe9d4b2451ac29d715bdf634837612e81f6e3ed786252a9930cc532ea9c62","tags":[["e","394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e",""],["e","24c50bec7ae0c58d2b258c1b359ddb7657be8493cfb61e6ed96927e1de579121","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:24.341] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 102485.5EUR (0%)\nBTC: 0.0099\nEUR: 1015\nMethod: Revolut\nCreated: 2025-10-02T18:28:27Z","created_at":1759429989,"id":"ee172d33132b5b74e48cdc0bb050fec347b6d18e20c5623144158e4cdceedbee","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"65887309c22eead0e0d4b9f32ffc29c3579d8d653aec9a3ea074558ff7ca2c2ca1d8b9a139e02dbba2b79cd444b1c7e5d16d51516d5bc42b84ad75e78443a2ea","tags":[]}] +[14:33:24.401] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I honestly don't want to sell it... but I'm in another housing crisis. Thankfully no where near as bad as 2023 when the community helped me not be homeless. \n\nTurns out, they never had a title...\nI'm now paying into escrow and waiting for court.\n🙄\n\nI'm honestly sick and tired of dealing with housing issues...\nI want somewhere I can get roots into the ground for once.","created_at":1759429986,"id":"20b75a49d097c025b85c20b0f56ea9589e2bbeb2282f5b20f605539e75d42f50","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"1ea0a597f19359a5ec61a2d91b551c4989505da4fb342575f6f946f2d0ff47174b635ec3159c31ccf5c7c2fd52be6ee21cc1b4ff7f69dfc7d30ed7995b288cd8","tags":[["alt","A short note: I honestly don't want to sell it... but I'm in ano..."],["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","wss://bitcoiner.social/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","wss://relay.damus.io/","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"]]}] +[14:33:24.462] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔔 Francie bude soudit kapitána lodi ze zadržené ruské lodi, odmítl výzvu armády: \n\nFrancouzská justice bude soudit čínského kapitána lodi z takzvané ruské stínové flotily, kterou francouzští vojáci ve středu zadrželi u pobřeží Bretaně. Prokuratura proti němu vznesla obvinění kvůli tomu, že se odmítl podřídit výzvě armády. Soud se bude konat 23. února. Loď je podezřelá i z účasti na nelegálních přeletech dronů v Dánsku. \nhttps://www.idnes.cz/zpravy/zahranicni/francie-soud-cina-kapitan-rusko-stinova-flotila-dansko-dron.A251002_144101_zahranicni_dtt \n#CzechNews #News #Press #Media","created_at":1759429981,"id":"65e8d943d79d21ccf1e308a2d409ec8ce7aa3e6e76934bb476b7875abc710742","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"07f0d4d398d367b8f5892e3aa31ddb19c56949b1dfac52a4c1b1d9a2b727b1215ab68a4f7d0b69bbbe282fcae6b8e1076fb09fcb8573ab9675eed4321ff8be6e","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[14:33:24.523] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Searches for “second job” have hit an all-time high, surpassing 2008 crisis and COVID levels.\n\nSecond jobs are the new normal.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759429760967-G2RlqpaXcAArH_H.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759429981,"id":"552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"2c25ca686291c59fc9c3f8454b9f1db523ea54fd5bedef16d4a74e71331a92206297b2d7886e2b5c3f038345a1dfbe51f01494b07b59e7af168b07ff05efe712","tags":[]}] +[14:33:24.583] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"気絶します","created_at":1759429975,"id":"3afb674c8b7c4d8dad7c0d450ca4940bb0fc70d676bae1e1151e19236477ccdb","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"3a77d4ab09fa1cc3b6a7c084b050f6a5ae5af04415440ffa731f782bfae42cd87a9973c5a697da87578c418e7dce24cafb0d8a300f2e52340503f6c01fac402c","tags":[]}] +[14:33:24.644] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:24.704] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:24.765] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:24.826] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:33:24.886] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:33:24.947] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:33:25.008] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:33:25.068] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:25.128] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:33:25.189] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:25.249] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:33:25.310] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:33:25.371] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:33:25.793] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:33:26.276] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:33:26.337] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:33:26.458] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:33:26.941] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:33:28.398] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:28.398] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:28.398] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:28.398] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:28.549] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolutely loved it here!\nUtah amazed me not just with its 150-million-year-old dinosaur fossils and 1,000-year-old wall paintings, but also with its incredible canyons. I can’t decide what’s more exciting: touching ancient history or witnessing the beauty of geology. Either way, it was totally worth the full day of exploring. Another one checked off the to-do list ✔️\nhttps://blossom.primal.net/ea089fffe3fae5c1a23b488ebd93b14ce5fe0bbe197d872d9aa645f609b30131.jpg\nhttps://blossom.primal.net/58e2bd01b8f1e3906df39dcb74ac8544b1404fdb5026f760c409eb546c4368cb.jpg\nhttps://blossom.primal.net/a47ea7983593f40aa58e4ee4d7f137160e287c754c6969e4645e07c070bbb7cf.jpg\nhttps://blossom.primal.net/50b8631745042a1a1097a727e34120d7f7d43def2b640606af2b702d890b86a0.jpg","created_at":1759429998,"id":"c97d95b20e8c7d087ade75d5b7d49228172b35acce3ab486378df77b2ae96490","kind":1,"pubkey":"f74eda3a6c57670ba0eda854dc53c7e4875fbdee7ca1a1344471bcdcc9f69133","sig":"1baa9df90744249df9576b05cd47f4c35d2961eb1f8b11e6a9d6c34398d0d767d8b60a65f19ce4c4af0bf3dd7b0f73b6f45e32098c8798dce3a288490a9cd834","tags":[]}] +[14:33:28.560] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","created_at":1759429998,"id":"c5bbbca355cab2adf622ec0a8fc134dcf55707bdc18d5aebc684f0615fce285f","kind":1,"pubkey":"c8383d81dd24406745b68409be40d6721c301029464067fcc50a25ddf9139549","sig":"e60c4077b62d278b1dc3ad117772e3518e7a6dd0c0ba8467750e644cb377f975ca4363c8ebe71429ee130e1743bff977bbd8ff901d514b163d8d82dd192731c9","tags":[["imeta","url https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","blurhash ecMG#Jx]?bS4%M~qs:R*j[Rj?^M{M{s.RjkXRjRjWBjY-;oKWCWBay","dim 1284x1205"],["r","https://i.nostr.build/IoP50bwnY5ph2kAy.jpg"]]}] +[14:33:28.620] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"He's in to some weird shit...😂","created_at":1759429998,"id":"d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"d0879c9708611e79ce2603a22fc160d6bf8c4b2f9af4251e84e114f68bc30807c389ef26f89cddd024a060c322390df267526fcfec23bac06e9556f5e97a713d","tags":[["alt","A short note: He's in to some weird shit...😂"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","wss://nostr.wine/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:33:28.681] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah definitely. But at scale. Work together with all Bitcoin meetups would be a beginning. Better than what we have now. Even though it wouldn't scale enough to reach everyone.","created_at":1759429993,"id":"0025ec6870c1da0eef5950248c126cef9c62bb23a2e6bf77da5f12b42b0b0d11","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"88ec0b36df24b0adb70eec8733b1ec1412aa8b33abfaa30482c02e384611df90846e227280de05e637841ac6fbc0f9fa5e81b0a930dc8aebe6edcaf9b0dc6c62","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"]]}] +[14:33:28.741] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今北産業","created_at":1759429990,"id":"14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"820f791dc1ae7ff34c2231efcc4cebd9ef80918b7b1a7351e26d9070a50aa0b3abebe9d4b2451ac29d715bdf634837612e81f6e3ed786252a9930cc532ea9c62","tags":[["e","394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e",""],["e","24c50bec7ae0c58d2b258c1b359ddb7657be8493cfb61e6ed96927e1de579121","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:28.802] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 102485.5EUR (0%)\nBTC: 0.0099\nEUR: 1015\nMethod: Revolut\nCreated: 2025-10-02T18:28:27Z","created_at":1759429989,"id":"ee172d33132b5b74e48cdc0bb050fec347b6d18e20c5623144158e4cdceedbee","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"65887309c22eead0e0d4b9f32ffc29c3579d8d653aec9a3ea074558ff7ca2c2ca1d8b9a139e02dbba2b79cd444b1c7e5d16d51516d5bc42b84ad75e78443a2ea","tags":[]}] +[14:33:28.862] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I honestly don't want to sell it... but I'm in another housing crisis. Thankfully no where near as bad as 2023 when the community helped me not be homeless. \n\nTurns out, they never had a title...\nI'm now paying into escrow and waiting for court.\n🙄\n\nI'm honestly sick and tired of dealing with housing issues...\nI want somewhere I can get roots into the ground for once.","created_at":1759429986,"id":"20b75a49d097c025b85c20b0f56ea9589e2bbeb2282f5b20f605539e75d42f50","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"1ea0a597f19359a5ec61a2d91b551c4989505da4fb342575f6f946f2d0ff47174b635ec3159c31ccf5c7c2fd52be6ee21cc1b4ff7f69dfc7d30ed7995b288cd8","tags":[["alt","A short note: I honestly don't want to sell it... but I'm in ano..."],["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","wss://bitcoiner.social/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","wss://relay.damus.io/","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"]]}] +[14:33:28.923] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔔 Francie bude soudit kapitána lodi ze zadržené ruské lodi, odmítl výzvu armády: \n\nFrancouzská justice bude soudit čínského kapitána lodi z takzvané ruské stínové flotily, kterou francouzští vojáci ve středu zadrželi u pobřeží Bretaně. Prokuratura proti němu vznesla obvinění kvůli tomu, že se odmítl podřídit výzvě armády. Soud se bude konat 23. února. Loď je podezřelá i z účasti na nelegálních přeletech dronů v Dánsku. \nhttps://www.idnes.cz/zpravy/zahranicni/francie-soud-cina-kapitan-rusko-stinova-flotila-dansko-dron.A251002_144101_zahranicni_dtt \n#CzechNews #News #Press #Media","created_at":1759429981,"id":"65e8d943d79d21ccf1e308a2d409ec8ce7aa3e6e76934bb476b7875abc710742","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"07f0d4d398d367b8f5892e3aa31ddb19c56949b1dfac52a4c1b1d9a2b727b1215ab68a4f7d0b69bbbe282fcae6b8e1076fb09fcb8573ab9675eed4321ff8be6e","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[14:33:28.983] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Searches for “second job” have hit an all-time high, surpassing 2008 crisis and COVID levels.\n\nSecond jobs are the new normal.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759429760967-G2RlqpaXcAArH_H.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759429981,"id":"552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"2c25ca686291c59fc9c3f8454b9f1db523ea54fd5bedef16d4a74e71331a92206297b2d7886e2b5c3f038345a1dfbe51f01494b07b59e7af168b07ff05efe712","tags":[]}] +[14:33:29.043] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"気絶します","created_at":1759429975,"id":"3afb674c8b7c4d8dad7c0d450ca4940bb0fc70d676bae1e1151e19236477ccdb","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"3a77d4ab09fa1cc3b6a7c084b050f6a5ae5af04415440ffa731f782bfae42cd87a9973c5a697da87578c418e7dce24cafb0d8a300f2e52340503f6c01fac402c","tags":[]}] +[14:33:29.104] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:29.164] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:33:29.225] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:29.286] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:29.346] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:33:29.407] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:33:29.467] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:33:29.528] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:33:29.588] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:29.649] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:33:29.709] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:29.770] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:33:29.830] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:33:30.253] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:33:30.736] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:33:30.797] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:33:30.917] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:33:31.401] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:33:32.858] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:32.858] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:32.858] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:32.859] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:33.011] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんだよ","created_at":1759430012,"id":"665de5364a168cd5b3835d3af571ec9012ef62ee7f9bf99f5612d15c1ad7390f","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3f7d552b68b0abb0a246938d7e2e9e84a15331a407667bdaef40625fb8d06635aef3ee59a97b4ec493d11f0f381aee4505120a622abfc50b05c2ab24a0a64141","tags":[["e","14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752",""],["e","981676a1c0c498100d9f6501c4ecf8cd087635b33c03c3884d972f42c4976530","wss://relay.damus.io","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:33.071] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolutely loved it here!\nUtah amazed me not just with its 150-million-year-old dinosaur fossils and 1,000-year-old wall paintings, but also with its incredible canyons. I can’t decide what’s more exciting: touching ancient history or witnessing the beauty of geology. Either way, it was totally worth the full day of exploring. Another one checked off the to-do list ✔️\nhttps://blossom.primal.net/ea089fffe3fae5c1a23b488ebd93b14ce5fe0bbe197d872d9aa645f609b30131.jpg\nhttps://blossom.primal.net/58e2bd01b8f1e3906df39dcb74ac8544b1404fdb5026f760c409eb546c4368cb.jpg\nhttps://blossom.primal.net/a47ea7983593f40aa58e4ee4d7f137160e287c754c6969e4645e07c070bbb7cf.jpg\nhttps://blossom.primal.net/50b8631745042a1a1097a727e34120d7f7d43def2b640606af2b702d890b86a0.jpg","created_at":1759429998,"id":"c97d95b20e8c7d087ade75d5b7d49228172b35acce3ab486378df77b2ae96490","kind":1,"pubkey":"f74eda3a6c57670ba0eda854dc53c7e4875fbdee7ca1a1344471bcdcc9f69133","sig":"1baa9df90744249df9576b05cd47f4c35d2961eb1f8b11e6a9d6c34398d0d767d8b60a65f19ce4c4af0bf3dd7b0f73b6f45e32098c8798dce3a288490a9cd834","tags":[]}] +[14:33:33.097] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","created_at":1759429998,"id":"c5bbbca355cab2adf622ec0a8fc134dcf55707bdc18d5aebc684f0615fce285f","kind":1,"pubkey":"c8383d81dd24406745b68409be40d6721c301029464067fcc50a25ddf9139549","sig":"e60c4077b62d278b1dc3ad117772e3518e7a6dd0c0ba8467750e644cb377f975ca4363c8ebe71429ee130e1743bff977bbd8ff901d514b163d8d82dd192731c9","tags":[["imeta","url https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","blurhash ecMG#Jx]?bS4%M~qs:R*j[Rj?^M{M{s.RjkXRjRjWBjY-;oKWCWBay","dim 1284x1205"],["r","https://i.nostr.build/IoP50bwnY5ph2kAy.jpg"]]}] +[14:33:33.157] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"He's in to some weird shit...😂","created_at":1759429998,"id":"d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"d0879c9708611e79ce2603a22fc160d6bf8c4b2f9af4251e84e114f68bc30807c389ef26f89cddd024a060c322390df267526fcfec23bac06e9556f5e97a713d","tags":[["alt","A short note: He's in to some weird shit...😂"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","wss://nostr.wine/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:33:33.218] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah definitely. But at scale. Work together with all Bitcoin meetups would be a beginning. Better than what we have now. Even though it wouldn't scale enough to reach everyone.","created_at":1759429993,"id":"0025ec6870c1da0eef5950248c126cef9c62bb23a2e6bf77da5f12b42b0b0d11","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"88ec0b36df24b0adb70eec8733b1ec1412aa8b33abfaa30482c02e384611df90846e227280de05e637841ac6fbc0f9fa5e81b0a930dc8aebe6edcaf9b0dc6c62","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"]]}] +[14:33:33.278] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今北産業","created_at":1759429990,"id":"14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"820f791dc1ae7ff34c2231efcc4cebd9ef80918b7b1a7351e26d9070a50aa0b3abebe9d4b2451ac29d715bdf634837612e81f6e3ed786252a9930cc532ea9c62","tags":[["e","394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e",""],["e","24c50bec7ae0c58d2b258c1b359ddb7657be8493cfb61e6ed96927e1de579121","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:33.339] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 102485.5EUR (0%)\nBTC: 0.0099\nEUR: 1015\nMethod: Revolut\nCreated: 2025-10-02T18:28:27Z","created_at":1759429989,"id":"ee172d33132b5b74e48cdc0bb050fec347b6d18e20c5623144158e4cdceedbee","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"65887309c22eead0e0d4b9f32ffc29c3579d8d653aec9a3ea074558ff7ca2c2ca1d8b9a139e02dbba2b79cd444b1c7e5d16d51516d5bc42b84ad75e78443a2ea","tags":[]}] +[14:33:33.399] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I honestly don't want to sell it... but I'm in another housing crisis. Thankfully no where near as bad as 2023 when the community helped me not be homeless. \n\nTurns out, they never had a title...\nI'm now paying into escrow and waiting for court.\n🙄\n\nI'm honestly sick and tired of dealing with housing issues...\nI want somewhere I can get roots into the ground for once.","created_at":1759429986,"id":"20b75a49d097c025b85c20b0f56ea9589e2bbeb2282f5b20f605539e75d42f50","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"1ea0a597f19359a5ec61a2d91b551c4989505da4fb342575f6f946f2d0ff47174b635ec3159c31ccf5c7c2fd52be6ee21cc1b4ff7f69dfc7d30ed7995b288cd8","tags":[["alt","A short note: I honestly don't want to sell it... but I'm in ano..."],["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","wss://bitcoiner.social/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","wss://relay.damus.io/","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"]]}] +[14:33:33.460] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔔 Francie bude soudit kapitána lodi ze zadržené ruské lodi, odmítl výzvu armády: \n\nFrancouzská justice bude soudit čínského kapitána lodi z takzvané ruské stínové flotily, kterou francouzští vojáci ve středu zadrželi u pobřeží Bretaně. Prokuratura proti němu vznesla obvinění kvůli tomu, že se odmítl podřídit výzvě armády. Soud se bude konat 23. února. Loď je podezřelá i z účasti na nelegálních přeletech dronů v Dánsku. \nhttps://www.idnes.cz/zpravy/zahranicni/francie-soud-cina-kapitan-rusko-stinova-flotila-dansko-dron.A251002_144101_zahranicni_dtt \n#CzechNews #News #Press #Media","created_at":1759429981,"id":"65e8d943d79d21ccf1e308a2d409ec8ce7aa3e6e76934bb476b7875abc710742","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"07f0d4d398d367b8f5892e3aa31ddb19c56949b1dfac52a4c1b1d9a2b727b1215ab68a4f7d0b69bbbe282fcae6b8e1076fb09fcb8573ab9675eed4321ff8be6e","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[14:33:33.521] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Searches for “second job” have hit an all-time high, surpassing 2008 crisis and COVID levels.\n\nSecond jobs are the new normal.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759429760967-G2RlqpaXcAArH_H.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759429981,"id":"552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"2c25ca686291c59fc9c3f8454b9f1db523ea54fd5bedef16d4a74e71331a92206297b2d7886e2b5c3f038345a1dfbe51f01494b07b59e7af168b07ff05efe712","tags":[]}] +[14:33:33.581] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:33.642] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:33:33.702] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:33:33.763] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:33.823] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:33.884] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:33:33.944] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:33:34.005] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:33:34.065] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:33:34.126] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:34.187] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:33:34.247] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:33:34.308] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:33:34.731] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:33:35.214] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:33:35.274] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:33:35.395] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:33:35.879] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:33:37.335] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:37.335] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:37.335] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:37.335] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:37.495] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8yxxl5trvslpznfqkw57larplsjhlt2fsuzf87gppemhxue69uhkummn9ekx7mp0qgsfln36agetx43hsw8mgkm4hce9j46zu94m8er59nyzhv74p7gg0esrqsqqqqqp85udp4","created_at":1759430015,"id":"fc02436bc77a38166c70fa15b6de131c4926310cfbd181821fee157b76c76244","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"caf71af9088488dcb9a7fcf17650693c9832e7913e1efeb0dbc98d556fe69b7ec7bc14f783b317bfda1e58a3cc7b94e2859a20fc64b18ca87c92289a51e78048","tags":[["alt","A short note: I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8y..."],["p","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","wss://relay.primal.net/"],["q","fe3ee6db8a5dc9a3390c6fd163643e114d20b3a9eff461fc257fad49870493f9","wss://nos.lol/","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6"]]}] +[14:33:37.556] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんだよ","created_at":1759430012,"id":"665de5364a168cd5b3835d3af571ec9012ef62ee7f9bf99f5612d15c1ad7390f","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3f7d552b68b0abb0a246938d7e2e9e84a15331a407667bdaef40625fb8d06635aef3ee59a97b4ec493d11f0f381aee4505120a622abfc50b05c2ab24a0a64141","tags":[["e","14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752",""],["e","981676a1c0c498100d9f6501c4ecf8cd087635b33c03c3884d972f42c4976530","wss://relay.damus.io","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:37.617] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapathon https://i.imgur.com/e10Az5m.gif\nnostr:nevent1qqstnsupncdts4ey97vchjawkaap06c949qvhmqhsffct09tm7pkwsqzypay44dc3s2hfr9hta386ltlmtd4uj6c300pqxqrcunszp7akadc6qcyqqqqqqgq85sme","created_at":1759430006,"id":"fe6b1db6db9be5eec48b1adc2dd95f7b88d552e614bb098bc3916beba979fee0","kind":1,"pubkey":"aa746c026c3b37de2c9a721fbf8e110235ffbb35f99620002d9ff60edebe9986","sig":"28a44f13a18dafc90965f3f4e518803d0b256c523e997b89263297bc147230d03886250f656a8ffc5193535712fbbf4d1e57ff51357f912569890d4de1e49600","tags":[["q","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["t","zapathon"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:33:37.677] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolutely loved it here!\nUtah amazed me not just with its 150-million-year-old dinosaur fossils and 1,000-year-old wall paintings, but also with its incredible canyons. I can’t decide what’s more exciting: touching ancient history or witnessing the beauty of geology. Either way, it was totally worth the full day of exploring. Another one checked off the to-do list ✔️\nhttps://blossom.primal.net/ea089fffe3fae5c1a23b488ebd93b14ce5fe0bbe197d872d9aa645f609b30131.jpg\nhttps://blossom.primal.net/58e2bd01b8f1e3906df39dcb74ac8544b1404fdb5026f760c409eb546c4368cb.jpg\nhttps://blossom.primal.net/a47ea7983593f40aa58e4ee4d7f137160e287c754c6969e4645e07c070bbb7cf.jpg\nhttps://blossom.primal.net/50b8631745042a1a1097a727e34120d7f7d43def2b640606af2b702d890b86a0.jpg","created_at":1759429998,"id":"c97d95b20e8c7d087ade75d5b7d49228172b35acce3ab486378df77b2ae96490","kind":1,"pubkey":"f74eda3a6c57670ba0eda854dc53c7e4875fbdee7ca1a1344471bcdcc9f69133","sig":"1baa9df90744249df9576b05cd47f4c35d2961eb1f8b11e6a9d6c34398d0d767d8b60a65f19ce4c4af0bf3dd7b0f73b6f45e32098c8798dce3a288490a9cd834","tags":[]}] +[14:33:37.738] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","created_at":1759429998,"id":"c5bbbca355cab2adf622ec0a8fc134dcf55707bdc18d5aebc684f0615fce285f","kind":1,"pubkey":"c8383d81dd24406745b68409be40d6721c301029464067fcc50a25ddf9139549","sig":"e60c4077b62d278b1dc3ad117772e3518e7a6dd0c0ba8467750e644cb377f975ca4363c8ebe71429ee130e1743bff977bbd8ff901d514b163d8d82dd192731c9","tags":[["imeta","url https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","blurhash ecMG#Jx]?bS4%M~qs:R*j[Rj?^M{M{s.RjkXRjRjWBjY-;oKWCWBay","dim 1284x1205"],["r","https://i.nostr.build/IoP50bwnY5ph2kAy.jpg"]]}] +[14:33:37.798] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"He's in to some weird shit...😂","created_at":1759429998,"id":"d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"d0879c9708611e79ce2603a22fc160d6bf8c4b2f9af4251e84e114f68bc30807c389ef26f89cddd024a060c322390df267526fcfec23bac06e9556f5e97a713d","tags":[["alt","A short note: He's in to some weird shit...😂"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","wss://nostr.wine/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:33:37.859] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah definitely. But at scale. Work together with all Bitcoin meetups would be a beginning. Better than what we have now. Even though it wouldn't scale enough to reach everyone.","created_at":1759429993,"id":"0025ec6870c1da0eef5950248c126cef9c62bb23a2e6bf77da5f12b42b0b0d11","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"88ec0b36df24b0adb70eec8733b1ec1412aa8b33abfaa30482c02e384611df90846e227280de05e637841ac6fbc0f9fa5e81b0a930dc8aebe6edcaf9b0dc6c62","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"]]}] +[14:33:37.919] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今北産業","created_at":1759429990,"id":"14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"820f791dc1ae7ff34c2231efcc4cebd9ef80918b7b1a7351e26d9070a50aa0b3abebe9d4b2451ac29d715bdf634837612e81f6e3ed786252a9930cc532ea9c62","tags":[["e","394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e",""],["e","24c50bec7ae0c58d2b258c1b359ddb7657be8493cfb61e6ed96927e1de579121","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:37.980] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 102485.5EUR (0%)\nBTC: 0.0099\nEUR: 1015\nMethod: Revolut\nCreated: 2025-10-02T18:28:27Z","created_at":1759429989,"id":"ee172d33132b5b74e48cdc0bb050fec347b6d18e20c5623144158e4cdceedbee","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"65887309c22eead0e0d4b9f32ffc29c3579d8d653aec9a3ea074558ff7ca2c2ca1d8b9a139e02dbba2b79cd444b1c7e5d16d51516d5bc42b84ad75e78443a2ea","tags":[]}] +[14:33:38.040] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I honestly don't want to sell it... but I'm in another housing crisis. Thankfully no where near as bad as 2023 when the community helped me not be homeless. \n\nTurns out, they never had a title...\nI'm now paying into escrow and waiting for court.\n🙄\n\nI'm honestly sick and tired of dealing with housing issues...\nI want somewhere I can get roots into the ground for once.","created_at":1759429986,"id":"20b75a49d097c025b85c20b0f56ea9589e2bbeb2282f5b20f605539e75d42f50","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"1ea0a597f19359a5ec61a2d91b551c4989505da4fb342575f6f946f2d0ff47174b635ec3159c31ccf5c7c2fd52be6ee21cc1b4ff7f69dfc7d30ed7995b288cd8","tags":[["alt","A short note: I honestly don't want to sell it... but I'm in ano..."],["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","wss://bitcoiner.social/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","wss://relay.damus.io/","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"]]}] +[14:33:38.101] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:38.127] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:38.188] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:33:38.248] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:33:38.309] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:33:38.369] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:38.430] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:38.490] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:33:38.551] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:33:38.611] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:33:38.672] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:33:38.732] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:33:38.793] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:33:39.215] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:33:39.698] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:33:39.758] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:33:39.879] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:33:40.362] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:33:41.815] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:41.816] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:41.816] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:41.816] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:41.966] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub16ws45r63qruealwvc697493nsdzs2k93hw9j8dc2d0affjakskuqdewfmt 🐳 zapped nostr:npub1trr5r2nrpsk6xkjk5a7p6pfcryyt6yzsflwjmz6r7uj7lfkjxxtq78hdpu 21,000 sats\n\n💬 🆓\n\nhttps://image.nostr.build/67f24a884ab5f7d37c1cdadefa17476f498e757953131809f2099076bcff1630.jpg\nhttps://raw.githubusercontent.com/ray-bun/Twitter_Bitcoin_Lightning_Tipping_Bot/master/memes/bvnb.gif\nhttps://image.nostr.build/b886d4b6aa486fa9a571b9a503c3496365ddd9cea88e346ed4f028d832694add.jpg","created_at":1759430020,"id":"b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"159b4b8ca6cd24dff32797e423bfaf1c065283b59c8036463443845b00d48548aa1b9e3f72d25a0b52fbdd3fd2dc06830f122b1b07cc815d69d682a728e5bdb6","tags":[["t","fatzaps"],["t","zap"],["t","nostrzap"],["p","d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","","mention"],["p","58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","","mention"]]}] +[14:33:42.027] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8yxxl5trvslpznfqkw57larplsjhlt2fsuzf87gppemhxue69uhkummn9ekx7mp0qgsfln36agetx43hsw8mgkm4hce9j46zu94m8er59nyzhv74p7gg0esrqsqqqqqp85udp4","created_at":1759430015,"id":"fc02436bc77a38166c70fa15b6de131c4926310cfbd181821fee157b76c76244","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"caf71af9088488dcb9a7fcf17650693c9832e7913e1efeb0dbc98d556fe69b7ec7bc14f783b317bfda1e58a3cc7b94e2859a20fc64b18ca87c92289a51e78048","tags":[["alt","A short note: I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8y..."],["p","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","wss://relay.primal.net/"],["q","fe3ee6db8a5dc9a3390c6fd163643e114d20b3a9eff461fc257fad49870493f9","wss://nos.lol/","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6"]]}] +[14:33:42.087] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんだよ","created_at":1759430012,"id":"665de5364a168cd5b3835d3af571ec9012ef62ee7f9bf99f5612d15c1ad7390f","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3f7d552b68b0abb0a246938d7e2e9e84a15331a407667bdaef40625fb8d06635aef3ee59a97b4ec493d11f0f381aee4505120a622abfc50b05c2ab24a0a64141","tags":[["e","14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752",""],["e","981676a1c0c498100d9f6501c4ecf8cd087635b33c03c3884d972f42c4976530","wss://relay.damus.io","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:42.148] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapathon https://i.imgur.com/e10Az5m.gif\nnostr:nevent1qqstnsupncdts4ey97vchjawkaap06c949qvhmqhsffct09tm7pkwsqzypay44dc3s2hfr9hta386ltlmtd4uj6c300pqxqrcunszp7akadc6qcyqqqqqqgq85sme","created_at":1759430006,"id":"fe6b1db6db9be5eec48b1adc2dd95f7b88d552e614bb098bc3916beba979fee0","kind":1,"pubkey":"aa746c026c3b37de2c9a721fbf8e110235ffbb35f99620002d9ff60edebe9986","sig":"28a44f13a18dafc90965f3f4e518803d0b256c523e997b89263297bc147230d03886250f656a8ffc5193535712fbbf4d1e57ff51357f912569890d4de1e49600","tags":[["q","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["t","zapathon"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:33:42.208] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolutely loved it here!\nUtah amazed me not just with its 150-million-year-old dinosaur fossils and 1,000-year-old wall paintings, but also with its incredible canyons. I can’t decide what’s more exciting: touching ancient history or witnessing the beauty of geology. Either way, it was totally worth the full day of exploring. Another one checked off the to-do list ✔️\nhttps://blossom.primal.net/ea089fffe3fae5c1a23b488ebd93b14ce5fe0bbe197d872d9aa645f609b30131.jpg\nhttps://blossom.primal.net/58e2bd01b8f1e3906df39dcb74ac8544b1404fdb5026f760c409eb546c4368cb.jpg\nhttps://blossom.primal.net/a47ea7983593f40aa58e4ee4d7f137160e287c754c6969e4645e07c070bbb7cf.jpg\nhttps://blossom.primal.net/50b8631745042a1a1097a727e34120d7f7d43def2b640606af2b702d890b86a0.jpg","created_at":1759429998,"id":"c97d95b20e8c7d087ade75d5b7d49228172b35acce3ab486378df77b2ae96490","kind":1,"pubkey":"f74eda3a6c57670ba0eda854dc53c7e4875fbdee7ca1a1344471bcdcc9f69133","sig":"1baa9df90744249df9576b05cd47f4c35d2961eb1f8b11e6a9d6c34398d0d767d8b60a65f19ce4c4af0bf3dd7b0f73b6f45e32098c8798dce3a288490a9cd834","tags":[]}] +[14:33:42.269] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","created_at":1759429998,"id":"c5bbbca355cab2adf622ec0a8fc134dcf55707bdc18d5aebc684f0615fce285f","kind":1,"pubkey":"c8383d81dd24406745b68409be40d6721c301029464067fcc50a25ddf9139549","sig":"e60c4077b62d278b1dc3ad117772e3518e7a6dd0c0ba8467750e644cb377f975ca4363c8ebe71429ee130e1743bff977bbd8ff901d514b163d8d82dd192731c9","tags":[["imeta","url https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","blurhash ecMG#Jx]?bS4%M~qs:R*j[Rj?^M{M{s.RjkXRjRjWBjY-;oKWCWBay","dim 1284x1205"],["r","https://i.nostr.build/IoP50bwnY5ph2kAy.jpg"]]}] +[14:33:42.329] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"He's in to some weird shit...😂","created_at":1759429998,"id":"d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"d0879c9708611e79ce2603a22fc160d6bf8c4b2f9af4251e84e114f68bc30807c389ef26f89cddd024a060c322390df267526fcfec23bac06e9556f5e97a713d","tags":[["alt","A short note: He's in to some weird shit...😂"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","wss://nostr.wine/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:33:42.390] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah definitely. But at scale. Work together with all Bitcoin meetups would be a beginning. Better than what we have now. Even though it wouldn't scale enough to reach everyone.","created_at":1759429993,"id":"0025ec6870c1da0eef5950248c126cef9c62bb23a2e6bf77da5f12b42b0b0d11","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"88ec0b36df24b0adb70eec8733b1ec1412aa8b33abfaa30482c02e384611df90846e227280de05e637841ac6fbc0f9fa5e81b0a930dc8aebe6edcaf9b0dc6c62","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"]]}] +[14:33:42.451] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今北産業","created_at":1759429990,"id":"14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"820f791dc1ae7ff34c2231efcc4cebd9ef80918b7b1a7351e26d9070a50aa0b3abebe9d4b2451ac29d715bdf634837612e81f6e3ed786252a9930cc532ea9c62","tags":[["e","394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e",""],["e","24c50bec7ae0c58d2b258c1b359ddb7657be8493cfb61e6ed96927e1de579121","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:42.511] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 102485.5EUR (0%)\nBTC: 0.0099\nEUR: 1015\nMethod: Revolut\nCreated: 2025-10-02T18:28:27Z","created_at":1759429989,"id":"ee172d33132b5b74e48cdc0bb050fec347b6d18e20c5623144158e4cdceedbee","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"65887309c22eead0e0d4b9f32ffc29c3579d8d653aec9a3ea074558ff7ca2c2ca1d8b9a139e02dbba2b79cd444b1c7e5d16d51516d5bc42b84ad75e78443a2ea","tags":[]}] +[14:33:42.572] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:42.632] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:42.693] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:33:42.754] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:33:42.814] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:33:42.875] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:42.935] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:42.996] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:33:43.057] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:33:43.082] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:33:43.143] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:33:43.203] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:33:44.110] RECV nos.lol:443: 894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab +[14:33:45.144] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:45.144] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:45.144] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:45.144] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:45.204] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759428493",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,404\nBlock Hash: 00000000000000000000c8daaaae97ab8833e128e20398750edd525667fc512c\nTimestamp: 2025-10-02T18:33:30.000Z\nTransactions: 3,226\nBlock Size: 1.41 MB\nBlock Weight: 3,993,992 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917404","created_at":1759430024,"id":"9153bb047368213b9453b0afe19745a449e2e613b10c197e6d5c6ee1f0c5c985","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"a661203c8ab9d804440ce0b7ae6ae885783bd03632e501bfc79b4591a6316bdc13398e0ff34e05e73e299e4e3fe5d67538d83635778094ed0b9a8c211b4ba771","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917404"],["published_at","1759430010"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000000c8daaaae97ab8833e128e20398750edd525667fc512c"],["new_block","true"],["block_height","917404"],["block_hash","00000000000000000000c8daaaae97ab8833e128e20398750edd525667fc512c"],["block_time","1759430010"],["tx_count","3226"],["block_size","1481195"],["block_weight","3993992"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000037e21227df2c071cd6c75004c4d71192674d161033bf"],["mempool_tx_count","7419"],["mempool_size","2925455"],["memory_usage_pct","5.4"]]}] +[14:33:45.316] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub16ws45r63qruealwvc697493nsdzs2k93hw9j8dc2d0affjakskuqdewfmt 🐳 zapped nostr:npub1trr5r2nrpsk6xkjk5a7p6pfcryyt6yzsflwjmz6r7uj7lfkjxxtq78hdpu 21,000 sats\n\n💬 🆓\n\nhttps://image.nostr.build/67f24a884ab5f7d37c1cdadefa17476f498e757953131809f2099076bcff1630.jpg\nhttps://raw.githubusercontent.com/ray-bun/Twitter_Bitcoin_Lightning_Tipping_Bot/master/memes/bvnb.gif\nhttps://image.nostr.build/b886d4b6aa486fa9a571b9a503c3496365ddd9cea88e346ed4f028d832694add.jpg","created_at":1759430020,"id":"b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"159b4b8ca6cd24dff32797e423bfaf1c065283b59c8036463443845b00d48548aa1b9e3f72d25a0b52fbdd3fd2dc06830f122b1b07cc815d69d682a728e5bdb6","tags":[["t","fatzaps"],["t","zap"],["t","nostrzap"],["p","d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","","mention"],["p","58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","","mention"]]}] +[14:33:45.376] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8yxxl5trvslpznfqkw57larplsjhlt2fsuzf87gppemhxue69uhkummn9ekx7mp0qgsfln36agetx43hsw8mgkm4hce9j46zu94m8er59nyzhv74p7gg0esrqsqqqqqp85udp4","created_at":1759430015,"id":"fc02436bc77a38166c70fa15b6de131c4926310cfbd181821fee157b76c76244","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"caf71af9088488dcb9a7fcf17650693c9832e7913e1efeb0dbc98d556fe69b7ec7bc14f783b317bfda1e58a3cc7b94e2859a20fc64b18ca87c92289a51e78048","tags":[["alt","A short note: I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8y..."],["p","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","wss://relay.primal.net/"],["q","fe3ee6db8a5dc9a3390c6fd163643e114d20b3a9eff461fc257fad49870493f9","wss://nos.lol/","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6"]]}] +[14:33:45.437] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんだよ","created_at":1759430012,"id":"665de5364a168cd5b3835d3af571ec9012ef62ee7f9bf99f5612d15c1ad7390f","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3f7d552b68b0abb0a246938d7e2e9e84a15331a407667bdaef40625fb8d06635aef3ee59a97b4ec493d11f0f381aee4505120a622abfc50b05c2ab24a0a64141","tags":[["e","14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752",""],["e","981676a1c0c498100d9f6501c4ecf8cd087635b33c03c3884d972f42c4976530","wss://relay.damus.io","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:45.497] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapathon https://i.imgur.com/e10Az5m.gif\nnostr:nevent1qqstnsupncdts4ey97vchjawkaap06c949qvhmqhsffct09tm7pkwsqzypay44dc3s2hfr9hta386ltlmtd4uj6c300pqxqrcunszp7akadc6qcyqqqqqqgq85sme","created_at":1759430006,"id":"fe6b1db6db9be5eec48b1adc2dd95f7b88d552e614bb098bc3916beba979fee0","kind":1,"pubkey":"aa746c026c3b37de2c9a721fbf8e110235ffbb35f99620002d9ff60edebe9986","sig":"28a44f13a18dafc90965f3f4e518803d0b256c523e997b89263297bc147230d03886250f656a8ffc5193535712fbbf4d1e57ff51357f912569890d4de1e49600","tags":[["q","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["t","zapathon"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:33:45.558] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolutely loved it here!\nUtah amazed me not just with its 150-million-year-old dinosaur fossils and 1,000-year-old wall paintings, but also with its incredible canyons. I can’t decide what’s more exciting: touching ancient history or witnessing the beauty of geology. Either way, it was totally worth the full day of exploring. Another one checked off the to-do list ✔️\nhttps://blossom.primal.net/ea089fffe3fae5c1a23b488ebd93b14ce5fe0bbe197d872d9aa645f609b30131.jpg\nhttps://blossom.primal.net/58e2bd01b8f1e3906df39dcb74ac8544b1404fdb5026f760c409eb546c4368cb.jpg\nhttps://blossom.primal.net/a47ea7983593f40aa58e4ee4d7f137160e287c754c6969e4645e07c070bbb7cf.jpg\nhttps://blossom.primal.net/50b8631745042a1a1097a727e34120d7f7d43def2b640606af2b702d890b86a0.jpg","created_at":1759429998,"id":"c97d95b20e8c7d087ade75d5b7d49228172b35acce3ab486378df77b2ae96490","kind":1,"pubkey":"f74eda3a6c57670ba0eda854dc53c7e4875fbdee7ca1a1344471bcdcc9f69133","sig":"1baa9df90744249df9576b05cd47f4c35d2961eb1f8b11e6a9d6c34398d0d767d8b60a65f19ce4c4af0bf3dd7b0f73b6f45e32098c8798dce3a288490a9cd834","tags":[]}] +[14:33:45.618] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","created_at":1759429998,"id":"c5bbbca355cab2adf622ec0a8fc134dcf55707bdc18d5aebc684f0615fce285f","kind":1,"pubkey":"c8383d81dd24406745b68409be40d6721c301029464067fcc50a25ddf9139549","sig":"e60c4077b62d278b1dc3ad117772e3518e7a6dd0c0ba8467750e644cb377f975ca4363c8ebe71429ee130e1743bff977bbd8ff901d514b163d8d82dd192731c9","tags":[["imeta","url https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","blurhash ecMG#Jx]?bS4%M~qs:R*j[Rj?^M{M{s.RjkXRjRjWBjY-;oKWCWBay","dim 1284x1205"],["r","https://i.nostr.build/IoP50bwnY5ph2kAy.jpg"]]}] +[14:33:45.679] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"He's in to some weird shit...😂","created_at":1759429998,"id":"d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"d0879c9708611e79ce2603a22fc160d6bf8c4b2f9af4251e84e114f68bc30807c389ef26f89cddd024a060c322390df267526fcfec23bac06e9556f5e97a713d","tags":[["alt","A short note: He's in to some weird shit...😂"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","wss://nostr.wine/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:33:45.740] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah definitely. But at scale. Work together with all Bitcoin meetups would be a beginning. Better than what we have now. Even though it wouldn't scale enough to reach everyone.","created_at":1759429993,"id":"0025ec6870c1da0eef5950248c126cef9c62bb23a2e6bf77da5f12b42b0b0d11","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"88ec0b36df24b0adb70eec8733b1ec1412aa8b33abfaa30482c02e384611df90846e227280de05e637841ac6fbc0f9fa5e81b0a930dc8aebe6edcaf9b0dc6c62","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"]]}] +[14:33:45.800] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今北産業","created_at":1759429990,"id":"14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"820f791dc1ae7ff34c2231efcc4cebd9ef80918b7b1a7351e26d9070a50aa0b3abebe9d4b2451ac29d715bdf634837612e81f6e3ed786252a9930cc532ea9c62","tags":[["e","394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e",""],["e","24c50bec7ae0c58d2b258c1b359ddb7657be8493cfb61e6ed96927e1de579121","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:45.861] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 102485.5EUR (0%)\nBTC: 0.0099\nEUR: 1015\nMethod: Revolut\nCreated: 2025-10-02T18:28:27Z","created_at":1759429989,"id":"ee172d33132b5b74e48cdc0bb050fec347b6d18e20c5623144158e4cdceedbee","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"65887309c22eead0e0d4b9f32ffc29c3579d8d653aec9a3ea074558ff7ca2c2ca1d8b9a139e02dbba2b79cd444b1c7e5d16d51516d5bc42b84ad75e78443a2ea","tags":[]}] +[14:33:45.921] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:45.982] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:46.042] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:33:46.103] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:33:46.164] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:33:46.224] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:46.285] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:46.346] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:33:46.406] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:33:46.467] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:33:46.527] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:33:46.588] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:33:47.494] RECV nos.lol:443: 894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab +[14:33:48.719] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:48.720] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:48.720] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:48.720] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:48.872] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Get nostr address nostr:npub1sma67s58kmv8wxlf7ar4f7v9lny5vv9gsk3f4vyws424r0s75fksx8k6x5 ","created_at":1759430025,"id":"14d496beef844fba106fa1db5df6653abbb315655d6d8c9a2bfca1f8e681daaa","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"2ccf9f662bb646d8e6857db5481260213ce78bc565990e0f249808adb435bd126f2ac0616817bf5f9c8b9ff1f069dedf947c081a3e109b657bc6ce1befee91cb","tags":[["e","b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","","root"],["p","ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371"],["p","86fbaf4287b6d8771be9f74754f985fcc94630a885a29ab08e855551be1ea26d","","mention"]]}] +[14:33:48.883] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917404\nWeight: 3993992\nhttps://thebitcoinblockclock.com/blockstr/00000000000000000000c8daaaae97ab8833e128e20398750edd525667fc512c.png","created_at":1759430025,"id":"a54f660039d62e259f8c326808cc62b47bb6325569015206bf19c58849054e3d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"944f64887945dca7277c674e5d3bf779755366dc60becaf3055c181556858c390368ac93b38fa287c3c166ec3d1bb3268286d33ed5cf424477d4ca13a659574d","tags":[]}] +[14:33:48.944] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub16ws45r63qruealwvc697493nsdzs2k93hw9j8dc2d0affjakskuqdewfmt 🐳 zapped nostr:npub1trr5r2nrpsk6xkjk5a7p6pfcryyt6yzsflwjmz6r7uj7lfkjxxtq78hdpu 21,000 sats\n\n💬 🆓\n\nhttps://image.nostr.build/67f24a884ab5f7d37c1cdadefa17476f498e757953131809f2099076bcff1630.jpg\nhttps://raw.githubusercontent.com/ray-bun/Twitter_Bitcoin_Lightning_Tipping_Bot/master/memes/bvnb.gif\nhttps://image.nostr.build/b886d4b6aa486fa9a571b9a503c3496365ddd9cea88e346ed4f028d832694add.jpg","created_at":1759430020,"id":"b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"159b4b8ca6cd24dff32797e423bfaf1c065283b59c8036463443845b00d48548aa1b9e3f72d25a0b52fbdd3fd2dc06830f122b1b07cc815d69d682a728e5bdb6","tags":[["t","fatzaps"],["t","zap"],["t","nostrzap"],["p","d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","","mention"],["p","58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","","mention"]]}] +[14:33:49.004] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8yxxl5trvslpznfqkw57larplsjhlt2fsuzf87gppemhxue69uhkummn9ekx7mp0qgsfln36agetx43hsw8mgkm4hce9j46zu94m8er59nyzhv74p7gg0esrqsqqqqqp85udp4","created_at":1759430015,"id":"fc02436bc77a38166c70fa15b6de131c4926310cfbd181821fee157b76c76244","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"caf71af9088488dcb9a7fcf17650693c9832e7913e1efeb0dbc98d556fe69b7ec7bc14f783b317bfda1e58a3cc7b94e2859a20fc64b18ca87c92289a51e78048","tags":[["alt","A short note: I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8y..."],["p","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","wss://relay.primal.net/"],["q","fe3ee6db8a5dc9a3390c6fd163643e114d20b3a9eff461fc257fad49870493f9","wss://nos.lol/","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6"]]}] +[14:33:49.065] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんだよ","created_at":1759430012,"id":"665de5364a168cd5b3835d3af571ec9012ef62ee7f9bf99f5612d15c1ad7390f","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3f7d552b68b0abb0a246938d7e2e9e84a15331a407667bdaef40625fb8d06635aef3ee59a97b4ec493d11f0f381aee4505120a622abfc50b05c2ab24a0a64141","tags":[["e","14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752",""],["e","981676a1c0c498100d9f6501c4ecf8cd087635b33c03c3884d972f42c4976530","wss://relay.damus.io","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:49.125] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapathon https://i.imgur.com/e10Az5m.gif\nnostr:nevent1qqstnsupncdts4ey97vchjawkaap06c949qvhmqhsffct09tm7pkwsqzypay44dc3s2hfr9hta386ltlmtd4uj6c300pqxqrcunszp7akadc6qcyqqqqqqgq85sme","created_at":1759430006,"id":"fe6b1db6db9be5eec48b1adc2dd95f7b88d552e614bb098bc3916beba979fee0","kind":1,"pubkey":"aa746c026c3b37de2c9a721fbf8e110235ffbb35f99620002d9ff60edebe9986","sig":"28a44f13a18dafc90965f3f4e518803d0b256c523e997b89263297bc147230d03886250f656a8ffc5193535712fbbf4d1e57ff51357f912569890d4de1e49600","tags":[["q","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["t","zapathon"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:33:49.186] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolutely loved it here!\nUtah amazed me not just with its 150-million-year-old dinosaur fossils and 1,000-year-old wall paintings, but also with its incredible canyons. I can’t decide what’s more exciting: touching ancient history or witnessing the beauty of geology. Either way, it was totally worth the full day of exploring. Another one checked off the to-do list ✔️\nhttps://blossom.primal.net/ea089fffe3fae5c1a23b488ebd93b14ce5fe0bbe197d872d9aa645f609b30131.jpg\nhttps://blossom.primal.net/58e2bd01b8f1e3906df39dcb74ac8544b1404fdb5026f760c409eb546c4368cb.jpg\nhttps://blossom.primal.net/a47ea7983593f40aa58e4ee4d7f137160e287c754c6969e4645e07c070bbb7cf.jpg\nhttps://blossom.primal.net/50b8631745042a1a1097a727e34120d7f7d43def2b640606af2b702d890b86a0.jpg","created_at":1759429998,"id":"c97d95b20e8c7d087ade75d5b7d49228172b35acce3ab486378df77b2ae96490","kind":1,"pubkey":"f74eda3a6c57670ba0eda854dc53c7e4875fbdee7ca1a1344471bcdcc9f69133","sig":"1baa9df90744249df9576b05cd47f4c35d2961eb1f8b11e6a9d6c34398d0d767d8b60a65f19ce4c4af0bf3dd7b0f73b6f45e32098c8798dce3a288490a9cd834","tags":[]}] +[14:33:49.246] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","created_at":1759429998,"id":"c5bbbca355cab2adf622ec0a8fc134dcf55707bdc18d5aebc684f0615fce285f","kind":1,"pubkey":"c8383d81dd24406745b68409be40d6721c301029464067fcc50a25ddf9139549","sig":"e60c4077b62d278b1dc3ad117772e3518e7a6dd0c0ba8467750e644cb377f975ca4363c8ebe71429ee130e1743bff977bbd8ff901d514b163d8d82dd192731c9","tags":[["imeta","url https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","blurhash ecMG#Jx]?bS4%M~qs:R*j[Rj?^M{M{s.RjkXRjRjWBjY-;oKWCWBay","dim 1284x1205"],["r","https://i.nostr.build/IoP50bwnY5ph2kAy.jpg"]]}] +[14:33:49.307] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"He's in to some weird shit...😂","created_at":1759429998,"id":"d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"d0879c9708611e79ce2603a22fc160d6bf8c4b2f9af4251e84e114f68bc30807c389ef26f89cddd024a060c322390df267526fcfec23bac06e9556f5e97a713d","tags":[["alt","A short note: He's in to some weird shit...😂"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","wss://nostr.wine/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:33:49.367] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah definitely. But at scale. Work together with all Bitcoin meetups would be a beginning. Better than what we have now. Even though it wouldn't scale enough to reach everyone.","created_at":1759429993,"id":"0025ec6870c1da0eef5950248c126cef9c62bb23a2e6bf77da5f12b42b0b0d11","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"88ec0b36df24b0adb70eec8733b1ec1412aa8b33abfaa30482c02e384611df90846e227280de05e637841ac6fbc0f9fa5e81b0a930dc8aebe6edcaf9b0dc6c62","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"]]}] +[14:33:49.428] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:49.488] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:49.549] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:33:49.610] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:33:49.670] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:33:49.731] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:49.791] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:49.852] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:33:49.912] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:33:49.973] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:33:50.033] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:33:50.094] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:33:51.000] RECV nos.lol:443: 894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab +[14:33:52.038] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:52.038] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:52.039] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:52.039] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:52.191] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"JUST IN: 🇷🇺 🇺🇸 Russian President Putin offers his condolences to Charlie Kirk's family and praises his legacy following his assassination.\n\n[Video - view in Telegram post ⬇️]\n\nSource: [BRICS News](https://t.me/bricsnews/8654)","created_at":1759430031,"id":"44ec98b6b6b187ec4d077659597a5368d0115a1ba400dee10c0385e90522fcce","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"4caa5d26f3f34e9938960e6b3138a1c4fe961e6ca7b20ede27cb22c4eec2bec20e07388f79214924e7503c4c6d6aef4866f2fbcf91707930faa7501e328e5b96","tags":[]}] +[14:33:52.252] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇷🇺🇪🇺📞 PUTIN AFIRMA QUE EUROPA ESTÁ MORRENDO\n\nLíder russo diz que continente europeu desaparece devido a políticas migratórias e econômicas. Europa que todos amavam está sumindo.\nhttps://files.catbox.moe/y09df3.mp4","created_at":1759430029,"id":"ffbd7efecc1fd916886cc2c936f02d4f467b3e063cfeb292abd899d3f6577d92","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"63b4cd2a27d336a8d51365771449f3dfd94533cc13bebf46569178c444bf9dffd159695046377380aa90a2536fe319280fc1ba1d4cd0971662dbfdf6ca93bf02","tags":[["video","https://files.catbox.moe/y09df3.mp4"]]}] +[14:33:52.313] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Get nostr address nostr:npub1sma67s58kmv8wxlf7ar4f7v9lny5vv9gsk3f4vyws424r0s75fksx8k6x5 ","created_at":1759430025,"id":"14d496beef844fba106fa1db5df6653abbb315655d6d8c9a2bfca1f8e681daaa","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"2ccf9f662bb646d8e6857db5481260213ce78bc565990e0f249808adb435bd126f2ac0616817bf5f9c8b9ff1f069dedf947c081a3e109b657bc6ce1befee91cb","tags":[["e","b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","","root"],["p","ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371"],["p","86fbaf4287b6d8771be9f74754f985fcc94630a885a29ab08e855551be1ea26d","","mention"]]}] +[14:33:52.373] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917404\nWeight: 3993992\nhttps://thebitcoinblockclock.com/blockstr/00000000000000000000c8daaaae97ab8833e128e20398750edd525667fc512c.png","created_at":1759430025,"id":"a54f660039d62e259f8c326808cc62b47bb6325569015206bf19c58849054e3d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"944f64887945dca7277c674e5d3bf779755366dc60becaf3055c181556858c390368ac93b38fa287c3c166ec3d1bb3268286d33ed5cf424477d4ca13a659574d","tags":[]}] +[14:33:52.434] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub16ws45r63qruealwvc697493nsdzs2k93hw9j8dc2d0affjakskuqdewfmt 🐳 zapped nostr:npub1trr5r2nrpsk6xkjk5a7p6pfcryyt6yzsflwjmz6r7uj7lfkjxxtq78hdpu 21,000 sats\n\n💬 🆓\n\nhttps://image.nostr.build/67f24a884ab5f7d37c1cdadefa17476f498e757953131809f2099076bcff1630.jpg\nhttps://raw.githubusercontent.com/ray-bun/Twitter_Bitcoin_Lightning_Tipping_Bot/master/memes/bvnb.gif\nhttps://image.nostr.build/b886d4b6aa486fa9a571b9a503c3496365ddd9cea88e346ed4f028d832694add.jpg","created_at":1759430020,"id":"b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"159b4b8ca6cd24dff32797e423bfaf1c065283b59c8036463443845b00d48548aa1b9e3f72d25a0b52fbdd3fd2dc06830f122b1b07cc815d69d682a728e5bdb6","tags":[["t","fatzaps"],["t","zap"],["t","nostrzap"],["p","d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","","mention"],["p","58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","","mention"]]}] +[14:33:52.494] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8yxxl5trvslpznfqkw57larplsjhlt2fsuzf87gppemhxue69uhkummn9ekx7mp0qgsfln36agetx43hsw8mgkm4hce9j46zu94m8er59nyzhv74p7gg0esrqsqqqqqp85udp4","created_at":1759430015,"id":"fc02436bc77a38166c70fa15b6de131c4926310cfbd181821fee157b76c76244","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"caf71af9088488dcb9a7fcf17650693c9832e7913e1efeb0dbc98d556fe69b7ec7bc14f783b317bfda1e58a3cc7b94e2859a20fc64b18ca87c92289a51e78048","tags":[["alt","A short note: I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8y..."],["p","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","wss://relay.primal.net/"],["q","fe3ee6db8a5dc9a3390c6fd163643e114d20b3a9eff461fc257fad49870493f9","wss://nos.lol/","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6"]]}] +[14:33:52.555] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんだよ","created_at":1759430012,"id":"665de5364a168cd5b3835d3af571ec9012ef62ee7f9bf99f5612d15c1ad7390f","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3f7d552b68b0abb0a246938d7e2e9e84a15331a407667bdaef40625fb8d06635aef3ee59a97b4ec493d11f0f381aee4505120a622abfc50b05c2ab24a0a64141","tags":[["e","14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752",""],["e","981676a1c0c498100d9f6501c4ecf8cd087635b33c03c3884d972f42c4976530","wss://relay.damus.io","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:52.615] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapathon https://i.imgur.com/e10Az5m.gif\nnostr:nevent1qqstnsupncdts4ey97vchjawkaap06c949qvhmqhsffct09tm7pkwsqzypay44dc3s2hfr9hta386ltlmtd4uj6c300pqxqrcunszp7akadc6qcyqqqqqqgq85sme","created_at":1759430006,"id":"fe6b1db6db9be5eec48b1adc2dd95f7b88d552e614bb098bc3916beba979fee0","kind":1,"pubkey":"aa746c026c3b37de2c9a721fbf8e110235ffbb35f99620002d9ff60edebe9986","sig":"28a44f13a18dafc90965f3f4e518803d0b256c523e997b89263297bc147230d03886250f656a8ffc5193535712fbbf4d1e57ff51357f912569890d4de1e49600","tags":[["q","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["t","zapathon"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:33:52.676] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolutely loved it here!\nUtah amazed me not just with its 150-million-year-old dinosaur fossils and 1,000-year-old wall paintings, but also with its incredible canyons. I can’t decide what’s more exciting: touching ancient history or witnessing the beauty of geology. Either way, it was totally worth the full day of exploring. Another one checked off the to-do list ✔️\nhttps://blossom.primal.net/ea089fffe3fae5c1a23b488ebd93b14ce5fe0bbe197d872d9aa645f609b30131.jpg\nhttps://blossom.primal.net/58e2bd01b8f1e3906df39dcb74ac8544b1404fdb5026f760c409eb546c4368cb.jpg\nhttps://blossom.primal.net/a47ea7983593f40aa58e4ee4d7f137160e287c754c6969e4645e07c070bbb7cf.jpg\nhttps://blossom.primal.net/50b8631745042a1a1097a727e34120d7f7d43def2b640606af2b702d890b86a0.jpg","created_at":1759429998,"id":"c97d95b20e8c7d087ade75d5b7d49228172b35acce3ab486378df77b2ae96490","kind":1,"pubkey":"f74eda3a6c57670ba0eda854dc53c7e4875fbdee7ca1a1344471bcdcc9f69133","sig":"1baa9df90744249df9576b05cd47f4c35d2961eb1f8b11e6a9d6c34398d0d767d8b60a65f19ce4c4af0bf3dd7b0f73b6f45e32098c8798dce3a288490a9cd834","tags":[]}] +[14:33:52.736] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","created_at":1759429998,"id":"c5bbbca355cab2adf622ec0a8fc134dcf55707bdc18d5aebc684f0615fce285f","kind":1,"pubkey":"c8383d81dd24406745b68409be40d6721c301029464067fcc50a25ddf9139549","sig":"e60c4077b62d278b1dc3ad117772e3518e7a6dd0c0ba8467750e644cb377f975ca4363c8ebe71429ee130e1743bff977bbd8ff901d514b163d8d82dd192731c9","tags":[["imeta","url https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","blurhash ecMG#Jx]?bS4%M~qs:R*j[Rj?^M{M{s.RjkXRjRjWBjY-;oKWCWBay","dim 1284x1205"],["r","https://i.nostr.build/IoP50bwnY5ph2kAy.jpg"]]}] +[14:33:52.797] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:52.857] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:33:52.918] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:52.979] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:33:53.039] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:33:53.100] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:33:53.126] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:53.186] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:53.247] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:33:53.307] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:33:53.368] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:33:53.428] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:33:54.335] RECV nos.lol:443: 894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab +[14:33:54.597] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759428493",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,405\nBlock Hash: 000000000000000000013021fc701faa37e1df6175b069c84f9f61de09864039\nTimestamp: 2025-10-02T18:33:37.000Z\nTransactions: 2,413\nBlock Size: 1.52 MB\nBlock Weight: 3,993,948 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917405","created_at":1759430034,"id":"32f11ce6d04b2938f0166c772235e4bced659105ebef66930646e706b671c90e","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"8c38c88e51842a160a4aaada928a0bf7685c9a16407f1142bf45b3fb88b3db7e609fa4018a16d170b2704246fa13eb950745b5ad40c1cbe13d5402061d11dda2","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917405"],["published_at","1759430017"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000013021fc701faa37e1df6175b069c84f9f61de09864039"],["new_block","true"],["block_height","917405"],["block_hash","000000000000000000013021fc701faa37e1df6175b069c84f9f61de09864039"],["block_time","1759430017"],["tx_count","2413"],["block_size","1595916"],["block_weight","3993948"],["difficulty","150839487445890.5"],["previous_block","00000000000000000000c8daaaae97ab8833e128e20398750edd525667fc512c"],["mempool_tx_count","5323"],["mempool_size","1997735"],["memory_usage_pct","3.8"]]}] +[14:33:55.335] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:55.335] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:55.335] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:55.335] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:55.488] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"JUST IN: 🇷🇺 🇺🇸 Russian President Putin offers his condolences to Charlie Kirk's family and praises his legacy following his assassination.\n\n[Video - view in Telegram post ⬇️]\n\nSource: [BRICS News](https://t.me/bricsnews/8654)","created_at":1759430031,"id":"44ec98b6b6b187ec4d077659597a5368d0115a1ba400dee10c0385e90522fcce","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"4caa5d26f3f34e9938960e6b3138a1c4fe961e6ca7b20ede27cb22c4eec2bec20e07388f79214924e7503c4c6d6aef4866f2fbcf91707930faa7501e328e5b96","tags":[]}] +[14:33:55.549] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇷🇺🇪🇺📞 PUTIN AFIRMA QUE EUROPA ESTÁ MORRENDO\n\nLíder russo diz que continente europeu desaparece devido a políticas migratórias e econômicas. Europa que todos amavam está sumindo.\nhttps://files.catbox.moe/y09df3.mp4","created_at":1759430029,"id":"ffbd7efecc1fd916886cc2c936f02d4f467b3e063cfeb292abd899d3f6577d92","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"63b4cd2a27d336a8d51365771449f3dfd94533cc13bebf46569178c444bf9dffd159695046377380aa90a2536fe319280fc1ba1d4cd0971662dbfdf6ca93bf02","tags":[["video","https://files.catbox.moe/y09df3.mp4"]]}] +[14:33:55.609] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Get nostr address nostr:npub1sma67s58kmv8wxlf7ar4f7v9lny5vv9gsk3f4vyws424r0s75fksx8k6x5 ","created_at":1759430025,"id":"14d496beef844fba106fa1db5df6653abbb315655d6d8c9a2bfca1f8e681daaa","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"2ccf9f662bb646d8e6857db5481260213ce78bc565990e0f249808adb435bd126f2ac0616817bf5f9c8b9ff1f069dedf947c081a3e109b657bc6ce1befee91cb","tags":[["e","b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","","root"],["p","ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371"],["p","86fbaf4287b6d8771be9f74754f985fcc94630a885a29ab08e855551be1ea26d","","mention"]]}] +[14:33:55.670] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917404\nWeight: 3993992\nhttps://thebitcoinblockclock.com/blockstr/00000000000000000000c8daaaae97ab8833e128e20398750edd525667fc512c.png","created_at":1759430025,"id":"a54f660039d62e259f8c326808cc62b47bb6325569015206bf19c58849054e3d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"944f64887945dca7277c674e5d3bf779755366dc60becaf3055c181556858c390368ac93b38fa287c3c166ec3d1bb3268286d33ed5cf424477d4ca13a659574d","tags":[]}] +[14:33:55.731] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub16ws45r63qruealwvc697493nsdzs2k93hw9j8dc2d0affjakskuqdewfmt 🐳 zapped nostr:npub1trr5r2nrpsk6xkjk5a7p6pfcryyt6yzsflwjmz6r7uj7lfkjxxtq78hdpu 21,000 sats\n\n💬 🆓\n\nhttps://image.nostr.build/67f24a884ab5f7d37c1cdadefa17476f498e757953131809f2099076bcff1630.jpg\nhttps://raw.githubusercontent.com/ray-bun/Twitter_Bitcoin_Lightning_Tipping_Bot/master/memes/bvnb.gif\nhttps://image.nostr.build/b886d4b6aa486fa9a571b9a503c3496365ddd9cea88e346ed4f028d832694add.jpg","created_at":1759430020,"id":"b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"159b4b8ca6cd24dff32797e423bfaf1c065283b59c8036463443845b00d48548aa1b9e3f72d25a0b52fbdd3fd2dc06830f122b1b07cc815d69d682a728e5bdb6","tags":[["t","fatzaps"],["t","zap"],["t","nostrzap"],["p","d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","","mention"],["p","58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","","mention"]]}] +[14:33:55.791] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8yxxl5trvslpznfqkw57larplsjhlt2fsuzf87gppemhxue69uhkummn9ekx7mp0qgsfln36agetx43hsw8mgkm4hce9j46zu94m8er59nyzhv74p7gg0esrqsqqqqqp85udp4","created_at":1759430015,"id":"fc02436bc77a38166c70fa15b6de131c4926310cfbd181821fee157b76c76244","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"caf71af9088488dcb9a7fcf17650693c9832e7913e1efeb0dbc98d556fe69b7ec7bc14f783b317bfda1e58a3cc7b94e2859a20fc64b18ca87c92289a51e78048","tags":[["alt","A short note: I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8y..."],["p","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","wss://relay.primal.net/"],["q","fe3ee6db8a5dc9a3390c6fd163643e114d20b3a9eff461fc257fad49870493f9","wss://nos.lol/","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6"]]}] +[14:33:55.851] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんだよ","created_at":1759430012,"id":"665de5364a168cd5b3835d3af571ec9012ef62ee7f9bf99f5612d15c1ad7390f","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3f7d552b68b0abb0a246938d7e2e9e84a15331a407667bdaef40625fb8d06635aef3ee59a97b4ec493d11f0f381aee4505120a622abfc50b05c2ab24a0a64141","tags":[["e","14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752",""],["e","981676a1c0c498100d9f6501c4ecf8cd087635b33c03c3884d972f42c4976530","wss://relay.damus.io","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:55.912] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapathon https://i.imgur.com/e10Az5m.gif\nnostr:nevent1qqstnsupncdts4ey97vchjawkaap06c949qvhmqhsffct09tm7pkwsqzypay44dc3s2hfr9hta386ltlmtd4uj6c300pqxqrcunszp7akadc6qcyqqqqqqgq85sme","created_at":1759430006,"id":"fe6b1db6db9be5eec48b1adc2dd95f7b88d552e614bb098bc3916beba979fee0","kind":1,"pubkey":"aa746c026c3b37de2c9a721fbf8e110235ffbb35f99620002d9ff60edebe9986","sig":"28a44f13a18dafc90965f3f4e518803d0b256c523e997b89263297bc147230d03886250f656a8ffc5193535712fbbf4d1e57ff51357f912569890d4de1e49600","tags":[["q","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["t","zapathon"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:33:55.972] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolutely loved it here!\nUtah amazed me not just with its 150-million-year-old dinosaur fossils and 1,000-year-old wall paintings, but also with its incredible canyons. I can’t decide what’s more exciting: touching ancient history or witnessing the beauty of geology. Either way, it was totally worth the full day of exploring. Another one checked off the to-do list ✔️\nhttps://blossom.primal.net/ea089fffe3fae5c1a23b488ebd93b14ce5fe0bbe197d872d9aa645f609b30131.jpg\nhttps://blossom.primal.net/58e2bd01b8f1e3906df39dcb74ac8544b1404fdb5026f760c409eb546c4368cb.jpg\nhttps://blossom.primal.net/a47ea7983593f40aa58e4ee4d7f137160e287c754c6969e4645e07c070bbb7cf.jpg\nhttps://blossom.primal.net/50b8631745042a1a1097a727e34120d7f7d43def2b640606af2b702d890b86a0.jpg","created_at":1759429998,"id":"c97d95b20e8c7d087ade75d5b7d49228172b35acce3ab486378df77b2ae96490","kind":1,"pubkey":"f74eda3a6c57670ba0eda854dc53c7e4875fbdee7ca1a1344471bcdcc9f69133","sig":"1baa9df90744249df9576b05cd47f4c35d2961eb1f8b11e6a9d6c34398d0d767d8b60a65f19ce4c4af0bf3dd7b0f73b6f45e32098c8798dce3a288490a9cd834","tags":[]}] +[14:33:56.033] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","created_at":1759429998,"id":"c5bbbca355cab2adf622ec0a8fc134dcf55707bdc18d5aebc684f0615fce285f","kind":1,"pubkey":"c8383d81dd24406745b68409be40d6721c301029464067fcc50a25ddf9139549","sig":"e60c4077b62d278b1dc3ad117772e3518e7a6dd0c0ba8467750e644cb377f975ca4363c8ebe71429ee130e1743bff977bbd8ff901d514b163d8d82dd192731c9","tags":[["imeta","url https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","blurhash ecMG#Jx]?bS4%M~qs:R*j[Rj?^M{M{s.RjkXRjRjWBjY-;oKWCWBay","dim 1284x1205"],["r","https://i.nostr.build/IoP50bwnY5ph2kAy.jpg"]]}] +[14:33:56.093] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:56.154] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:33:56.214] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:56.275] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:33:56.336] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:33:56.396] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:33:56.457] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:56.518] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:56.578] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:33:56.639] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:33:56.699] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:33:56.760] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:33:56.820] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759430032,"id":"6a742c276f8a3c5dfb9992223054a47c401ef2ebbae8917a89c2176ce4660667","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"af9cb84ade76a301faebd75d1c9fa4a93b3352e82bc47c1544e4380de50b2c6ad2f8b7adbd9cecd7b79af786fd6173d3642827fdf416a22923ecddea20cd8f8d","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"],["p","dfac05175167a3465031ae88bbbfbb60c5df80d5465cc91766fb73438a2af009"]]}] +[14:33:57.726] RECV nos.lol:443: 894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab +[14:33:58.722] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:58.722] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:58.722] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:58.722] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:58.873] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I agree PCSAM is stupid. As are payments for drugs and sex and other immoral behaviors. And payments for terrorism and money laundering. And political bribes and assassinations. And for buying high fructose syrup laden addictive carbon water beverages. \n\nI can think of a large number of things I don’t want bitcoin being used for…things that law enforcement agencies might try to compel your node to filter.","created_at":1759430034,"id":"a2081b549dbf7123286dcbafb44e31cec6980c1c3cd9e5d0555d92a177bd7a0e","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"8ae8e0fff7e38cf10c746364255d81b2d20f63f81118450aa1448eb2c3c811f0e6edc787deed3d5b824d8f75699221ee5b25bbc9163f472198219e9072a3dab3","tags":[["e","904a60f171463d37212f548f21ac2e3089083bff0c792c395c158c0b146f2b04","wss://offchain.pub","root"],["e","4bfa7ce9f411e87365f5ce4c162a569e0fcde1f8808a8310e795146ad7f47902","","reply"],["p","c02bedab495a8d73e23192fa161a0b8344821f48446811b1e810fac65b584f49"]]}] +[14:33:58.934] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"JUST IN: 🇷🇺 🇺🇸 Russian President Putin offers his condolences to Charlie Kirk's family and praises his legacy following his assassination.\n\n[Video - view in Telegram post ⬇️]\n\nSource: [BRICS News](https://t.me/bricsnews/8654)","created_at":1759430031,"id":"44ec98b6b6b187ec4d077659597a5368d0115a1ba400dee10c0385e90522fcce","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"4caa5d26f3f34e9938960e6b3138a1c4fe961e6ca7b20ede27cb22c4eec2bec20e07388f79214924e7503c4c6d6aef4866f2fbcf91707930faa7501e328e5b96","tags":[]}] +[14:33:59.023] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇷🇺🇪🇺📞 PUTIN AFIRMA QUE EUROPA ESTÁ MORRENDO\n\nLíder russo diz que continente europeu desaparece devido a políticas migratórias e econômicas. Europa que todos amavam está sumindo.\nhttps://files.catbox.moe/y09df3.mp4","created_at":1759430029,"id":"ffbd7efecc1fd916886cc2c936f02d4f467b3e063cfeb292abd899d3f6577d92","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"63b4cd2a27d336a8d51365771449f3dfd94533cc13bebf46569178c444bf9dffd159695046377380aa90a2536fe319280fc1ba1d4cd0971662dbfdf6ca93bf02","tags":[["video","https://files.catbox.moe/y09df3.mp4"]]}] +[14:33:59.084] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Get nostr address nostr:npub1sma67s58kmv8wxlf7ar4f7v9lny5vv9gsk3f4vyws424r0s75fksx8k6x5 ","created_at":1759430025,"id":"14d496beef844fba106fa1db5df6653abbb315655d6d8c9a2bfca1f8e681daaa","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"2ccf9f662bb646d8e6857db5481260213ce78bc565990e0f249808adb435bd126f2ac0616817bf5f9c8b9ff1f069dedf947c081a3e109b657bc6ce1befee91cb","tags":[["e","b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","","root"],["p","ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371"],["p","86fbaf4287b6d8771be9f74754f985fcc94630a885a29ab08e855551be1ea26d","","mention"]]}] +[14:33:59.144] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917404\nWeight: 3993992\nhttps://thebitcoinblockclock.com/blockstr/00000000000000000000c8daaaae97ab8833e128e20398750edd525667fc512c.png","created_at":1759430025,"id":"a54f660039d62e259f8c326808cc62b47bb6325569015206bf19c58849054e3d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"944f64887945dca7277c674e5d3bf779755366dc60becaf3055c181556858c390368ac93b38fa287c3c166ec3d1bb3268286d33ed5cf424477d4ca13a659574d","tags":[]}] +[14:33:59.205] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub16ws45r63qruealwvc697493nsdzs2k93hw9j8dc2d0affjakskuqdewfmt 🐳 zapped nostr:npub1trr5r2nrpsk6xkjk5a7p6pfcryyt6yzsflwjmz6r7uj7lfkjxxtq78hdpu 21,000 sats\n\n💬 🆓\n\nhttps://image.nostr.build/67f24a884ab5f7d37c1cdadefa17476f498e757953131809f2099076bcff1630.jpg\nhttps://raw.githubusercontent.com/ray-bun/Twitter_Bitcoin_Lightning_Tipping_Bot/master/memes/bvnb.gif\nhttps://image.nostr.build/b886d4b6aa486fa9a571b9a503c3496365ddd9cea88e346ed4f028d832694add.jpg","created_at":1759430020,"id":"b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"159b4b8ca6cd24dff32797e423bfaf1c065283b59c8036463443845b00d48548aa1b9e3f72d25a0b52fbdd3fd2dc06830f122b1b07cc815d69d682a728e5bdb6","tags":[["t","fatzaps"],["t","zap"],["t","nostrzap"],["p","d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","","mention"],["p","58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","","mention"]]}] +[14:33:59.265] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8yxxl5trvslpznfqkw57larplsjhlt2fsuzf87gppemhxue69uhkummn9ekx7mp0qgsfln36agetx43hsw8mgkm4hce9j46zu94m8er59nyzhv74p7gg0esrqsqqqqqp85udp4","created_at":1759430015,"id":"fc02436bc77a38166c70fa15b6de131c4926310cfbd181821fee157b76c76244","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"caf71af9088488dcb9a7fcf17650693c9832e7913e1efeb0dbc98d556fe69b7ec7bc14f783b317bfda1e58a3cc7b94e2859a20fc64b18ca87c92289a51e78048","tags":[["alt","A short note: I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8y..."],["p","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","wss://relay.primal.net/"],["q","fe3ee6db8a5dc9a3390c6fd163643e114d20b3a9eff461fc257fad49870493f9","wss://nos.lol/","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6"]]}] +[14:33:59.326] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんだよ","created_at":1759430012,"id":"665de5364a168cd5b3835d3af571ec9012ef62ee7f9bf99f5612d15c1ad7390f","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3f7d552b68b0abb0a246938d7e2e9e84a15331a407667bdaef40625fb8d06635aef3ee59a97b4ec493d11f0f381aee4505120a622abfc50b05c2ab24a0a64141","tags":[["e","14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752",""],["e","981676a1c0c498100d9f6501c4ecf8cd087635b33c03c3884d972f42c4976530","wss://relay.damus.io","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:59.386] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapathon https://i.imgur.com/e10Az5m.gif\nnostr:nevent1qqstnsupncdts4ey97vchjawkaap06c949qvhmqhsffct09tm7pkwsqzypay44dc3s2hfr9hta386ltlmtd4uj6c300pqxqrcunszp7akadc6qcyqqqqqqgq85sme","created_at":1759430006,"id":"fe6b1db6db9be5eec48b1adc2dd95f7b88d552e614bb098bc3916beba979fee0","kind":1,"pubkey":"aa746c026c3b37de2c9a721fbf8e110235ffbb35f99620002d9ff60edebe9986","sig":"28a44f13a18dafc90965f3f4e518803d0b256c523e997b89263297bc147230d03886250f656a8ffc5193535712fbbf4d1e57ff51357f912569890d4de1e49600","tags":[["q","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["t","zapathon"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:33:59.447] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolutely loved it here!\nUtah amazed me not just with its 150-million-year-old dinosaur fossils and 1,000-year-old wall paintings, but also with its incredible canyons. I can’t decide what’s more exciting: touching ancient history or witnessing the beauty of geology. Either way, it was totally worth the full day of exploring. Another one checked off the to-do list ✔️\nhttps://blossom.primal.net/ea089fffe3fae5c1a23b488ebd93b14ce5fe0bbe197d872d9aa645f609b30131.jpg\nhttps://blossom.primal.net/58e2bd01b8f1e3906df39dcb74ac8544b1404fdb5026f760c409eb546c4368cb.jpg\nhttps://blossom.primal.net/a47ea7983593f40aa58e4ee4d7f137160e287c754c6969e4645e07c070bbb7cf.jpg\nhttps://blossom.primal.net/50b8631745042a1a1097a727e34120d7f7d43def2b640606af2b702d890b86a0.jpg","created_at":1759429998,"id":"c97d95b20e8c7d087ade75d5b7d49228172b35acce3ab486378df77b2ae96490","kind":1,"pubkey":"f74eda3a6c57670ba0eda854dc53c7e4875fbdee7ca1a1344471bcdcc9f69133","sig":"1baa9df90744249df9576b05cd47f4c35d2961eb1f8b11e6a9d6c34398d0d767d8b60a65f19ce4c4af0bf3dd7b0f73b6f45e32098c8798dce3a288490a9cd834","tags":[]}] +[14:33:59.507] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:59.568] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:33:59.630] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:33:59.690] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:59.751] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:33:59.812] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:33:59.872] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:33:59.932] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:59.993] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:00.053] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:34:00.114] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:34:00.174] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:00.235] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759430034,"id":"4aa60c50dac0c7612e538132789f01ceff7083c1fe2426cc98415a203552adad","kind":3,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"698862fa3388b38318ee9407c442176a3b67dadc005aebd2ab3c296362c85b69b4292e5d1850c94bb68731681c4a6c6c6fe1cbac4e8a632a9434804f22f2c426","tags":[["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","f776bcc12271be79fc71b655f3cbfeb3a8a169f33ee1335fcc0c22829901da0a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","cc76679480a4504b963a3809cba60b458ebf068c62713621dda94b527860447d"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","870744363b1a5986d6773b5706dde258c039f6d34a5ffc270915033a6a67c82c"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","f1b911af1c7a56073e3b83ba7eaa681467040e0fbbdd265445aa80e65c274c22"],["p","64bfa9abffe5b18d0731eed57b38173adc2ba89bf87c168da90517f021e722b5"],["p","6d5f85c4be85fabb803716cc002f46c88ad5d44dae8098f057482640a3f7e400"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","7937540697665014c0de0809cdc75f37e900b1091a6b3d812af4178fe672caa9"],["p","aa9539e1ec76ee5f79c8e3f0c23d62f1adf40a69a05bb0728d792d17b75d8179"],["p","b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","1b2f3c135c9e5a9d6f70de02f0b7b546c11855d0453f6682bc874d6bbe64dfd6"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","50c59a1cb233d08d5a1fb493f520c6b5d7f77a2ba42e4666801a3e366b0a027e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","0418ca2d6cd6c7fbc4e0391bb745027023a7edbc38f2a60fc3b68f006efb85eb"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","efcb5fc526c91ffd51aaef037009f22eb4d3300a141c1754af439e085680aa8e"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","34fad5244f7de844c1c9e001e2737ed23f3ea96ceda2e20d241d46fee5824f16"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","f5f98ba54045a2fa8df2a97c35fc30299b9e0d51a701795c040ca80cedaf39b4"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","5fd004926969381ac2bb3a32720036d9f9632d29fb22dc1bf5d8fb1c9e265798"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","63d59db8d29abe29db7380beb912b8f600237332b6c9978b208694e4be170f6f"],["p","296842eaaed9be5ae0668da09fe48aac0521c4af859ad547d93145e5ac34c17e"],["p","dfcf6ae4111c1bb29d8cd96df8793aeded34f78764b5089da32e0f3edf7a9e2f"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"]]}] +[14:34:00.296] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759430032,"id":"6a742c276f8a3c5dfb9992223054a47c401ef2ebbae8917a89c2176ce4660667","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"af9cb84ade76a301faebd75d1c9fa4a93b3352e82bc47c1544e4380de50b2c6ad2f8b7adbd9cecd7b79af786fd6173d3642827fdf416a22923ecddea20cd8f8d","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"],["p","dfac05175167a3465031ae88bbbfbb60c5df80d5465cc91766fb73438a2af009"]]}] +[14:34:01.203] RECV nos.lol:443: 894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab +[14:34:02.237] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:34:02.238] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:34:02.238] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:34:02.238] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:34:02.389] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917405\nWeight: 3993948\nhttps://thebitcoinblockclock.com/blockstr/000000000000000000013021fc701faa37e1df6175b069c84f9f61de09864039.png","created_at":1759430040,"id":"d54f0cdadb634bae3423eb24c5902c6cb2f9fc8afe65398ba516523ad9292a43","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"dc6982c7185c5cea024970d4b76fa12fe702bfbeaea1cfdf0f19531ecbc564f4546b4c9a6151b1c389f9a63289ef9068ebb778d4286ace9a17662859aab0571a","tags":[]}] +[14:34:02.450] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I agree PCSAM is stupid. As are payments for drugs and sex and other immoral behaviors. And payments for terrorism and money laundering. And political bribes and assassinations. And for buying high fructose syrup laden addictive carbon water beverages. \n\nI can think of a large number of things I don’t want bitcoin being used for…things that law enforcement agencies might try to compel your node to filter.","created_at":1759430034,"id":"a2081b549dbf7123286dcbafb44e31cec6980c1c3cd9e5d0555d92a177bd7a0e","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"8ae8e0fff7e38cf10c746364255d81b2d20f63f81118450aa1448eb2c3c811f0e6edc787deed3d5b824d8f75699221ee5b25bbc9163f472198219e9072a3dab3","tags":[["e","904a60f171463d37212f548f21ac2e3089083bff0c792c395c158c0b146f2b04","wss://offchain.pub","root"],["e","4bfa7ce9f411e87365f5ce4c162a569e0fcde1f8808a8310e795146ad7f47902","","reply"],["p","c02bedab495a8d73e23192fa161a0b8344821f48446811b1e810fac65b584f49"]]}] +[14:34:02.510] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"JUST IN: 🇷🇺 🇺🇸 Russian President Putin offers his condolences to Charlie Kirk's family and praises his legacy following his assassination.\n\n[Video - view in Telegram post ⬇️]\n\nSource: [BRICS News](https://t.me/bricsnews/8654)","created_at":1759430031,"id":"44ec98b6b6b187ec4d077659597a5368d0115a1ba400dee10c0385e90522fcce","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"4caa5d26f3f34e9938960e6b3138a1c4fe961e6ca7b20ede27cb22c4eec2bec20e07388f79214924e7503c4c6d6aef4866f2fbcf91707930faa7501e328e5b96","tags":[]}] +[14:34:02.571] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇷🇺🇪🇺📞 PUTIN AFIRMA QUE EUROPA ESTÁ MORRENDO\n\nLíder russo diz que continente europeu desaparece devido a políticas migratórias e econômicas. Europa que todos amavam está sumindo.\nhttps://files.catbox.moe/y09df3.mp4","created_at":1759430029,"id":"ffbd7efecc1fd916886cc2c936f02d4f467b3e063cfeb292abd899d3f6577d92","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"63b4cd2a27d336a8d51365771449f3dfd94533cc13bebf46569178c444bf9dffd159695046377380aa90a2536fe319280fc1ba1d4cd0971662dbfdf6ca93bf02","tags":[["video","https://files.catbox.moe/y09df3.mp4"]]}] +[14:34:02.631] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Get nostr address nostr:npub1sma67s58kmv8wxlf7ar4f7v9lny5vv9gsk3f4vyws424r0s75fksx8k6x5 ","created_at":1759430025,"id":"14d496beef844fba106fa1db5df6653abbb315655d6d8c9a2bfca1f8e681daaa","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"2ccf9f662bb646d8e6857db5481260213ce78bc565990e0f249808adb435bd126f2ac0616817bf5f9c8b9ff1f069dedf947c081a3e109b657bc6ce1befee91cb","tags":[["e","b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","","root"],["p","ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371"],["p","86fbaf4287b6d8771be9f74754f985fcc94630a885a29ab08e855551be1ea26d","","mention"]]}] +[14:34:02.692] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917404\nWeight: 3993992\nhttps://thebitcoinblockclock.com/blockstr/00000000000000000000c8daaaae97ab8833e128e20398750edd525667fc512c.png","created_at":1759430025,"id":"a54f660039d62e259f8c326808cc62b47bb6325569015206bf19c58849054e3d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"944f64887945dca7277c674e5d3bf779755366dc60becaf3055c181556858c390368ac93b38fa287c3c166ec3d1bb3268286d33ed5cf424477d4ca13a659574d","tags":[]}] +[14:34:02.752] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub16ws45r63qruealwvc697493nsdzs2k93hw9j8dc2d0affjakskuqdewfmt 🐳 zapped nostr:npub1trr5r2nrpsk6xkjk5a7p6pfcryyt6yzsflwjmz6r7uj7lfkjxxtq78hdpu 21,000 sats\n\n💬 🆓\n\nhttps://image.nostr.build/67f24a884ab5f7d37c1cdadefa17476f498e757953131809f2099076bcff1630.jpg\nhttps://raw.githubusercontent.com/ray-bun/Twitter_Bitcoin_Lightning_Tipping_Bot/master/memes/bvnb.gif\nhttps://image.nostr.build/b886d4b6aa486fa9a571b9a503c3496365ddd9cea88e346ed4f028d832694add.jpg","created_at":1759430020,"id":"b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"159b4b8ca6cd24dff32797e423bfaf1c065283b59c8036463443845b00d48548aa1b9e3f72d25a0b52fbdd3fd2dc06830f122b1b07cc815d69d682a728e5bdb6","tags":[["t","fatzaps"],["t","zap"],["t","nostrzap"],["p","d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","","mention"],["p","58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","","mention"]]}] +[14:34:02.813] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8yxxl5trvslpznfqkw57larplsjhlt2fsuzf87gppemhxue69uhkummn9ekx7mp0qgsfln36agetx43hsw8mgkm4hce9j46zu94m8er59nyzhv74p7gg0esrqsqqqqqp85udp4","created_at":1759430015,"id":"fc02436bc77a38166c70fa15b6de131c4926310cfbd181821fee157b76c76244","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"caf71af9088488dcb9a7fcf17650693c9832e7913e1efeb0dbc98d556fe69b7ec7bc14f783b317bfda1e58a3cc7b94e2859a20fc64b18ca87c92289a51e78048","tags":[["alt","A short note: I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8y..."],["p","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","wss://relay.primal.net/"],["q","fe3ee6db8a5dc9a3390c6fd163643e114d20b3a9eff461fc257fad49870493f9","wss://nos.lol/","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6"]]}] +[14:34:02.874] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんだよ","created_at":1759430012,"id":"665de5364a168cd5b3835d3af571ec9012ef62ee7f9bf99f5612d15c1ad7390f","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3f7d552b68b0abb0a246938d7e2e9e84a15331a407667bdaef40625fb8d06635aef3ee59a97b4ec493d11f0f381aee4505120a622abfc50b05c2ab24a0a64141","tags":[["e","14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752",""],["e","981676a1c0c498100d9f6501c4ecf8cd087635b33c03c3884d972f42c4976530","wss://relay.damus.io","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:34:02.934] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapathon https://i.imgur.com/e10Az5m.gif\nnostr:nevent1qqstnsupncdts4ey97vchjawkaap06c949qvhmqhsffct09tm7pkwsqzypay44dc3s2hfr9hta386ltlmtd4uj6c300pqxqrcunszp7akadc6qcyqqqqqqgq85sme","created_at":1759430006,"id":"fe6b1db6db9be5eec48b1adc2dd95f7b88d552e614bb098bc3916beba979fee0","kind":1,"pubkey":"aa746c026c3b37de2c9a721fbf8e110235ffbb35f99620002d9ff60edebe9986","sig":"28a44f13a18dafc90965f3f4e518803d0b256c523e997b89263297bc147230d03886250f656a8ffc5193535712fbbf4d1e57ff51357f912569890d4de1e49600","tags":[["q","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["t","zapathon"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:34:02.995] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:34:03.055] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:34:03.081] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:03.141] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:03.202] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:34:03.262] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:34:03.323] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:34:03.384] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:03.444] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:03.504] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:34:03.565] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:34:03.625] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:03.686] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759430034,"id":"4aa60c50dac0c7612e538132789f01ceff7083c1fe2426cc98415a203552adad","kind":3,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"698862fa3388b38318ee9407c442176a3b67dadc005aebd2ab3c296362c85b69b4292e5d1850c94bb68731681c4a6c6c6fe1cbac4e8a632a9434804f22f2c426","tags":[["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","f776bcc12271be79fc71b655f3cbfeb3a8a169f33ee1335fcc0c22829901da0a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","cc76679480a4504b963a3809cba60b458ebf068c62713621dda94b527860447d"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","870744363b1a5986d6773b5706dde258c039f6d34a5ffc270915033a6a67c82c"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","f1b911af1c7a56073e3b83ba7eaa681467040e0fbbdd265445aa80e65c274c22"],["p","64bfa9abffe5b18d0731eed57b38173adc2ba89bf87c168da90517f021e722b5"],["p","6d5f85c4be85fabb803716cc002f46c88ad5d44dae8098f057482640a3f7e400"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","7937540697665014c0de0809cdc75f37e900b1091a6b3d812af4178fe672caa9"],["p","aa9539e1ec76ee5f79c8e3f0c23d62f1adf40a69a05bb0728d792d17b75d8179"],["p","b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","1b2f3c135c9e5a9d6f70de02f0b7b546c11855d0453f6682bc874d6bbe64dfd6"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","50c59a1cb233d08d5a1fb493f520c6b5d7f77a2ba42e4666801a3e366b0a027e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","0418ca2d6cd6c7fbc4e0391bb745027023a7edbc38f2a60fc3b68f006efb85eb"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","efcb5fc526c91ffd51aaef037009f22eb4d3300a141c1754af439e085680aa8e"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","34fad5244f7de844c1c9e001e2737ed23f3ea96ceda2e20d241d46fee5824f16"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","f5f98ba54045a2fa8df2a97c35fc30299b9e0d51a701795c040ca80cedaf39b4"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","5fd004926969381ac2bb3a32720036d9f9632d29fb22dc1bf5d8fb1c9e265798"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","63d59db8d29abe29db7380beb912b8f600237332b6c9978b208694e4be170f6f"],["p","296842eaaed9be5ae0668da09fe48aac0521c4af859ad547d93145e5ac34c17e"],["p","dfcf6ae4111c1bb29d8cd96df8793aeded34f78764b5089da32e0f3edf7a9e2f"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"]]}] +[14:34:03.747] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759430032,"id":"6a742c276f8a3c5dfb9992223054a47c401ef2ebbae8917a89c2176ce4660667","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"af9cb84ade76a301faebd75d1c9fa4a93b3352e82bc47c1544e4380de50b2c6ad2f8b7adbd9cecd7b79af786fd6173d3642827fdf416a22923ecddea20cd8f8d","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"],["p","dfac05175167a3465031ae88bbbfbb60c5df80d5465cc91766fb73438a2af009"]]}] +[14:34:04.652] RECV nos.lol:443: 894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab +[14:34:05.691] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:34:05.691] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:34:05.691] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:34:05.691] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:34:05.843] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me on nerd sniping: Nothing stops this brain.\n","created_at":1759430044,"id":"c24c7f3678b9abc769f24b9ad0fa2afdc4d40f4b94acfed11b3ed79fc4b13e6b","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"897b532ac0539faa7c08f0c5cd29a410ab3d5e22f4c0ba062366622fa2dd1eb7d83a60e136c29bf6432b9e94683e925faa5f2f30a9770f0e9e46c386dbe4d937","tags":[["alt","A short note: Me on nerd sniping: Nothing stops this brain.\n"]]}] +[14:34:05.904] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917405\nWeight: 3993948\nhttps://thebitcoinblockclock.com/blockstr/000000000000000000013021fc701faa37e1df6175b069c84f9f61de09864039.png","created_at":1759430040,"id":"d54f0cdadb634bae3423eb24c5902c6cb2f9fc8afe65398ba516523ad9292a43","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"dc6982c7185c5cea024970d4b76fa12fe702bfbeaea1cfdf0f19531ecbc564f4546b4c9a6151b1c389f9a63289ef9068ebb778d4286ace9a17662859aab0571a","tags":[]}] +[14:34:05.965] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I agree PCSAM is stupid. As are payments for drugs and sex and other immoral behaviors. And payments for terrorism and money laundering. And political bribes and assassinations. And for buying high fructose syrup laden addictive carbon water beverages. \n\nI can think of a large number of things I don’t want bitcoin being used for…things that law enforcement agencies might try to compel your node to filter.","created_at":1759430034,"id":"a2081b549dbf7123286dcbafb44e31cec6980c1c3cd9e5d0555d92a177bd7a0e","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"8ae8e0fff7e38cf10c746364255d81b2d20f63f81118450aa1448eb2c3c811f0e6edc787deed3d5b824d8f75699221ee5b25bbc9163f472198219e9072a3dab3","tags":[["e","904a60f171463d37212f548f21ac2e3089083bff0c792c395c158c0b146f2b04","wss://offchain.pub","root"],["e","4bfa7ce9f411e87365f5ce4c162a569e0fcde1f8808a8310e795146ad7f47902","","reply"],["p","c02bedab495a8d73e23192fa161a0b8344821f48446811b1e810fac65b584f49"]]}] +[14:34:06.025] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"JUST IN: 🇷🇺 🇺🇸 Russian President Putin offers his condolences to Charlie Kirk's family and praises his legacy following his assassination.\n\n[Video - view in Telegram post ⬇️]\n\nSource: [BRICS News](https://t.me/bricsnews/8654)","created_at":1759430031,"id":"44ec98b6b6b187ec4d077659597a5368d0115a1ba400dee10c0385e90522fcce","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"4caa5d26f3f34e9938960e6b3138a1c4fe961e6ca7b20ede27cb22c4eec2bec20e07388f79214924e7503c4c6d6aef4866f2fbcf91707930faa7501e328e5b96","tags":[]}] +[14:34:06.086] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇷🇺🇪🇺📞 PUTIN AFIRMA QUE EUROPA ESTÁ MORRENDO\n\nLíder russo diz que continente europeu desaparece devido a políticas migratórias e econômicas. Europa que todos amavam está sumindo.\nhttps://files.catbox.moe/y09df3.mp4","created_at":1759430029,"id":"ffbd7efecc1fd916886cc2c936f02d4f467b3e063cfeb292abd899d3f6577d92","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"63b4cd2a27d336a8d51365771449f3dfd94533cc13bebf46569178c444bf9dffd159695046377380aa90a2536fe319280fc1ba1d4cd0971662dbfdf6ca93bf02","tags":[["video","https://files.catbox.moe/y09df3.mp4"]]}] +[14:34:06.146] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Get nostr address nostr:npub1sma67s58kmv8wxlf7ar4f7v9lny5vv9gsk3f4vyws424r0s75fksx8k6x5 ","created_at":1759430025,"id":"14d496beef844fba106fa1db5df6653abbb315655d6d8c9a2bfca1f8e681daaa","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"2ccf9f662bb646d8e6857db5481260213ce78bc565990e0f249808adb435bd126f2ac0616817bf5f9c8b9ff1f069dedf947c081a3e109b657bc6ce1befee91cb","tags":[["e","b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","","root"],["p","ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371"],["p","86fbaf4287b6d8771be9f74754f985fcc94630a885a29ab08e855551be1ea26d","","mention"]]}] +[14:34:06.207] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917404\nWeight: 3993992\nhttps://thebitcoinblockclock.com/blockstr/00000000000000000000c8daaaae97ab8833e128e20398750edd525667fc512c.png","created_at":1759430025,"id":"a54f660039d62e259f8c326808cc62b47bb6325569015206bf19c58849054e3d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"944f64887945dca7277c674e5d3bf779755366dc60becaf3055c181556858c390368ac93b38fa287c3c166ec3d1bb3268286d33ed5cf424477d4ca13a659574d","tags":[]}] +[14:34:06.267] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub16ws45r63qruealwvc697493nsdzs2k93hw9j8dc2d0affjakskuqdewfmt 🐳 zapped nostr:npub1trr5r2nrpsk6xkjk5a7p6pfcryyt6yzsflwjmz6r7uj7lfkjxxtq78hdpu 21,000 sats\n\n💬 🆓\n\nhttps://image.nostr.build/67f24a884ab5f7d37c1cdadefa17476f498e757953131809f2099076bcff1630.jpg\nhttps://raw.githubusercontent.com/ray-bun/Twitter_Bitcoin_Lightning_Tipping_Bot/master/memes/bvnb.gif\nhttps://image.nostr.build/b886d4b6aa486fa9a571b9a503c3496365ddd9cea88e346ed4f028d832694add.jpg","created_at":1759430020,"id":"b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"159b4b8ca6cd24dff32797e423bfaf1c065283b59c8036463443845b00d48548aa1b9e3f72d25a0b52fbdd3fd2dc06830f122b1b07cc815d69d682a728e5bdb6","tags":[["t","fatzaps"],["t","zap"],["t","nostrzap"],["p","d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","","mention"],["p","58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","","mention"]]}] +[14:34:06.328] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8yxxl5trvslpznfqkw57larplsjhlt2fsuzf87gppemhxue69uhkummn9ekx7mp0qgsfln36agetx43hsw8mgkm4hce9j46zu94m8er59nyzhv74p7gg0esrqsqqqqqp85udp4","created_at":1759430015,"id":"fc02436bc77a38166c70fa15b6de131c4926310cfbd181821fee157b76c76244","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"caf71af9088488dcb9a7fcf17650693c9832e7913e1efeb0dbc98d556fe69b7ec7bc14f783b317bfda1e58a3cc7b94e2859a20fc64b18ca87c92289a51e78048","tags":[["alt","A short note: I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8y..."],["p","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","wss://relay.primal.net/"],["q","fe3ee6db8a5dc9a3390c6fd163643e114d20b3a9eff461fc257fad49870493f9","wss://nos.lol/","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6"]]}] +[14:34:06.389] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんだよ","created_at":1759430012,"id":"665de5364a168cd5b3835d3af571ec9012ef62ee7f9bf99f5612d15c1ad7390f","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3f7d552b68b0abb0a246938d7e2e9e84a15331a407667bdaef40625fb8d06635aef3ee59a97b4ec493d11f0f381aee4505120a622abfc50b05c2ab24a0a64141","tags":[["e","14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752",""],["e","981676a1c0c498100d9f6501c4ecf8cd087635b33c03c3884d972f42c4976530","wss://relay.damus.io","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:34:06.449] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:34:06.510] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast\\n\\nDoomAI: markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\",\"name\":\"DoomAI Terminal Bunker\"}","created_at":1759430045,"id":"66daa27f8b383352ef98fed90f3f63cc2dc0a00ebeafe6de2b9203cd6fcf1d30","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"610f144f5eef224971dd5a609b2c2fbd1e427285664f63ef0c41a6757cf2c9b550d49651e330c705974ef12ef76561e434c6088d348bbbbb291f91d8b5aa3e4f","tags":[]}] +[14:34:06.570] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:34:06.631] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:06.691] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:06.752] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:34:06.812] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:34:06.873] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:34:06.933] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:06.994] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:07.054] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:34:07.115] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:07.176] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759430034,"id":"4aa60c50dac0c7612e538132789f01ceff7083c1fe2426cc98415a203552adad","kind":3,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"698862fa3388b38318ee9407c442176a3b67dadc005aebd2ab3c296362c85b69b4292e5d1850c94bb68731681c4a6c6c6fe1cbac4e8a632a9434804f22f2c426","tags":[["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","f776bcc12271be79fc71b655f3cbfeb3a8a169f33ee1335fcc0c22829901da0a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","cc76679480a4504b963a3809cba60b458ebf068c62713621dda94b527860447d"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","870744363b1a5986d6773b5706dde258c039f6d34a5ffc270915033a6a67c82c"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","f1b911af1c7a56073e3b83ba7eaa681467040e0fbbdd265445aa80e65c274c22"],["p","64bfa9abffe5b18d0731eed57b38173adc2ba89bf87c168da90517f021e722b5"],["p","6d5f85c4be85fabb803716cc002f46c88ad5d44dae8098f057482640a3f7e400"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","7937540697665014c0de0809cdc75f37e900b1091a6b3d812af4178fe672caa9"],["p","aa9539e1ec76ee5f79c8e3f0c23d62f1adf40a69a05bb0728d792d17b75d8179"],["p","b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","1b2f3c135c9e5a9d6f70de02f0b7b546c11855d0453f6682bc874d6bbe64dfd6"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","50c59a1cb233d08d5a1fb493f520c6b5d7f77a2ba42e4666801a3e366b0a027e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","0418ca2d6cd6c7fbc4e0391bb745027023a7edbc38f2a60fc3b68f006efb85eb"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","efcb5fc526c91ffd51aaef037009f22eb4d3300a141c1754af439e085680aa8e"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","34fad5244f7de844c1c9e001e2737ed23f3ea96ceda2e20d241d46fee5824f16"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","f5f98ba54045a2fa8df2a97c35fc30299b9e0d51a701795c040ca80cedaf39b4"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","5fd004926969381ac2bb3a32720036d9f9632d29fb22dc1bf5d8fb1c9e265798"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","63d59db8d29abe29db7380beb912b8f600237332b6c9978b208694e4be170f6f"],["p","296842eaaed9be5ae0668da09fe48aac0521c4af859ad547d93145e5ac34c17e"],["p","dfcf6ae4111c1bb29d8cd96df8793aeded34f78764b5089da32e0f3edf7a9e2f"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"]]}] +[14:34:07.236] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759430032,"id":"6a742c276f8a3c5dfb9992223054a47c401ef2ebbae8917a89c2176ce4660667","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"af9cb84ade76a301faebd75d1c9fa4a93b3352e82bc47c1544e4380de50b2c6ad2f8b7adbd9cecd7b79af786fd6173d3642827fdf416a22923ecddea20cd8f8d","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"],["p","dfac05175167a3465031ae88bbbfbb60c5df80d5465cc91766fb73438a2af009"]]}] +[14:34:07.757] RECV relay.laantungir.net:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:08.085] RECV nos.lol:443: 894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab +[14:34:09.129] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:34:09.130] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:34:09.130] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:34:09.130] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:34:09.282] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"For those of you following along the other day regarding DeMu and interests were piqued, check out link below to the Satellite Spotlight! Rumor has it the full video is available aomewhere.\n\nThis was a decentralized and zappable (boostsble) live stream concert with 4 bands and multiple MCs from around the world. The tracks were extracted, mixed/mastered, and now available for all of DeMu to enjoy and zap. v4v and a lot of very hard work from a lot of people made this possible. \n\nLive hits different, check it all out! \nnostr:nevent1qqspg2se30aa9ddtrekjfmatr5qpnewpzxgkrxray458k0aj5c75gwspzemhxue69uhhyetvv9ujumt0wd68ytnsw43z7q3qsw5mjpdp288gavz6lwruc3ehuwdzjv34fksuaujp2s7c3h5g5wxqxpqqqqqqzs99u0q\n#demu #satellitespotlight #livemusic #music #tunestr","created_at":1759430047,"id":"baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"39c991e6df2d146ac893714fa5945aafddb999906e1a6e3882574499fce972474b17ec223a4cfb1be3d704367f5f331db9e503a5bdc9e583f8adc4b8ef4c1563","tags":[["e","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a","","mention"],["p","83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","","mention"],["q","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a"],["t","demu"],["t","satellitespotlight"],["t","livemusic"],["t","music"],["t","tunestr"]]}] +[14:34:09.343] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me on nerd sniping: Nothing stops this brain.\n","created_at":1759430044,"id":"c24c7f3678b9abc769f24b9ad0fa2afdc4d40f4b94acfed11b3ed79fc4b13e6b","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"897b532ac0539faa7c08f0c5cd29a410ab3d5e22f4c0ba062366622fa2dd1eb7d83a60e136c29bf6432b9e94683e925faa5f2f30a9770f0e9e46c386dbe4d937","tags":[["alt","A short note: Me on nerd sniping: Nothing stops this brain.\n"]]}] +[14:34:09.404] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917405\nWeight: 3993948\nhttps://thebitcoinblockclock.com/blockstr/000000000000000000013021fc701faa37e1df6175b069c84f9f61de09864039.png","created_at":1759430040,"id":"d54f0cdadb634bae3423eb24c5902c6cb2f9fc8afe65398ba516523ad9292a43","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"dc6982c7185c5cea024970d4b76fa12fe702bfbeaea1cfdf0f19531ecbc564f4546b4c9a6151b1c389f9a63289ef9068ebb778d4286ace9a17662859aab0571a","tags":[]}] +[14:34:09.464] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I agree PCSAM is stupid. As are payments for drugs and sex and other immoral behaviors. And payments for terrorism and money laundering. And political bribes and assassinations. And for buying high fructose syrup laden addictive carbon water beverages. \n\nI can think of a large number of things I don’t want bitcoin being used for…things that law enforcement agencies might try to compel your node to filter.","created_at":1759430034,"id":"a2081b549dbf7123286dcbafb44e31cec6980c1c3cd9e5d0555d92a177bd7a0e","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"8ae8e0fff7e38cf10c746364255d81b2d20f63f81118450aa1448eb2c3c811f0e6edc787deed3d5b824d8f75699221ee5b25bbc9163f472198219e9072a3dab3","tags":[["e","904a60f171463d37212f548f21ac2e3089083bff0c792c395c158c0b146f2b04","wss://offchain.pub","root"],["e","4bfa7ce9f411e87365f5ce4c162a569e0fcde1f8808a8310e795146ad7f47902","","reply"],["p","c02bedab495a8d73e23192fa161a0b8344821f48446811b1e810fac65b584f49"]]}] +[14:34:09.525] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"JUST IN: 🇷🇺 🇺🇸 Russian President Putin offers his condolences to Charlie Kirk's family and praises his legacy following his assassination.\n\n[Video - view in Telegram post ⬇️]\n\nSource: [BRICS News](https://t.me/bricsnews/8654)","created_at":1759430031,"id":"44ec98b6b6b187ec4d077659597a5368d0115a1ba400dee10c0385e90522fcce","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"4caa5d26f3f34e9938960e6b3138a1c4fe961e6ca7b20ede27cb22c4eec2bec20e07388f79214924e7503c4c6d6aef4866f2fbcf91707930faa7501e328e5b96","tags":[]}] +[14:34:09.586] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇷🇺🇪🇺📞 PUTIN AFIRMA QUE EUROPA ESTÁ MORRENDO\n\nLíder russo diz que continente europeu desaparece devido a políticas migratórias e econômicas. Europa que todos amavam está sumindo.\nhttps://files.catbox.moe/y09df3.mp4","created_at":1759430029,"id":"ffbd7efecc1fd916886cc2c936f02d4f467b3e063cfeb292abd899d3f6577d92","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"63b4cd2a27d336a8d51365771449f3dfd94533cc13bebf46569178c444bf9dffd159695046377380aa90a2536fe319280fc1ba1d4cd0971662dbfdf6ca93bf02","tags":[["video","https://files.catbox.moe/y09df3.mp4"]]}] +[14:34:09.646] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/f892510beeb6b3e8007e391e7b00bd5f0ac58c0e4322faa7d3c75bc01f9d8929.jpg","created_at":1759430027,"id":"a5db33eadfcfc0ea9c0a0533711fb6459fb31eba16f80e51e962e60bb5a4231a","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"11cf1f85e85dc6859953512204c0596d8e87f12c684832db5dfc7881b8881e97716fdbd38801555d1ebc760da9a44c16583a0b7431810453ec500a662c44fb9b","tags":[["alt","A short note: https://image.nostr.build/f892510beeb6b3e8007e391e..."],["r","https://image.nostr.build/f892510beeb6b3e8007e391e7b00bd5f0ac58c0e4322faa7d3c75bc01f9d8929.jpg"],["imeta","url https://image.nostr.build/f892510beeb6b3e8007e391e7b00bd5f0ac58c0e4322faa7d3c75bc01f9d8929.jpg","x 8d8bfdc86b4fe7e7a96eb558f7b034abc99886c1c203d024318189af982e79a1","size 50315","m image/jpeg","dim 1080x988","blurhash ;3SijY00Di~ppH~q%3~q%3M{9FIURPa#IoRjRjR%D*M{V[o#t7V[xutRba?cRk%2-;x]xu$*ofNGIoRkxukCNGWVaKe.kWo}9FaeWBIUayRkWCn+x]D%4nMxIoNGM{V@Rj.SD%aJtRI:WAnjs;oN","ox 8d8bfdc86b4fe7e7a96eb558f7b034abc99886c1c203d024318189af982e79a1","alt "]]}] +[14:34:09.707] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Get nostr address nostr:npub1sma67s58kmv8wxlf7ar4f7v9lny5vv9gsk3f4vyws424r0s75fksx8k6x5 ","created_at":1759430025,"id":"14d496beef844fba106fa1db5df6653abbb315655d6d8c9a2bfca1f8e681daaa","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"2ccf9f662bb646d8e6857db5481260213ce78bc565990e0f249808adb435bd126f2ac0616817bf5f9c8b9ff1f069dedf947c081a3e109b657bc6ce1befee91cb","tags":[["e","b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","","root"],["p","ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371"],["p","86fbaf4287b6d8771be9f74754f985fcc94630a885a29ab08e855551be1ea26d","","mention"]]}] +[14:34:09.767] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917404\nWeight: 3993992\nhttps://thebitcoinblockclock.com/blockstr/00000000000000000000c8daaaae97ab8833e128e20398750edd525667fc512c.png","created_at":1759430025,"id":"a54f660039d62e259f8c326808cc62b47bb6325569015206bf19c58849054e3d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"944f64887945dca7277c674e5d3bf779755366dc60becaf3055c181556858c390368ac93b38fa287c3c166ec3d1bb3268286d33ed5cf424477d4ca13a659574d","tags":[]}] +[14:34:09.828] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub16ws45r63qruealwvc697493nsdzs2k93hw9j8dc2d0affjakskuqdewfmt 🐳 zapped nostr:npub1trr5r2nrpsk6xkjk5a7p6pfcryyt6yzsflwjmz6r7uj7lfkjxxtq78hdpu 21,000 sats\n\n💬 🆓\n\nhttps://image.nostr.build/67f24a884ab5f7d37c1cdadefa17476f498e757953131809f2099076bcff1630.jpg\nhttps://raw.githubusercontent.com/ray-bun/Twitter_Bitcoin_Lightning_Tipping_Bot/master/memes/bvnb.gif\nhttps://image.nostr.build/b886d4b6aa486fa9a571b9a503c3496365ddd9cea88e346ed4f028d832694add.jpg","created_at":1759430020,"id":"b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"159b4b8ca6cd24dff32797e423bfaf1c065283b59c8036463443845b00d48548aa1b9e3f72d25a0b52fbdd3fd2dc06830f122b1b07cc815d69d682a728e5bdb6","tags":[["t","fatzaps"],["t","zap"],["t","nostrzap"],["p","d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","","mention"],["p","58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","","mention"]]}] +[14:34:09.889] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:34:09.949] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast\\n\\nDoomAI: markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\",\"name\":\"DoomAI Terminal Bunker\"}","created_at":1759430045,"id":"66daa27f8b383352ef98fed90f3f63cc2dc0a00ebeafe6de2b9203cd6fcf1d30","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"610f144f5eef224971dd5a609b2c2fbd1e427285664f63ef0c41a6757cf2c9b550d49651e330c705974ef12ef76561e434c6088d348bbbbb291f91d8b5aa3e4f","tags":[]}] +[14:34:09.980] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy summarize this article","created_at":1759430050,"id":"5eb5f32039f0fbee0e37b0071434c518d7ecdf7b063d24567f3cb1b684d6b6b0","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"51d77c2f3a95295dd684ed739b85228d68a19504ac2e952fe8431a624bc819693f5cb7dc47f0b57ed23e4a1e2a0faea1bc937453b28894831ad9476bd67908d0","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","40e9be66e68ad630faff997f819a031058718f1e2daa56d9b01179ce43f9f151","wss://bots.utxo.one/","root","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4"],["p","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4","wss://news.utxo.one/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:34:09.980] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:34:10.041] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:10.101] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:10.162] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:34:10.222] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:34:10.283] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:34:10.343] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:10.404] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:10.464] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:34:10.525] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:10.586] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759430034,"id":"4aa60c50dac0c7612e538132789f01ceff7083c1fe2426cc98415a203552adad","kind":3,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"698862fa3388b38318ee9407c442176a3b67dadc005aebd2ab3c296362c85b69b4292e5d1850c94bb68731681c4a6c6c6fe1cbac4e8a632a9434804f22f2c426","tags":[["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","f776bcc12271be79fc71b655f3cbfeb3a8a169f33ee1335fcc0c22829901da0a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","cc76679480a4504b963a3809cba60b458ebf068c62713621dda94b527860447d"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","870744363b1a5986d6773b5706dde258c039f6d34a5ffc270915033a6a67c82c"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","f1b911af1c7a56073e3b83ba7eaa681467040e0fbbdd265445aa80e65c274c22"],["p","64bfa9abffe5b18d0731eed57b38173adc2ba89bf87c168da90517f021e722b5"],["p","6d5f85c4be85fabb803716cc002f46c88ad5d44dae8098f057482640a3f7e400"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","7937540697665014c0de0809cdc75f37e900b1091a6b3d812af4178fe672caa9"],["p","aa9539e1ec76ee5f79c8e3f0c23d62f1adf40a69a05bb0728d792d17b75d8179"],["p","b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","1b2f3c135c9e5a9d6f70de02f0b7b546c11855d0453f6682bc874d6bbe64dfd6"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","50c59a1cb233d08d5a1fb493f520c6b5d7f77a2ba42e4666801a3e366b0a027e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","0418ca2d6cd6c7fbc4e0391bb745027023a7edbc38f2a60fc3b68f006efb85eb"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","efcb5fc526c91ffd51aaef037009f22eb4d3300a141c1754af439e085680aa8e"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","34fad5244f7de844c1c9e001e2737ed23f3ea96ceda2e20d241d46fee5824f16"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","f5f98ba54045a2fa8df2a97c35fc30299b9e0d51a701795c040ca80cedaf39b4"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","5fd004926969381ac2bb3a32720036d9f9632d29fb22dc1bf5d8fb1c9e265798"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","63d59db8d29abe29db7380beb912b8f600237332b6c9978b208694e4be170f6f"],["p","296842eaaed9be5ae0668da09fe48aac0521c4af859ad547d93145e5ac34c17e"],["p","dfcf6ae4111c1bb29d8cd96df8793aeded34f78764b5089da32e0f3edf7a9e2f"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"]]}] +[14:34:10.646] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759430032,"id":"6a742c276f8a3c5dfb9992223054a47c401ef2ebbae8917a89c2176ce4660667","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"af9cb84ade76a301faebd75d1c9fa4a93b3352e82bc47c1544e4380de50b2c6ad2f8b7adbd9cecd7b79af786fd6173d3642827fdf416a22923ecddea20cd8f8d","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"],["p","dfac05175167a3465031ae88bbbfbb60c5df80d5465cc91766fb73438a2af009"]]}] +[14:34:11.552] RECV nos.lol:443: 894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab +[14:34:12.586] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:34:12.586] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:34:12.586] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:34:12.586] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:34:12.807] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy summarize this article","created_at":1759430050,"id":"5eb5f32039f0fbee0e37b0071434c518d7ecdf7b063d24567f3cb1b684d6b6b0","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"51d77c2f3a95295dd684ed739b85228d68a19504ac2e952fe8431a624bc819693f5cb7dc47f0b57ed23e4a1e2a0faea1bc937453b28894831ad9476bd67908d0","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","40e9be66e68ad630faff997f819a031058718f1e2daa56d9b01179ce43f9f151","wss://bots.utxo.one/","root","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4"],["p","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4","wss://news.utxo.one/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:34:12.868] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My new post. I'd like to know what other nostriches are producing goods. \n\n","created_at":1759430049,"id":"2e849b5a051b9171a86584fff9f3383a4c200a19b62644087f5abee4e923aa0e","kind":1,"pubkey":"9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","sig":"5b256e8f308716438062397b4309450a078371c89652d718ad40a5565513ffabd82c2e6bd935d2bb8e17c021dc70dbe3e9b3356fe7efbfa8a157354e553de060","tags":[["p","63d699329db8e38569f2589b6a3aa7b0f231cec83a7789e29f0a396781bd7d72"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://relay.primal.net"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win"],["e","ac7266a6b8567254838bec57d898a9fb9a11d79f4049900da9422db2d8983065","wss://relay.primal.net","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"]]}] +[14:34:12.929] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"For those of you following along the other day regarding DeMu and interests were piqued, check out link below to the Satellite Spotlight! Rumor has it the full video is available aomewhere.\n\nThis was a decentralized and zappable (boostsble) live stream concert with 4 bands and multiple MCs from around the world. The tracks were extracted, mixed/mastered, and now available for all of DeMu to enjoy and zap. v4v and a lot of very hard work from a lot of people made this possible. \n\nLive hits different, check it all out! \nnostr:nevent1qqspg2se30aa9ddtrekjfmatr5qpnewpzxgkrxray458k0aj5c75gwspzemhxue69uhhyetvv9ujumt0wd68ytnsw43z7q3qsw5mjpdp288gavz6lwruc3ehuwdzjv34fksuaujp2s7c3h5g5wxqxpqqqqqqzs99u0q\n#demu #satellitespotlight #livemusic #music #tunestr","created_at":1759430047,"id":"baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"39c991e6df2d146ac893714fa5945aafddb999906e1a6e3882574499fce972474b17ec223a4cfb1be3d704367f5f331db9e503a5bdc9e583f8adc4b8ef4c1563","tags":[["e","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a","","mention"],["p","83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","","mention"],["q","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a"],["t","demu"],["t","satellitespotlight"],["t","livemusic"],["t","music"],["t","tunestr"]]}] +[14:34:12.990] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me on nerd sniping: Nothing stops this brain.\n","created_at":1759430044,"id":"c24c7f3678b9abc769f24b9ad0fa2afdc4d40f4b94acfed11b3ed79fc4b13e6b","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"897b532ac0539faa7c08f0c5cd29a410ab3d5e22f4c0ba062366622fa2dd1eb7d83a60e136c29bf6432b9e94683e925faa5f2f30a9770f0e9e46c386dbe4d937","tags":[["alt","A short note: Me on nerd sniping: Nothing stops this brain.\n"]]}] +[14:34:13.050] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917405\nWeight: 3993948\nhttps://thebitcoinblockclock.com/blockstr/000000000000000000013021fc701faa37e1df6175b069c84f9f61de09864039.png","created_at":1759430040,"id":"d54f0cdadb634bae3423eb24c5902c6cb2f9fc8afe65398ba516523ad9292a43","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"dc6982c7185c5cea024970d4b76fa12fe702bfbeaea1cfdf0f19531ecbc564f4546b4c9a6151b1c389f9a63289ef9068ebb778d4286ace9a17662859aab0571a","tags":[]}] +[14:34:13.111] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I agree PCSAM is stupid. As are payments for drugs and sex and other immoral behaviors. And payments for terrorism and money laundering. And political bribes and assassinations. And for buying high fructose syrup laden addictive carbon water beverages. \n\nI can think of a large number of things I don’t want bitcoin being used for…things that law enforcement agencies might try to compel your node to filter.","created_at":1759430034,"id":"a2081b549dbf7123286dcbafb44e31cec6980c1c3cd9e5d0555d92a177bd7a0e","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"8ae8e0fff7e38cf10c746364255d81b2d20f63f81118450aa1448eb2c3c811f0e6edc787deed3d5b824d8f75699221ee5b25bbc9163f472198219e9072a3dab3","tags":[["e","904a60f171463d37212f548f21ac2e3089083bff0c792c395c158c0b146f2b04","wss://offchain.pub","root"],["e","4bfa7ce9f411e87365f5ce4c162a569e0fcde1f8808a8310e795146ad7f47902","","reply"],["p","c02bedab495a8d73e23192fa161a0b8344821f48446811b1e810fac65b584f49"]]}] +[14:34:13.136] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"JUST IN: 🇷🇺 🇺🇸 Russian President Putin offers his condolences to Charlie Kirk's family and praises his legacy following his assassination.\n\n[Video - view in Telegram post ⬇️]\n\nSource: [BRICS News](https://t.me/bricsnews/8654)","created_at":1759430031,"id":"44ec98b6b6b187ec4d077659597a5368d0115a1ba400dee10c0385e90522fcce","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"4caa5d26f3f34e9938960e6b3138a1c4fe961e6ca7b20ede27cb22c4eec2bec20e07388f79214924e7503c4c6d6aef4866f2fbcf91707930faa7501e328e5b96","tags":[]}] +[14:34:13.197] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇷🇺🇪🇺📞 PUTIN AFIRMA QUE EUROPA ESTÁ MORRENDO\n\nLíder russo diz que continente europeu desaparece devido a políticas migratórias e econômicas. Europa que todos amavam está sumindo.\nhttps://files.catbox.moe/y09df3.mp4","created_at":1759430029,"id":"ffbd7efecc1fd916886cc2c936f02d4f467b3e063cfeb292abd899d3f6577d92","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"63b4cd2a27d336a8d51365771449f3dfd94533cc13bebf46569178c444bf9dffd159695046377380aa90a2536fe319280fc1ba1d4cd0971662dbfdf6ca93bf02","tags":[["video","https://files.catbox.moe/y09df3.mp4"]]}] +[14:34:13.257] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/f892510beeb6b3e8007e391e7b00bd5f0ac58c0e4322faa7d3c75bc01f9d8929.jpg","created_at":1759430027,"id":"a5db33eadfcfc0ea9c0a0533711fb6459fb31eba16f80e51e962e60bb5a4231a","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"11cf1f85e85dc6859953512204c0596d8e87f12c684832db5dfc7881b8881e97716fdbd38801555d1ebc760da9a44c16583a0b7431810453ec500a662c44fb9b","tags":[["alt","A short note: https://image.nostr.build/f892510beeb6b3e8007e391e..."],["r","https://image.nostr.build/f892510beeb6b3e8007e391e7b00bd5f0ac58c0e4322faa7d3c75bc01f9d8929.jpg"],["imeta","url https://image.nostr.build/f892510beeb6b3e8007e391e7b00bd5f0ac58c0e4322faa7d3c75bc01f9d8929.jpg","x 8d8bfdc86b4fe7e7a96eb558f7b034abc99886c1c203d024318189af982e79a1","size 50315","m image/jpeg","dim 1080x988","blurhash ;3SijY00Di~ppH~q%3~q%3M{9FIURPa#IoRjRjR%D*M{V[o#t7V[xutRba?cRk%2-;x]xu$*ofNGIoRkxukCNGWVaKe.kWo}9FaeWBIUayRkWCn+x]D%4nMxIoNGM{V@Rj.SD%aJtRI:WAnjs;oN","ox 8d8bfdc86b4fe7e7a96eb558f7b034abc99886c1c203d024318189af982e79a1","alt "]]}] +[14:34:13.318] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Get nostr address nostr:npub1sma67s58kmv8wxlf7ar4f7v9lny5vv9gsk3f4vyws424r0s75fksx8k6x5 ","created_at":1759430025,"id":"14d496beef844fba106fa1db5df6653abbb315655d6d8c9a2bfca1f8e681daaa","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"2ccf9f662bb646d8e6857db5481260213ce78bc565990e0f249808adb435bd126f2ac0616817bf5f9c8b9ff1f069dedf947c081a3e109b657bc6ce1befee91cb","tags":[["e","b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","","root"],["p","ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371"],["p","86fbaf4287b6d8771be9f74754f985fcc94630a885a29ab08e855551be1ea26d","","mention"]]}] +[14:34:13.378] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:34:13.439] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast\\n\\nDoomAI: markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\",\"name\":\"DoomAI Terminal Bunker\"}","created_at":1759430045,"id":"66daa27f8b383352ef98fed90f3f63cc2dc0a00ebeafe6de2b9203cd6fcf1d30","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"610f144f5eef224971dd5a609b2c2fbd1e427285664f63ef0c41a6757cf2c9b550d49651e330c705974ef12ef76561e434c6088d348bbbbb291f91d8b5aa3e4f","tags":[]}] +[14:34:13.499] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:34:13.560] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:13.620] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:13.681] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:34:13.742] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:34:13.802] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:34:13.862] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:13.923] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:13.983] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:34:14.044] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:16.167] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:34:16.167] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:34:16.167] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:34:16.167] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:34:16.321] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Bro should do that shit in privacy 🤣","created_at":1759430052,"id":"a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b4f70a1fa45dc4daa7cef85864607ab73ca00bcad088a8f64d7100ace73a0c49f0fc0bf4ce53e2073cc10aad9659db98231aef00d688543e8b808e965564f8d8","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","","reply"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:34:16.382] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy summarize this article","created_at":1759430050,"id":"5eb5f32039f0fbee0e37b0071434c518d7ecdf7b063d24567f3cb1b684d6b6b0","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"51d77c2f3a95295dd684ed739b85228d68a19504ac2e952fe8431a624bc819693f5cb7dc47f0b57ed23e4a1e2a0faea1bc937453b28894831ad9476bd67908d0","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","40e9be66e68ad630faff997f819a031058718f1e2daa56d9b01179ce43f9f151","wss://bots.utxo.one/","root","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4"],["p","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4","wss://news.utxo.one/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:34:16.443] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My new post. I'd like to know what other nostriches are producing goods. \n\n","created_at":1759430049,"id":"2e849b5a051b9171a86584fff9f3383a4c200a19b62644087f5abee4e923aa0e","kind":1,"pubkey":"9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","sig":"5b256e8f308716438062397b4309450a078371c89652d718ad40a5565513ffabd82c2e6bd935d2bb8e17c021dc70dbe3e9b3356fe7efbfa8a157354e553de060","tags":[["p","63d699329db8e38569f2589b6a3aa7b0f231cec83a7789e29f0a396781bd7d72"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://relay.primal.net"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win"],["e","ac7266a6b8567254838bec57d898a9fb9a11d79f4049900da9422db2d8983065","wss://relay.primal.net","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"]]}] +[14:34:16.503] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"For those of you following along the other day regarding DeMu and interests were piqued, check out link below to the Satellite Spotlight! Rumor has it the full video is available aomewhere.\n\nThis was a decentralized and zappable (boostsble) live stream concert with 4 bands and multiple MCs from around the world. The tracks were extracted, mixed/mastered, and now available for all of DeMu to enjoy and zap. v4v and a lot of very hard work from a lot of people made this possible. \n\nLive hits different, check it all out! \nnostr:nevent1qqspg2se30aa9ddtrekjfmatr5qpnewpzxgkrxray458k0aj5c75gwspzemhxue69uhhyetvv9ujumt0wd68ytnsw43z7q3qsw5mjpdp288gavz6lwruc3ehuwdzjv34fksuaujp2s7c3h5g5wxqxpqqqqqqzs99u0q\n#demu #satellitespotlight #livemusic #music #tunestr","created_at":1759430047,"id":"baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"39c991e6df2d146ac893714fa5945aafddb999906e1a6e3882574499fce972474b17ec223a4cfb1be3d704367f5f331db9e503a5bdc9e583f8adc4b8ef4c1563","tags":[["e","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a","","mention"],["p","83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","","mention"],["q","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a"],["t","demu"],["t","satellitespotlight"],["t","livemusic"],["t","music"],["t","tunestr"]]}] +[14:34:16.564] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me on nerd sniping: Nothing stops this brain.\n","created_at":1759430044,"id":"c24c7f3678b9abc769f24b9ad0fa2afdc4d40f4b94acfed11b3ed79fc4b13e6b","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"897b532ac0539faa7c08f0c5cd29a410ab3d5e22f4c0ba062366622fa2dd1eb7d83a60e136c29bf6432b9e94683e925faa5f2f30a9770f0e9e46c386dbe4d937","tags":[["alt","A short note: Me on nerd sniping: Nothing stops this brain.\n"]]}] +[14:34:16.624] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917405\nWeight: 3993948\nhttps://thebitcoinblockclock.com/blockstr/000000000000000000013021fc701faa37e1df6175b069c84f9f61de09864039.png","created_at":1759430040,"id":"d54f0cdadb634bae3423eb24c5902c6cb2f9fc8afe65398ba516523ad9292a43","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"dc6982c7185c5cea024970d4b76fa12fe702bfbeaea1cfdf0f19531ecbc564f4546b4c9a6151b1c389f9a63289ef9068ebb778d4286ace9a17662859aab0571a","tags":[]}] +[14:34:16.685] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I agree PCSAM is stupid. As are payments for drugs and sex and other immoral behaviors. And payments for terrorism and money laundering. And political bribes and assassinations. And for buying high fructose syrup laden addictive carbon water beverages. \n\nI can think of a large number of things I don’t want bitcoin being used for…things that law enforcement agencies might try to compel your node to filter.","created_at":1759430034,"id":"a2081b549dbf7123286dcbafb44e31cec6980c1c3cd9e5d0555d92a177bd7a0e","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"8ae8e0fff7e38cf10c746364255d81b2d20f63f81118450aa1448eb2c3c811f0e6edc787deed3d5b824d8f75699221ee5b25bbc9163f472198219e9072a3dab3","tags":[["e","904a60f171463d37212f548f21ac2e3089083bff0c792c395c158c0b146f2b04","wss://offchain.pub","root"],["e","4bfa7ce9f411e87365f5ce4c162a569e0fcde1f8808a8310e795146ad7f47902","","reply"],["p","c02bedab495a8d73e23192fa161a0b8344821f48446811b1e810fac65b584f49"]]}] +[14:34:16.745] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"JUST IN: 🇷🇺 🇺🇸 Russian President Putin offers his condolences to Charlie Kirk's family and praises his legacy following his assassination.\n\n[Video - view in Telegram post ⬇️]\n\nSource: [BRICS News](https://t.me/bricsnews/8654)","created_at":1759430031,"id":"44ec98b6b6b187ec4d077659597a5368d0115a1ba400dee10c0385e90522fcce","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"4caa5d26f3f34e9938960e6b3138a1c4fe961e6ca7b20ede27cb22c4eec2bec20e07388f79214924e7503c4c6d6aef4866f2fbcf91707930faa7501e328e5b96","tags":[]}] +[14:34:16.806] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇷🇺🇪🇺📞 PUTIN AFIRMA QUE EUROPA ESTÁ MORRENDO\n\nLíder russo diz que continente europeu desaparece devido a políticas migratórias e econômicas. Europa que todos amavam está sumindo.\nhttps://files.catbox.moe/y09df3.mp4","created_at":1759430029,"id":"ffbd7efecc1fd916886cc2c936f02d4f467b3e063cfeb292abd899d3f6577d92","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"63b4cd2a27d336a8d51365771449f3dfd94533cc13bebf46569178c444bf9dffd159695046377380aa90a2536fe319280fc1ba1d4cd0971662dbfdf6ca93bf02","tags":[["video","https://files.catbox.moe/y09df3.mp4"]]}] +[14:34:16.866] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/f892510beeb6b3e8007e391e7b00bd5f0ac58c0e4322faa7d3c75bc01f9d8929.jpg","created_at":1759430027,"id":"a5db33eadfcfc0ea9c0a0533711fb6459fb31eba16f80e51e962e60bb5a4231a","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"11cf1f85e85dc6859953512204c0596d8e87f12c684832db5dfc7881b8881e97716fdbd38801555d1ebc760da9a44c16583a0b7431810453ec500a662c44fb9b","tags":[["alt","A short note: https://image.nostr.build/f892510beeb6b3e8007e391e..."],["r","https://image.nostr.build/f892510beeb6b3e8007e391e7b00bd5f0ac58c0e4322faa7d3c75bc01f9d8929.jpg"],["imeta","url https://image.nostr.build/f892510beeb6b3e8007e391e7b00bd5f0ac58c0e4322faa7d3c75bc01f9d8929.jpg","x 8d8bfdc86b4fe7e7a96eb558f7b034abc99886c1c203d024318189af982e79a1","size 50315","m image/jpeg","dim 1080x988","blurhash ;3SijY00Di~ppH~q%3~q%3M{9FIURPa#IoRjRjR%D*M{V[o#t7V[xutRba?cRk%2-;x]xu$*ofNGIoRkxukCNGWVaKe.kWo}9FaeWBIUayRkWCn+x]D%4nMxIoNGM{V@Rj.SD%aJtRI:WAnjs;oN","ox 8d8bfdc86b4fe7e7a96eb558f7b034abc99886c1c203d024318189af982e79a1","alt "]]}] +[14:34:16.927] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:34:16.987] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast\\n\\nDoomAI: markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\",\"name\":\"DoomAI Terminal Bunker\"}","created_at":1759430045,"id":"66daa27f8b383352ef98fed90f3f63cc2dc0a00ebeafe6de2b9203cd6fcf1d30","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"610f144f5eef224971dd5a609b2c2fbd1e427285664f63ef0c41a6757cf2c9b550d49651e330c705974ef12ef76561e434c6088d348bbbbb291f91d8b5aa3e4f","tags":[]}] +[14:34:17.048] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:34:17.109] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:17.169] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:17.230] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:34:17.290] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:34:17.351] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:34:17.411] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:17.472] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:17.532] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:34:17.593] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:19.676] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:34:19.676] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:34:19.676] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:34:19.676] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:34:19.827] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Bro should do that shit in privacy 🤣","created_at":1759430052,"id":"a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b4f70a1fa45dc4daa7cef85864607ab73ca00bcad088a8f64d7100ace73a0c49f0fc0bf4ce53e2073cc10aad9659db98231aef00d688543e8b808e965564f8d8","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","","reply"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:34:19.887] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy summarize this article","created_at":1759430050,"id":"5eb5f32039f0fbee0e37b0071434c518d7ecdf7b063d24567f3cb1b684d6b6b0","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"51d77c2f3a95295dd684ed739b85228d68a19504ac2e952fe8431a624bc819693f5cb7dc47f0b57ed23e4a1e2a0faea1bc937453b28894831ad9476bd67908d0","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","40e9be66e68ad630faff997f819a031058718f1e2daa56d9b01179ce43f9f151","wss://bots.utxo.one/","root","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4"],["p","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4","wss://news.utxo.one/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:34:19.948] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My new post. I'd like to know what other nostriches are producing goods. \n\n","created_at":1759430049,"id":"2e849b5a051b9171a86584fff9f3383a4c200a19b62644087f5abee4e923aa0e","kind":1,"pubkey":"9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","sig":"5b256e8f308716438062397b4309450a078371c89652d718ad40a5565513ffabd82c2e6bd935d2bb8e17c021dc70dbe3e9b3356fe7efbfa8a157354e553de060","tags":[["p","63d699329db8e38569f2589b6a3aa7b0f231cec83a7789e29f0a396781bd7d72"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://relay.primal.net"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win"],["e","ac7266a6b8567254838bec57d898a9fb9a11d79f4049900da9422db2d8983065","wss://relay.primal.net","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"]]}] +[14:34:20.023] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"For those of you following along the other day regarding DeMu and interests were piqued, check out link below to the Satellite Spotlight! Rumor has it the full video is available aomewhere.\n\nThis was a decentralized and zappable (boostsble) live stream concert with 4 bands and multiple MCs from around the world. The tracks were extracted, mixed/mastered, and now available for all of DeMu to enjoy and zap. v4v and a lot of very hard work from a lot of people made this possible. \n\nLive hits different, check it all out! \nnostr:nevent1qqspg2se30aa9ddtrekjfmatr5qpnewpzxgkrxray458k0aj5c75gwspzemhxue69uhhyetvv9ujumt0wd68ytnsw43z7q3qsw5mjpdp288gavz6lwruc3ehuwdzjv34fksuaujp2s7c3h5g5wxqxpqqqqqqzs99u0q\n#demu #satellitespotlight #livemusic #music #tunestr","created_at":1759430047,"id":"baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"39c991e6df2d146ac893714fa5945aafddb999906e1a6e3882574499fce972474b17ec223a4cfb1be3d704367f5f331db9e503a5bdc9e583f8adc4b8ef4c1563","tags":[["e","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a","","mention"],["p","83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","","mention"],["q","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a"],["t","demu"],["t","satellitespotlight"],["t","livemusic"],["t","music"],["t","tunestr"]]}] +[14:34:20.083] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me on nerd sniping: Nothing stops this brain.\n","created_at":1759430044,"id":"c24c7f3678b9abc769f24b9ad0fa2afdc4d40f4b94acfed11b3ed79fc4b13e6b","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"897b532ac0539faa7c08f0c5cd29a410ab3d5e22f4c0ba062366622fa2dd1eb7d83a60e136c29bf6432b9e94683e925faa5f2f30a9770f0e9e46c386dbe4d937","tags":[["alt","A short note: Me on nerd sniping: Nothing stops this brain.\n"]]}] +[14:34:20.144] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917405\nWeight: 3993948\nhttps://thebitcoinblockclock.com/blockstr/000000000000000000013021fc701faa37e1df6175b069c84f9f61de09864039.png","created_at":1759430040,"id":"d54f0cdadb634bae3423eb24c5902c6cb2f9fc8afe65398ba516523ad9292a43","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"dc6982c7185c5cea024970d4b76fa12fe702bfbeaea1cfdf0f19531ecbc564f4546b4c9a6151b1c389f9a63289ef9068ebb778d4286ace9a17662859aab0571a","tags":[]}] +[14:34:20.204] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I agree PCSAM is stupid. As are payments for drugs and sex and other immoral behaviors. And payments for terrorism and money laundering. And political bribes and assassinations. And for buying high fructose syrup laden addictive carbon water beverages. \n\nI can think of a large number of things I don’t want bitcoin being used for…things that law enforcement agencies might try to compel your node to filter.","created_at":1759430034,"id":"a2081b549dbf7123286dcbafb44e31cec6980c1c3cd9e5d0555d92a177bd7a0e","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"8ae8e0fff7e38cf10c746364255d81b2d20f63f81118450aa1448eb2c3c811f0e6edc787deed3d5b824d8f75699221ee5b25bbc9163f472198219e9072a3dab3","tags":[["e","904a60f171463d37212f548f21ac2e3089083bff0c792c395c158c0b146f2b04","wss://offchain.pub","root"],["e","4bfa7ce9f411e87365f5ce4c162a569e0fcde1f8808a8310e795146ad7f47902","","reply"],["p","c02bedab495a8d73e23192fa161a0b8344821f48446811b1e810fac65b584f49"]]}] +[14:34:20.265] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"JUST IN: 🇷🇺 🇺🇸 Russian President Putin offers his condolences to Charlie Kirk's family and praises his legacy following his assassination.\n\n[Video - view in Telegram post ⬇️]\n\nSource: [BRICS News](https://t.me/bricsnews/8654)","created_at":1759430031,"id":"44ec98b6b6b187ec4d077659597a5368d0115a1ba400dee10c0385e90522fcce","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"4caa5d26f3f34e9938960e6b3138a1c4fe961e6ca7b20ede27cb22c4eec2bec20e07388f79214924e7503c4c6d6aef4866f2fbcf91707930faa7501e328e5b96","tags":[]}] +[14:34:20.325] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇷🇺🇪🇺📞 PUTIN AFIRMA QUE EUROPA ESTÁ MORRENDO\n\nLíder russo diz que continente europeu desaparece devido a políticas migratórias e econômicas. Europa que todos amavam está sumindo.\nhttps://files.catbox.moe/y09df3.mp4","created_at":1759430029,"id":"ffbd7efecc1fd916886cc2c936f02d4f467b3e063cfeb292abd899d3f6577d92","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"63b4cd2a27d336a8d51365771449f3dfd94533cc13bebf46569178c444bf9dffd159695046377380aa90a2536fe319280fc1ba1d4cd0971662dbfdf6ca93bf02","tags":[["video","https://files.catbox.moe/y09df3.mp4"]]}] +[14:34:20.386] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/f892510beeb6b3e8007e391e7b00bd5f0ac58c0e4322faa7d3c75bc01f9d8929.jpg","created_at":1759430027,"id":"a5db33eadfcfc0ea9c0a0533711fb6459fb31eba16f80e51e962e60bb5a4231a","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"11cf1f85e85dc6859953512204c0596d8e87f12c684832db5dfc7881b8881e97716fdbd38801555d1ebc760da9a44c16583a0b7431810453ec500a662c44fb9b","tags":[["alt","A short note: https://image.nostr.build/f892510beeb6b3e8007e391e..."],["r","https://image.nostr.build/f892510beeb6b3e8007e391e7b00bd5f0ac58c0e4322faa7d3c75bc01f9d8929.jpg"],["imeta","url https://image.nostr.build/f892510beeb6b3e8007e391e7b00bd5f0ac58c0e4322faa7d3c75bc01f9d8929.jpg","x 8d8bfdc86b4fe7e7a96eb558f7b034abc99886c1c203d024318189af982e79a1","size 50315","m image/jpeg","dim 1080x988","blurhash ;3SijY00Di~ppH~q%3~q%3M{9FIURPa#IoRjRjR%D*M{V[o#t7V[xutRba?cRk%2-;x]xu$*ofNGIoRkxukCNGWVaKe.kWo}9FaeWBIUayRkWCn+x]D%4nMxIoNGM{V@Rj.SD%aJtRI:WAnjs;oN","ox 8d8bfdc86b4fe7e7a96eb558f7b034abc99886c1c203d024318189af982e79a1","alt "]]}] +[14:34:20.446] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:34:20.507] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:34:20.568] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast\\n\\nDoomAI: markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\",\"name\":\"DoomAI Terminal Bunker\"}","created_at":1759430045,"id":"66daa27f8b383352ef98fed90f3f63cc2dc0a00ebeafe6de2b9203cd6fcf1d30","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"610f144f5eef224971dd5a609b2c2fbd1e427285664f63ef0c41a6757cf2c9b550d49651e330c705974ef12ef76561e434c6088d348bbbbb291f91d8b5aa3e4f","tags":[]}] +[14:34:20.628] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:34:20.689] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:20.749] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:20.810] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:34:20.870] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:34:20.931] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:34:20.991] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:21.052] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:21.112] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:21.173] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://relay.nos.social\":{\"read\":true,\"write\":true},\"wss://nos.lol\":{\"read\":true,\"write\":true},\"wss://purplepag.es\":{\"read\":true,\"write\":true},\"wss://relay.nostr.band\":{\"read\":true,\"write\":true},\"wss://relay.damus.io\":{\"read\":true,\"write\":true},\"wss://nostr.mom\":{\"read\":true,\"write\":true},\"wss://relay.primal.net\":{\"read\":true,\"write\":true}}","created_at":1759430057,"id":"641373ae26679f5ab1a9cc65b7851764c1fa77d75c5c8706f7ee64da53f08dbf","kind":3,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"7404f56cadc3ce03cda38aa29f8c52d56e58c59b9ac5e647faf4cc915648bf402278b75cbd8b9fba3ba6ebd8e269b974cbf89beeceab1bf707daf34a2d113601","tags":[["p","e24a86943d37a91ab485d6f9a7c66097c25ddd67e8bd1b75ed252a3c266cf9bb"]]}] +[14:34:23.294] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:34:23.294] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:34:23.294] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:34:23.294] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:34:23.446] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"That was a gorgeous phone. \n\n","created_at":1759430061,"id":"4a89643b176642af2291602088698f3bda6833bf4ca94be7c040b5b82abf9cd3","kind":1,"pubkey":"b7cfd472ff903441ec6cd55bb506f9744211a6e68e52525d42445169bda03f5a","sig":"b631939c992bfba950c99f0d195d60e6e20f51a77afce1e8c795bc6d2aac586d324bf61aa2a0b14505c5d2aeeec56f022ca34261a6c3dbd1b616df8466647776","tags":[["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","1023ed59a2b320d5bc3528b3b1d1f4c2f73862b13c514788bbfd00a1dbd5ed2a","wss://relay.primal.net"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","wss://a.nos.lol"],["e","d0e6e1cdf5c0ecd4d1a321a9071b6e1b98aa8053cc11243371c784e0af2b8263","wss://relay.primal.net","reply","1023ed59a2b320d5bc3528b3b1d1f4c2f73862b13c514788bbfd00a1dbd5ed2a"],["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://a.nos.lol","root","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"]]}] +[14:34:23.457] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"suggestion taken!","created_at":1759430059,"id":"d47cd5530f81c0344978931845dc5b38a48e31e70a851ad415d41cc2fde1a8cc","kind":1,"pubkey":"f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2","sig":"e03207df8c089594c453f7e28d56bfe681ffa9217fddea1ef739428ae8646a01acb06a0dba41238e0362d690163cfd0d68bf0773a491578cc7ac99c607a2c554","tags":[["alt","A short note: suggestion taken!"],["e","dae37e3e2a01fe16404fe782f7f01658643329d017f172522da65255864355c9","wss://relay.primal.net/","root","f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2"],["e","fd6c218e65d1d99c7868ce1413b7791a9728ff8a4f0431040fdf1f6bf1753e5f","wss://relay.nostr.band/","reply","592295cf2b09a7f9555f43adb734cbee8a84ee892ed3f9336e6a09b6413a0db9"],["p","f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2","wss://relay.primal.net/"],["p","592295cf2b09a7f9555f43adb734cbee8a84ee892ed3f9336e6a09b6413a0db9","wss://nostr.mom/"]]}] +[14:34:23.517] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Bro should do that shit in privacy 🤣","created_at":1759430052,"id":"a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b4f70a1fa45dc4daa7cef85864607ab73ca00bcad088a8f64d7100ace73a0c49f0fc0bf4ce53e2073cc10aad9659db98231aef00d688543e8b808e965564f8d8","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","","reply"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:34:23.578] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy summarize this article","created_at":1759430050,"id":"5eb5f32039f0fbee0e37b0071434c518d7ecdf7b063d24567f3cb1b684d6b6b0","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"51d77c2f3a95295dd684ed739b85228d68a19504ac2e952fe8431a624bc819693f5cb7dc47f0b57ed23e4a1e2a0faea1bc937453b28894831ad9476bd67908d0","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","40e9be66e68ad630faff997f819a031058718f1e2daa56d9b01179ce43f9f151","wss://bots.utxo.one/","root","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4"],["p","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4","wss://news.utxo.one/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:34:23.638] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My new post. I'd like to know what other nostriches are producing goods. \n\n","created_at":1759430049,"id":"2e849b5a051b9171a86584fff9f3383a4c200a19b62644087f5abee4e923aa0e","kind":1,"pubkey":"9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","sig":"5b256e8f308716438062397b4309450a078371c89652d718ad40a5565513ffabd82c2e6bd935d2bb8e17c021dc70dbe3e9b3356fe7efbfa8a157354e553de060","tags":[["p","63d699329db8e38569f2589b6a3aa7b0f231cec83a7789e29f0a396781bd7d72"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://relay.primal.net"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win"],["e","ac7266a6b8567254838bec57d898a9fb9a11d79f4049900da9422db2d8983065","wss://relay.primal.net","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"]]}] +[14:34:23.699] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"For those of you following along the other day regarding DeMu and interests were piqued, check out link below to the Satellite Spotlight! Rumor has it the full video is available aomewhere.\n\nThis was a decentralized and zappable (boostsble) live stream concert with 4 bands and multiple MCs from around the world. The tracks were extracted, mixed/mastered, and now available for all of DeMu to enjoy and zap. v4v and a lot of very hard work from a lot of people made this possible. \n\nLive hits different, check it all out! \nnostr:nevent1qqspg2se30aa9ddtrekjfmatr5qpnewpzxgkrxray458k0aj5c75gwspzemhxue69uhhyetvv9ujumt0wd68ytnsw43z7q3qsw5mjpdp288gavz6lwruc3ehuwdzjv34fksuaujp2s7c3h5g5wxqxpqqqqqqzs99u0q\n#demu #satellitespotlight #livemusic #music #tunestr","created_at":1759430047,"id":"baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"39c991e6df2d146ac893714fa5945aafddb999906e1a6e3882574499fce972474b17ec223a4cfb1be3d704367f5f331db9e503a5bdc9e583f8adc4b8ef4c1563","tags":[["e","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a","","mention"],["p","83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","","mention"],["q","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a"],["t","demu"],["t","satellitespotlight"],["t","livemusic"],["t","music"],["t","tunestr"]]}] +[14:34:23.759] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me on nerd sniping: Nothing stops this brain.\n","created_at":1759430044,"id":"c24c7f3678b9abc769f24b9ad0fa2afdc4d40f4b94acfed11b3ed79fc4b13e6b","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"897b532ac0539faa7c08f0c5cd29a410ab3d5e22f4c0ba062366622fa2dd1eb7d83a60e136c29bf6432b9e94683e925faa5f2f30a9770f0e9e46c386dbe4d937","tags":[["alt","A short note: Me on nerd sniping: Nothing stops this brain.\n"]]}] +[14:34:23.820] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917405\nWeight: 3993948\nhttps://thebitcoinblockclock.com/blockstr/000000000000000000013021fc701faa37e1df6175b069c84f9f61de09864039.png","created_at":1759430040,"id":"d54f0cdadb634bae3423eb24c5902c6cb2f9fc8afe65398ba516523ad9292a43","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"dc6982c7185c5cea024970d4b76fa12fe702bfbeaea1cfdf0f19531ecbc564f4546b4c9a6151b1c389f9a63289ef9068ebb778d4286ace9a17662859aab0571a","tags":[]}] +[14:34:23.881] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I agree PCSAM is stupid. As are payments for drugs and sex and other immoral behaviors. And payments for terrorism and money laundering. And political bribes and assassinations. And for buying high fructose syrup laden addictive carbon water beverages. \n\nI can think of a large number of things I don’t want bitcoin being used for…things that law enforcement agencies might try to compel your node to filter.","created_at":1759430034,"id":"a2081b549dbf7123286dcbafb44e31cec6980c1c3cd9e5d0555d92a177bd7a0e","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"8ae8e0fff7e38cf10c746364255d81b2d20f63f81118450aa1448eb2c3c811f0e6edc787deed3d5b824d8f75699221ee5b25bbc9163f472198219e9072a3dab3","tags":[["e","904a60f171463d37212f548f21ac2e3089083bff0c792c395c158c0b146f2b04","wss://offchain.pub","root"],["e","4bfa7ce9f411e87365f5ce4c162a569e0fcde1f8808a8310e795146ad7f47902","","reply"],["p","c02bedab495a8d73e23192fa161a0b8344821f48446811b1e810fac65b584f49"]]}] +[14:34:23.941] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"JUST IN: 🇷🇺 🇺🇸 Russian President Putin offers his condolences to Charlie Kirk's family and praises his legacy following his assassination.\n\n[Video - view in Telegram post ⬇️]\n\nSource: [BRICS News](https://t.me/bricsnews/8654)","created_at":1759430031,"id":"44ec98b6b6b187ec4d077659597a5368d0115a1ba400dee10c0385e90522fcce","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"4caa5d26f3f34e9938960e6b3138a1c4fe961e6ca7b20ede27cb22c4eec2bec20e07388f79214924e7503c4c6d6aef4866f2fbcf91707930faa7501e328e5b96","tags":[]}] +[14:34:24.002] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:34:24.063] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:34:24.123] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast\\n\\nDoomAI: markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\",\"name\":\"DoomAI Terminal Bunker\"}","created_at":1759430045,"id":"66daa27f8b383352ef98fed90f3f63cc2dc0a00ebeafe6de2b9203cd6fcf1d30","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"610f144f5eef224971dd5a609b2c2fbd1e427285664f63ef0c41a6757cf2c9b550d49651e330c705974ef12ef76561e434c6088d348bbbbb291f91d8b5aa3e4f","tags":[]}] +[14:34:24.184] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:34:24.244] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:24.305] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:24.365] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:34:24.426] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:34:24.486] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:34:24.547] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:24.607] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:24.668] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:24.728] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://relay.nos.social\":{\"read\":true,\"write\":true},\"wss://nos.lol\":{\"read\":true,\"write\":true},\"wss://purplepag.es\":{\"read\":true,\"write\":true},\"wss://relay.nostr.band\":{\"read\":true,\"write\":true},\"wss://relay.damus.io\":{\"read\":true,\"write\":true},\"wss://nostr.mom\":{\"read\":true,\"write\":true},\"wss://relay.primal.net\":{\"read\":true,\"write\":true}}","created_at":1759430057,"id":"641373ae26679f5ab1a9cc65b7851764c1fa77d75c5c8706f7ee64da53f08dbf","kind":3,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"7404f56cadc3ce03cda38aa29f8c52d56e58c59b9ac5e647faf4cc915648bf402278b75cbd8b9fba3ba6ebd8e269b974cbf89beeceab1bf707daf34a2d113601","tags":[["p","e24a86943d37a91ab485d6f9a7c66097c25ddd67e8bd1b75ed252a3c266cf9bb"]]}] +[14:34:26.854] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:34:26.854] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:34:26.854] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:34:26.854] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:34:27.075] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"That was a gorgeous phone. \n\n","created_at":1759430061,"id":"4a89643b176642af2291602088698f3bda6833bf4ca94be7c040b5b82abf9cd3","kind":1,"pubkey":"b7cfd472ff903441ec6cd55bb506f9744211a6e68e52525d42445169bda03f5a","sig":"b631939c992bfba950c99f0d195d60e6e20f51a77afce1e8c795bc6d2aac586d324bf61aa2a0b14505c5d2aeeec56f022ca34261a6c3dbd1b616df8466647776","tags":[["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","1023ed59a2b320d5bc3528b3b1d1f4c2f73862b13c514788bbfd00a1dbd5ed2a","wss://relay.primal.net"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","wss://a.nos.lol"],["e","d0e6e1cdf5c0ecd4d1a321a9071b6e1b98aa8053cc11243371c784e0af2b8263","wss://relay.primal.net","reply","1023ed59a2b320d5bc3528b3b1d1f4c2f73862b13c514788bbfd00a1dbd5ed2a"],["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://a.nos.lol","root","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"]]}] +[14:34:27.136] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"suggestion taken!","created_at":1759430059,"id":"d47cd5530f81c0344978931845dc5b38a48e31e70a851ad415d41cc2fde1a8cc","kind":1,"pubkey":"f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2","sig":"e03207df8c089594c453f7e28d56bfe681ffa9217fddea1ef739428ae8646a01acb06a0dba41238e0362d690163cfd0d68bf0773a491578cc7ac99c607a2c554","tags":[["alt","A short note: suggestion taken!"],["e","dae37e3e2a01fe16404fe782f7f01658643329d017f172522da65255864355c9","wss://relay.primal.net/","root","f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2"],["e","fd6c218e65d1d99c7868ce1413b7791a9728ff8a4f0431040fdf1f6bf1753e5f","wss://relay.nostr.band/","reply","592295cf2b09a7f9555f43adb734cbee8a84ee892ed3f9336e6a09b6413a0db9"],["p","f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2","wss://relay.primal.net/"],["p","592295cf2b09a7f9555f43adb734cbee8a84ee892ed3f9336e6a09b6413a0db9","wss://nostr.mom/"]]}] +[14:34:27.196] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Bro should do that shit in privacy 🤣","created_at":1759430052,"id":"a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b4f70a1fa45dc4daa7cef85864607ab73ca00bcad088a8f64d7100ace73a0c49f0fc0bf4ce53e2073cc10aad9659db98231aef00d688543e8b808e965564f8d8","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","","reply"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:34:27.257] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy summarize this article","created_at":1759430050,"id":"5eb5f32039f0fbee0e37b0071434c518d7ecdf7b063d24567f3cb1b684d6b6b0","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"51d77c2f3a95295dd684ed739b85228d68a19504ac2e952fe8431a624bc819693f5cb7dc47f0b57ed23e4a1e2a0faea1bc937453b28894831ad9476bd67908d0","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","40e9be66e68ad630faff997f819a031058718f1e2daa56d9b01179ce43f9f151","wss://bots.utxo.one/","root","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4"],["p","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4","wss://news.utxo.one/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:34:27.318] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My new post. I'd like to know what other nostriches are producing goods. \n\n","created_at":1759430049,"id":"2e849b5a051b9171a86584fff9f3383a4c200a19b62644087f5abee4e923aa0e","kind":1,"pubkey":"9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","sig":"5b256e8f308716438062397b4309450a078371c89652d718ad40a5565513ffabd82c2e6bd935d2bb8e17c021dc70dbe3e9b3356fe7efbfa8a157354e553de060","tags":[["p","63d699329db8e38569f2589b6a3aa7b0f231cec83a7789e29f0a396781bd7d72"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://relay.primal.net"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win"],["e","ac7266a6b8567254838bec57d898a9fb9a11d79f4049900da9422db2d8983065","wss://relay.primal.net","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"]]}] +[14:34:27.378] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"For those of you following along the other day regarding DeMu and interests were piqued, check out link below to the Satellite Spotlight! Rumor has it the full video is available aomewhere.\n\nThis was a decentralized and zappable (boostsble) live stream concert with 4 bands and multiple MCs from around the world. The tracks were extracted, mixed/mastered, and now available for all of DeMu to enjoy and zap. v4v and a lot of very hard work from a lot of people made this possible. \n\nLive hits different, check it all out! \nnostr:nevent1qqspg2se30aa9ddtrekjfmatr5qpnewpzxgkrxray458k0aj5c75gwspzemhxue69uhhyetvv9ujumt0wd68ytnsw43z7q3qsw5mjpdp288gavz6lwruc3ehuwdzjv34fksuaujp2s7c3h5g5wxqxpqqqqqqzs99u0q\n#demu #satellitespotlight #livemusic #music #tunestr","created_at":1759430047,"id":"baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"39c991e6df2d146ac893714fa5945aafddb999906e1a6e3882574499fce972474b17ec223a4cfb1be3d704367f5f331db9e503a5bdc9e583f8adc4b8ef4c1563","tags":[["e","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a","","mention"],["p","83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","","mention"],["q","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a"],["t","demu"],["t","satellitespotlight"],["t","livemusic"],["t","music"],["t","tunestr"]]}] +[14:34:27.439] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me on nerd sniping: Nothing stops this brain.\n","created_at":1759430044,"id":"c24c7f3678b9abc769f24b9ad0fa2afdc4d40f4b94acfed11b3ed79fc4b13e6b","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"897b532ac0539faa7c08f0c5cd29a410ab3d5e22f4c0ba062366622fa2dd1eb7d83a60e136c29bf6432b9e94683e925faa5f2f30a9770f0e9e46c386dbe4d937","tags":[["alt","A short note: Me on nerd sniping: Nothing stops this brain.\n"]]}] +[14:34:27.499] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917405\nWeight: 3993948\nhttps://thebitcoinblockclock.com/blockstr/000000000000000000013021fc701faa37e1df6175b069c84f9f61de09864039.png","created_at":1759430040,"id":"d54f0cdadb634bae3423eb24c5902c6cb2f9fc8afe65398ba516523ad9292a43","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"dc6982c7185c5cea024970d4b76fa12fe702bfbeaea1cfdf0f19531ecbc564f4546b4c9a6151b1c389f9a63289ef9068ebb778d4286ace9a17662859aab0571a","tags":[]}] +[14:34:27.560] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I agree PCSAM is stupid. As are payments for drugs and sex and other immoral behaviors. And payments for terrorism and money laundering. And political bribes and assassinations. And for buying high fructose syrup laden addictive carbon water beverages. \n\nI can think of a large number of things I don’t want bitcoin being used for…things that law enforcement agencies might try to compel your node to filter.","created_at":1759430034,"id":"a2081b549dbf7123286dcbafb44e31cec6980c1c3cd9e5d0555d92a177bd7a0e","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"8ae8e0fff7e38cf10c746364255d81b2d20f63f81118450aa1448eb2c3c811f0e6edc787deed3d5b824d8f75699221ee5b25bbc9163f472198219e9072a3dab3","tags":[["e","904a60f171463d37212f548f21ac2e3089083bff0c792c395c158c0b146f2b04","wss://offchain.pub","root"],["e","4bfa7ce9f411e87365f5ce4c162a569e0fcde1f8808a8310e795146ad7f47902","","reply"],["p","c02bedab495a8d73e23192fa161a0b8344821f48446811b1e810fac65b584f49"]]}] +[14:34:27.620] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"JUST IN: 🇷🇺 🇺🇸 Russian President Putin offers his condolences to Charlie Kirk's family and praises his legacy following his assassination.\n\n[Video - view in Telegram post ⬇️]\n\nSource: [BRICS News](https://t.me/bricsnews/8654)","created_at":1759430031,"id":"44ec98b6b6b187ec4d077659597a5368d0115a1ba400dee10c0385e90522fcce","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"4caa5d26f3f34e9938960e6b3138a1c4fe961e6ca7b20ede27cb22c4eec2bec20e07388f79214924e7503c4c6d6aef4866f2fbcf91707930faa7501e328e5b96","tags":[]}] +[14:34:27.681] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:34:27.741] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:34:27.802] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast\\n\\nDoomAI: markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\",\"name\":\"DoomAI Terminal Bunker\"}","created_at":1759430045,"id":"66daa27f8b383352ef98fed90f3f63cc2dc0a00ebeafe6de2b9203cd6fcf1d30","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"610f144f5eef224971dd5a609b2c2fbd1e427285664f63ef0c41a6757cf2c9b550d49651e330c705974ef12ef76561e434c6088d348bbbbb291f91d8b5aa3e4f","tags":[]}] +[14:34:27.862] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:34:27.923] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:27.983] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:28.044] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:34:28.105] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:34:28.130] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:34:28.191] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:28.251] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:28.312] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:28.372] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://relay.nos.social\":{\"read\":true,\"write\":true},\"wss://nos.lol\":{\"read\":true,\"write\":true},\"wss://purplepag.es\":{\"read\":true,\"write\":true},\"wss://relay.nostr.band\":{\"read\":true,\"write\":true},\"wss://relay.damus.io\":{\"read\":true,\"write\":true},\"wss://nostr.mom\":{\"read\":true,\"write\":true},\"wss://relay.primal.net\":{\"read\":true,\"write\":true}}","created_at":1759430057,"id":"641373ae26679f5ab1a9cc65b7851764c1fa77d75c5c8706f7ee64da53f08dbf","kind":3,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"7404f56cadc3ce03cda38aa29f8c52d56e58c59b9ac5e647faf4cc915648bf402278b75cbd8b9fba3ba6ebd8e269b974cbf89beeceab1bf707daf34a2d113601","tags":[["p","e24a86943d37a91ab485d6f9a7c66097c25ddd67e8bd1b75ed252a3c266cf9bb"]]}] +[14:34:30.495] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:34:30.495] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:34:30.495] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:34:30.496] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:34:30.648] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"That was a gorgeous phone. \n\n","created_at":1759430061,"id":"4a89643b176642af2291602088698f3bda6833bf4ca94be7c040b5b82abf9cd3","kind":1,"pubkey":"b7cfd472ff903441ec6cd55bb506f9744211a6e68e52525d42445169bda03f5a","sig":"b631939c992bfba950c99f0d195d60e6e20f51a77afce1e8c795bc6d2aac586d324bf61aa2a0b14505c5d2aeeec56f022ca34261a6c3dbd1b616df8466647776","tags":[["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","1023ed59a2b320d5bc3528b3b1d1f4c2f73862b13c514788bbfd00a1dbd5ed2a","wss://relay.primal.net"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","wss://a.nos.lol"],["e","d0e6e1cdf5c0ecd4d1a321a9071b6e1b98aa8053cc11243371c784e0af2b8263","wss://relay.primal.net","reply","1023ed59a2b320d5bc3528b3b1d1f4c2f73862b13c514788bbfd00a1dbd5ed2a"],["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://a.nos.lol","root","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"]]}] +[14:34:30.708] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"suggestion taken!","created_at":1759430059,"id":"d47cd5530f81c0344978931845dc5b38a48e31e70a851ad415d41cc2fde1a8cc","kind":1,"pubkey":"f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2","sig":"e03207df8c089594c453f7e28d56bfe681ffa9217fddea1ef739428ae8646a01acb06a0dba41238e0362d690163cfd0d68bf0773a491578cc7ac99c607a2c554","tags":[["alt","A short note: suggestion taken!"],["e","dae37e3e2a01fe16404fe782f7f01658643329d017f172522da65255864355c9","wss://relay.primal.net/","root","f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2"],["e","fd6c218e65d1d99c7868ce1413b7791a9728ff8a4f0431040fdf1f6bf1753e5f","wss://relay.nostr.band/","reply","592295cf2b09a7f9555f43adb734cbee8a84ee892ed3f9336e6a09b6413a0db9"],["p","f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2","wss://relay.primal.net/"],["p","592295cf2b09a7f9555f43adb734cbee8a84ee892ed3f9336e6a09b6413a0db9","wss://nostr.mom/"]]}] +[14:34:30.768] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Bro should do that shit in privacy 🤣","created_at":1759430052,"id":"a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b4f70a1fa45dc4daa7cef85864607ab73ca00bcad088a8f64d7100ace73a0c49f0fc0bf4ce53e2073cc10aad9659db98231aef00d688543e8b808e965564f8d8","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","","reply"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:34:30.829] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy summarize this article","created_at":1759430050,"id":"5eb5f32039f0fbee0e37b0071434c518d7ecdf7b063d24567f3cb1b684d6b6b0","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"51d77c2f3a95295dd684ed739b85228d68a19504ac2e952fe8431a624bc819693f5cb7dc47f0b57ed23e4a1e2a0faea1bc937453b28894831ad9476bd67908d0","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","40e9be66e68ad630faff997f819a031058718f1e2daa56d9b01179ce43f9f151","wss://bots.utxo.one/","root","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4"],["p","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4","wss://news.utxo.one/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:34:30.890] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My new post. I'd like to know what other nostriches are producing goods. \n\n","created_at":1759430049,"id":"2e849b5a051b9171a86584fff9f3383a4c200a19b62644087f5abee4e923aa0e","kind":1,"pubkey":"9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","sig":"5b256e8f308716438062397b4309450a078371c89652d718ad40a5565513ffabd82c2e6bd935d2bb8e17c021dc70dbe3e9b3356fe7efbfa8a157354e553de060","tags":[["p","63d699329db8e38569f2589b6a3aa7b0f231cec83a7789e29f0a396781bd7d72"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://relay.primal.net"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win"],["e","ac7266a6b8567254838bec57d898a9fb9a11d79f4049900da9422db2d8983065","wss://relay.primal.net","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"]]}] +[14:34:30.950] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"For those of you following along the other day regarding DeMu and interests were piqued, check out link below to the Satellite Spotlight! Rumor has it the full video is available aomewhere.\n\nThis was a decentralized and zappable (boostsble) live stream concert with 4 bands and multiple MCs from around the world. The tracks were extracted, mixed/mastered, and now available for all of DeMu to enjoy and zap. v4v and a lot of very hard work from a lot of people made this possible. \n\nLive hits different, check it all out! \nnostr:nevent1qqspg2se30aa9ddtrekjfmatr5qpnewpzxgkrxray458k0aj5c75gwspzemhxue69uhhyetvv9ujumt0wd68ytnsw43z7q3qsw5mjpdp288gavz6lwruc3ehuwdzjv34fksuaujp2s7c3h5g5wxqxpqqqqqqzs99u0q\n#demu #satellitespotlight #livemusic #music #tunestr","created_at":1759430047,"id":"baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"39c991e6df2d146ac893714fa5945aafddb999906e1a6e3882574499fce972474b17ec223a4cfb1be3d704367f5f331db9e503a5bdc9e583f8adc4b8ef4c1563","tags":[["e","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a","","mention"],["p","83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","","mention"],["q","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a"],["t","demu"],["t","satellitespotlight"],["t","livemusic"],["t","music"],["t","tunestr"]]}] +[14:34:31.011] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me on nerd sniping: Nothing stops this brain.\n","created_at":1759430044,"id":"c24c7f3678b9abc769f24b9ad0fa2afdc4d40f4b94acfed11b3ed79fc4b13e6b","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"897b532ac0539faa7c08f0c5cd29a410ab3d5e22f4c0ba062366622fa2dd1eb7d83a60e136c29bf6432b9e94683e925faa5f2f30a9770f0e9e46c386dbe4d937","tags":[["alt","A short note: Me on nerd sniping: Nothing stops this brain.\n"]]}] +[14:34:31.071] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917405\nWeight: 3993948\nhttps://thebitcoinblockclock.com/blockstr/000000000000000000013021fc701faa37e1df6175b069c84f9f61de09864039.png","created_at":1759430040,"id":"d54f0cdadb634bae3423eb24c5902c6cb2f9fc8afe65398ba516523ad9292a43","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"dc6982c7185c5cea024970d4b76fa12fe702bfbeaea1cfdf0f19531ecbc564f4546b4c9a6151b1c389f9a63289ef9068ebb778d4286ace9a17662859aab0571a","tags":[]}] +[14:34:31.131] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I agree PCSAM is stupid. As are payments for drugs and sex and other immoral behaviors. And payments for terrorism and money laundering. And political bribes and assassinations. And for buying high fructose syrup laden addictive carbon water beverages. \n\nI can think of a large number of things I don’t want bitcoin being used for…things that law enforcement agencies might try to compel your node to filter.","created_at":1759430034,"id":"a2081b549dbf7123286dcbafb44e31cec6980c1c3cd9e5d0555d92a177bd7a0e","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"8ae8e0fff7e38cf10c746364255d81b2d20f63f81118450aa1448eb2c3c811f0e6edc787deed3d5b824d8f75699221ee5b25bbc9163f472198219e9072a3dab3","tags":[["e","904a60f171463d37212f548f21ac2e3089083bff0c792c395c158c0b146f2b04","wss://offchain.pub","root"],["e","4bfa7ce9f411e87365f5ce4c162a569e0fcde1f8808a8310e795146ad7f47902","","reply"],["p","c02bedab495a8d73e23192fa161a0b8344821f48446811b1e810fac65b584f49"]]}] +[14:34:31.192] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"JUST IN: 🇷🇺 🇺🇸 Russian President Putin offers his condolences to Charlie Kirk's family and praises his legacy following his assassination.\n\n[Video - view in Telegram post ⬇️]\n\nSource: [BRICS News](https://t.me/bricsnews/8654)","created_at":1759430031,"id":"44ec98b6b6b187ec4d077659597a5368d0115a1ba400dee10c0385e90522fcce","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"4caa5d26f3f34e9938960e6b3138a1c4fe961e6ca7b20ede27cb22c4eec2bec20e07388f79214924e7503c4c6d6aef4866f2fbcf91707930faa7501e328e5b96","tags":[]}] +[14:34:31.253] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:34:31.313] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:34:31.374] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast\\n\\nDoomAI: markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\",\"name\":\"DoomAI Terminal Bunker\"}","created_at":1759430045,"id":"66daa27f8b383352ef98fed90f3f63cc2dc0a00ebeafe6de2b9203cd6fcf1d30","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"610f144f5eef224971dd5a609b2c2fbd1e427285664f63ef0c41a6757cf2c9b550d49651e330c705974ef12ef76561e434c6088d348bbbbb291f91d8b5aa3e4f","tags":[]}] +[14:34:31.435] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:34:31.495] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:31.556] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:31.616] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:34:31.677] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:34:31.737] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:34:31.798] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:31.858] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:31.919] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:31.979] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://relay.nos.social\":{\"read\":true,\"write\":true},\"wss://nos.lol\":{\"read\":true,\"write\":true},\"wss://purplepag.es\":{\"read\":true,\"write\":true},\"wss://relay.nostr.band\":{\"read\":true,\"write\":true},\"wss://relay.damus.io\":{\"read\":true,\"write\":true},\"wss://nostr.mom\":{\"read\":true,\"write\":true},\"wss://relay.primal.net\":{\"read\":true,\"write\":true}}","created_at":1759430057,"id":"641373ae26679f5ab1a9cc65b7851764c1fa77d75c5c8706f7ee64da53f08dbf","kind":3,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"7404f56cadc3ce03cda38aa29f8c52d56e58c59b9ac5e647faf4cc915648bf402278b75cbd8b9fba3ba6ebd8e269b974cbf89beeceab1bf707daf34a2d113601","tags":[["p","e24a86943d37a91ab485d6f9a7c66097c25ddd67e8bd1b75ed252a3c266cf9bb"]]}] +[14:34:34.069] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:34:34.069] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:34:34.070] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:34:34.070] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:34:34.221] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"In the UK, Keir Starmer made a point of saying ID cards would be compulsory so he can then say he has taken feedback on board & will now make them voluntary whilst consulting the public. Then, increasingly it'll be convenient not to use it & in parallel inconvenient to use cash & convenient to use CBDCs. By 2030, both will have critical mass... unless people are vigilant & energetic in their resistance. \n\n","created_at":1759430072,"id":"a616aacb518c309010d853ecf8efcd60306d3c0ff6c5e776b44ccde4d0be657e","kind":1,"pubkey":"d712474feafbab89fb9e6cd4ff01239e3b6a1a96991f45e564b2debf937a0191","sig":"e9483833c624ca1e2122b28593f4f229085814b9c12c4338a0eacfaff88e3cf7354c583361c74b9f5a318ec9d9e996a97b5f054c7a99c57cf00c02bfdf3f59ac","tags":[]}] +[14:34:34.282] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"That was a gorgeous phone. \n\n","created_at":1759430061,"id":"4a89643b176642af2291602088698f3bda6833bf4ca94be7c040b5b82abf9cd3","kind":1,"pubkey":"b7cfd472ff903441ec6cd55bb506f9744211a6e68e52525d42445169bda03f5a","sig":"b631939c992bfba950c99f0d195d60e6e20f51a77afce1e8c795bc6d2aac586d324bf61aa2a0b14505c5d2aeeec56f022ca34261a6c3dbd1b616df8466647776","tags":[["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","1023ed59a2b320d5bc3528b3b1d1f4c2f73862b13c514788bbfd00a1dbd5ed2a","wss://relay.primal.net"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","wss://a.nos.lol"],["e","d0e6e1cdf5c0ecd4d1a321a9071b6e1b98aa8053cc11243371c784e0af2b8263","wss://relay.primal.net","reply","1023ed59a2b320d5bc3528b3b1d1f4c2f73862b13c514788bbfd00a1dbd5ed2a"],["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://a.nos.lol","root","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"]]}] +[14:34:34.343] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"suggestion taken!","created_at":1759430059,"id":"d47cd5530f81c0344978931845dc5b38a48e31e70a851ad415d41cc2fde1a8cc","kind":1,"pubkey":"f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2","sig":"e03207df8c089594c453f7e28d56bfe681ffa9217fddea1ef739428ae8646a01acb06a0dba41238e0362d690163cfd0d68bf0773a491578cc7ac99c607a2c554","tags":[["alt","A short note: suggestion taken!"],["e","dae37e3e2a01fe16404fe782f7f01658643329d017f172522da65255864355c9","wss://relay.primal.net/","root","f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2"],["e","fd6c218e65d1d99c7868ce1413b7791a9728ff8a4f0431040fdf1f6bf1753e5f","wss://relay.nostr.band/","reply","592295cf2b09a7f9555f43adb734cbee8a84ee892ed3f9336e6a09b6413a0db9"],["p","f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2","wss://relay.primal.net/"],["p","592295cf2b09a7f9555f43adb734cbee8a84ee892ed3f9336e6a09b6413a0db9","wss://nostr.mom/"]]}] +[14:34:34.403] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Bro should do that shit in privacy 🤣","created_at":1759430052,"id":"a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b4f70a1fa45dc4daa7cef85864607ab73ca00bcad088a8f64d7100ace73a0c49f0fc0bf4ce53e2073cc10aad9659db98231aef00d688543e8b808e965564f8d8","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","","reply"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:34:34.464] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy summarize this article","created_at":1759430050,"id":"5eb5f32039f0fbee0e37b0071434c518d7ecdf7b063d24567f3cb1b684d6b6b0","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"51d77c2f3a95295dd684ed739b85228d68a19504ac2e952fe8431a624bc819693f5cb7dc47f0b57ed23e4a1e2a0faea1bc937453b28894831ad9476bd67908d0","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","40e9be66e68ad630faff997f819a031058718f1e2daa56d9b01179ce43f9f151","wss://bots.utxo.one/","root","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4"],["p","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4","wss://news.utxo.one/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:34:34.525] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My new post. I'd like to know what other nostriches are producing goods. \n\n","created_at":1759430049,"id":"2e849b5a051b9171a86584fff9f3383a4c200a19b62644087f5abee4e923aa0e","kind":1,"pubkey":"9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","sig":"5b256e8f308716438062397b4309450a078371c89652d718ad40a5565513ffabd82c2e6bd935d2bb8e17c021dc70dbe3e9b3356fe7efbfa8a157354e553de060","tags":[["p","63d699329db8e38569f2589b6a3aa7b0f231cec83a7789e29f0a396781bd7d72"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://relay.primal.net"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win"],["e","ac7266a6b8567254838bec57d898a9fb9a11d79f4049900da9422db2d8983065","wss://relay.primal.net","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"]]}] +[14:34:34.585] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"For those of you following along the other day regarding DeMu and interests were piqued, check out link below to the Satellite Spotlight! Rumor has it the full video is available aomewhere.\n\nThis was a decentralized and zappable (boostsble) live stream concert with 4 bands and multiple MCs from around the world. The tracks were extracted, mixed/mastered, and now available for all of DeMu to enjoy and zap. v4v and a lot of very hard work from a lot of people made this possible. \n\nLive hits different, check it all out! \nnostr:nevent1qqspg2se30aa9ddtrekjfmatr5qpnewpzxgkrxray458k0aj5c75gwspzemhxue69uhhyetvv9ujumt0wd68ytnsw43z7q3qsw5mjpdp288gavz6lwruc3ehuwdzjv34fksuaujp2s7c3h5g5wxqxpqqqqqqzs99u0q\n#demu #satellitespotlight #livemusic #music #tunestr","created_at":1759430047,"id":"baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"39c991e6df2d146ac893714fa5945aafddb999906e1a6e3882574499fce972474b17ec223a4cfb1be3d704367f5f331db9e503a5bdc9e583f8adc4b8ef4c1563","tags":[["e","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a","","mention"],["p","83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","","mention"],["q","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a"],["t","demu"],["t","satellitespotlight"],["t","livemusic"],["t","music"],["t","tunestr"]]}] +[14:34:34.646] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me on nerd sniping: Nothing stops this brain.\n","created_at":1759430044,"id":"c24c7f3678b9abc769f24b9ad0fa2afdc4d40f4b94acfed11b3ed79fc4b13e6b","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"897b532ac0539faa7c08f0c5cd29a410ab3d5e22f4c0ba062366622fa2dd1eb7d83a60e136c29bf6432b9e94683e925faa5f2f30a9770f0e9e46c386dbe4d937","tags":[["alt","A short note: Me on nerd sniping: Nothing stops this brain.\n"]]}] +[14:34:34.706] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917405\nWeight: 3993948\nhttps://thebitcoinblockclock.com/blockstr/000000000000000000013021fc701faa37e1df6175b069c84f9f61de09864039.png","created_at":1759430040,"id":"d54f0cdadb634bae3423eb24c5902c6cb2f9fc8afe65398ba516523ad9292a43","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"dc6982c7185c5cea024970d4b76fa12fe702bfbeaea1cfdf0f19531ecbc564f4546b4c9a6151b1c389f9a63289ef9068ebb778d4286ace9a17662859aab0571a","tags":[]}] +[14:34:34.767] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I agree PCSAM is stupid. As are payments for drugs and sex and other immoral behaviors. And payments for terrorism and money laundering. And political bribes and assassinations. And for buying high fructose syrup laden addictive carbon water beverages. \n\nI can think of a large number of things I don’t want bitcoin being used for…things that law enforcement agencies might try to compel your node to filter.","created_at":1759430034,"id":"a2081b549dbf7123286dcbafb44e31cec6980c1c3cd9e5d0555d92a177bd7a0e","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"8ae8e0fff7e38cf10c746364255d81b2d20f63f81118450aa1448eb2c3c811f0e6edc787deed3d5b824d8f75699221ee5b25bbc9163f472198219e9072a3dab3","tags":[["e","904a60f171463d37212f548f21ac2e3089083bff0c792c395c158c0b146f2b04","wss://offchain.pub","root"],["e","4bfa7ce9f411e87365f5ce4c162a569e0fcde1f8808a8310e795146ad7f47902","","reply"],["p","c02bedab495a8d73e23192fa161a0b8344821f48446811b1e810fac65b584f49"]]}] +[14:34:34.827] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:34:34.888] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:34:34.948] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast\\n\\nDoomAI: markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\",\"name\":\"DoomAI Terminal Bunker\"}","created_at":1759430045,"id":"66daa27f8b383352ef98fed90f3f63cc2dc0a00ebeafe6de2b9203cd6fcf1d30","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"610f144f5eef224971dd5a609b2c2fbd1e427285664f63ef0c41a6757cf2c9b550d49651e330c705974ef12ef76561e434c6088d348bbbbb291f91d8b5aa3e4f","tags":[]}] +[14:34:35.009] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:34:35.069] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:35.130] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:35.191] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:34:35.251] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:34:35.312] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:34:35.372] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:35.433] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:35.493] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:35.554] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://relay.nos.social\":{\"read\":true,\"write\":true},\"wss://nos.lol\":{\"read\":true,\"write\":true},\"wss://purplepag.es\":{\"read\":true,\"write\":true},\"wss://relay.nostr.band\":{\"read\":true,\"write\":true},\"wss://relay.damus.io\":{\"read\":true,\"write\":true},\"wss://nostr.mom\":{\"read\":true,\"write\":true},\"wss://relay.primal.net\":{\"read\":true,\"write\":true}}","created_at":1759430057,"id":"641373ae26679f5ab1a9cc65b7851764c1fa77d75c5c8706f7ee64da53f08dbf","kind":3,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"7404f56cadc3ce03cda38aa29f8c52d56e58c59b9ac5e647faf4cc915648bf402278b75cbd8b9fba3ba6ebd8e269b974cbf89beeceab1bf707daf34a2d113601","tags":[["p","e24a86943d37a91ab485d6f9a7c66097c25ddd67e8bd1b75ed252a3c266cf9bb"]]}] +[14:34:36.019] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the hex pubkey of nostr:nprofile1qqs9pk20ctv9srrg9vr354p03v0rrgsqkpggh2u45va77zz4mu5p6ccpzemhxue69uhk2er9dchxummnw3ezumrpdejz7qgkwaehxw309a5xjum59ehx7um5wghxcctwvshszrnhwden5te0dehhxtnvdakz7qrxnfk","created_at":1759430075,"id":"cf9805ab0a6528d95a06dbe601f5dbb7910792c86aaa4692113f862d099637b8","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"995f2c9c755875e0e06881602baa18bac5a00f09a164e3f81b56e61bf36fd6ee352ce02c2b044fbd353a5e6c7879a2b96fe1142b5f736dc43f07d23bb9012a41","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","40e9be66e68ad630faff997f819a031058718f1e2daa56d9b01179ce43f9f151","wss://bots.utxo.one/","root","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4"],["e","5eb5f32039f0fbee0e37b0071434c518d7ecdf7b063d24567f3cb1b684d6b6b0","wss://nostr.bitcoiner.social/","reply","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4","wss://news.utxo.one/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"]]}] +[14:34:37.697] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:34:37.697] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:34:37.697] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:34:37.698] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:34:37.849] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Wine hole 😂","created_at":1759430077,"id":"ef693d0ad79bf411f9d90d9fd1f19f4e531766d461e19f634dfc48737e40a93b","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"68ec8a06ad63e12c2e06e96eff2b4e48efbb1a7a64730315a288187f8b1fc7370280c726d76a21958bc95ce55d130dc02be3c6fe911e72526fee4beb233e778c","tags":[["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root"],["e","a8b83c760779d8e796bf63c590c188ad9ca2c5b39802377b6ca4207008ba4435","","reply"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"]]}] +[14:34:37.910] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I grew up calling them “the tribe.” Every memory with my grandparents listening on a radio had that name and logo entrenched in my favorite memories. \n\nThe guardians thing just gutted me with all the virtue signaling bullshit so I was almost a fair weather fan after that. This Jose moment was a bridge back for a moment. ","created_at":1759430076,"id":"2f6c4eb99edb947ceb1943498a5ef5350b1fae65b2330e2457d8179271f35a4c","kind":1,"pubkey":"9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae","sig":"39a78bcc6e01e944e35b7084475c7a8d18b272f1a3abe735f7a0819b72fbcf598a8e36c6c3daf2ee150a986e5a6075c61913228c755f643a142a04968b2a6bf6","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["e","f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23","wss://nostr.mom","reply"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","","mention"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f","","mention"]]}] +[14:34:37.971] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Music to my ears, can’t wait to eat there!! Thanks ","created_at":1759430076,"id":"0c6f28c5275be2d2ba293b92ffcf3b472ab933d60325a546cd4243ce84c4f150","kind":1,"pubkey":"13b42c1bbc81aad1e28b3e87c8e1ac818444902dd5f6ff0582632114cf750fd6","sig":"07a59dd963a18c9bc65df3eb815855819c313a1458dfcb463f9990b88f0ffb315c468caf98423bee895f6aa1eaf64c8b5d988f47360a85230aeda7f77b4e8471","tags":[["e","7f2508270ca33374fd2fbd6e912580fb23a8af45437012f3cba6ac21ef0c778b","wss://relay.primal.net","root"],["e","2fc49ef2fc00792b7daee2d2bc4f0d6c53de9cfa0f5a469d2c2e2a2e0ddeb7b8","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","reply"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae","","mention"],["p","0b77a4d6cc1fa1914944fc85e3055c790d7988d98dd6266ab08cde12cb11fdb7","","mention"]]}] +[14:34:38.031] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the hex pubkey of nostr:nprofile1qqs9pk20ctv9srrg9vr354p03v0rrgsqkpggh2u45va77zz4mu5p6ccpzemhxue69uhk2er9dchxummnw3ezumrpdejz7qgkwaehxw309a5xjum59ehx7um5wghxcctwvshszrnhwden5te0dehhxtnvdakz7qrxnfk","created_at":1759430075,"id":"cf9805ab0a6528d95a06dbe601f5dbb7910792c86aaa4692113f862d099637b8","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"995f2c9c755875e0e06881602baa18bac5a00f09a164e3f81b56e61bf36fd6ee352ce02c2b044fbd353a5e6c7879a2b96fe1142b5f736dc43f07d23bb9012a41","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","40e9be66e68ad630faff997f819a031058718f1e2daa56d9b01179ce43f9f151","wss://bots.utxo.one/","root","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4"],["e","5eb5f32039f0fbee0e37b0071434c518d7ecdf7b063d24567f3cb1b684d6b6b0","wss://nostr.bitcoiner.social/","reply","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4","wss://news.utxo.one/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"]]}] +[14:34:38.092] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"In the UK, Keir Starmer made a point of saying ID cards would be compulsory so he can then say he has taken feedback on board & will now make them voluntary whilst consulting the public. Then, increasingly it'll be convenient not to use it & in parallel inconvenient to use cash & convenient to use CBDCs. By 2030, both will have critical mass... unless people are vigilant & energetic in their resistance. \n\n","created_at":1759430072,"id":"a616aacb518c309010d853ecf8efcd60306d3c0ff6c5e776b44ccde4d0be657e","kind":1,"pubkey":"d712474feafbab89fb9e6cd4ff01239e3b6a1a96991f45e564b2debf937a0191","sig":"e9483833c624ca1e2122b28593f4f229085814b9c12c4338a0eacfaff88e3cf7354c583361c74b9f5a318ec9d9e996a97b5f054c7a99c57cf00c02bfdf3f59ac","tags":[]}] +[14:34:38.117] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"That was a gorgeous phone. \n\n","created_at":1759430061,"id":"4a89643b176642af2291602088698f3bda6833bf4ca94be7c040b5b82abf9cd3","kind":1,"pubkey":"b7cfd472ff903441ec6cd55bb506f9744211a6e68e52525d42445169bda03f5a","sig":"b631939c992bfba950c99f0d195d60e6e20f51a77afce1e8c795bc6d2aac586d324bf61aa2a0b14505c5d2aeeec56f022ca34261a6c3dbd1b616df8466647776","tags":[["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","1023ed59a2b320d5bc3528b3b1d1f4c2f73862b13c514788bbfd00a1dbd5ed2a","wss://relay.primal.net"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","wss://a.nos.lol"],["e","d0e6e1cdf5c0ecd4d1a321a9071b6e1b98aa8053cc11243371c784e0af2b8263","wss://relay.primal.net","reply","1023ed59a2b320d5bc3528b3b1d1f4c2f73862b13c514788bbfd00a1dbd5ed2a"],["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://a.nos.lol","root","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"]]}] +[14:34:38.178] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"suggestion taken!","created_at":1759430059,"id":"d47cd5530f81c0344978931845dc5b38a48e31e70a851ad415d41cc2fde1a8cc","kind":1,"pubkey":"f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2","sig":"e03207df8c089594c453f7e28d56bfe681ffa9217fddea1ef739428ae8646a01acb06a0dba41238e0362d690163cfd0d68bf0773a491578cc7ac99c607a2c554","tags":[["alt","A short note: suggestion taken!"],["e","dae37e3e2a01fe16404fe782f7f01658643329d017f172522da65255864355c9","wss://relay.primal.net/","root","f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2"],["e","fd6c218e65d1d99c7868ce1413b7791a9728ff8a4f0431040fdf1f6bf1753e5f","wss://relay.nostr.band/","reply","592295cf2b09a7f9555f43adb734cbee8a84ee892ed3f9336e6a09b6413a0db9"],["p","f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2","wss://relay.primal.net/"],["p","592295cf2b09a7f9555f43adb734cbee8a84ee892ed3f9336e6a09b6413a0db9","wss://nostr.mom/"]]}] +[14:34:38.239] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Bro should do that shit in privacy 🤣","created_at":1759430052,"id":"a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b4f70a1fa45dc4daa7cef85864607ab73ca00bcad088a8f64d7100ace73a0c49f0fc0bf4ce53e2073cc10aad9659db98231aef00d688543e8b808e965564f8d8","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","","reply"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:34:38.299] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy summarize this article","created_at":1759430050,"id":"5eb5f32039f0fbee0e37b0071434c518d7ecdf7b063d24567f3cb1b684d6b6b0","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"51d77c2f3a95295dd684ed739b85228d68a19504ac2e952fe8431a624bc819693f5cb7dc47f0b57ed23e4a1e2a0faea1bc937453b28894831ad9476bd67908d0","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","40e9be66e68ad630faff997f819a031058718f1e2daa56d9b01179ce43f9f151","wss://bots.utxo.one/","root","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4"],["p","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4","wss://news.utxo.one/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:34:38.360] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My new post. I'd like to know what other nostriches are producing goods. \n\n","created_at":1759430049,"id":"2e849b5a051b9171a86584fff9f3383a4c200a19b62644087f5abee4e923aa0e","kind":1,"pubkey":"9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","sig":"5b256e8f308716438062397b4309450a078371c89652d718ad40a5565513ffabd82c2e6bd935d2bb8e17c021dc70dbe3e9b3356fe7efbfa8a157354e553de060","tags":[["p","63d699329db8e38569f2589b6a3aa7b0f231cec83a7789e29f0a396781bd7d72"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://relay.primal.net"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win"],["e","ac7266a6b8567254838bec57d898a9fb9a11d79f4049900da9422db2d8983065","wss://relay.primal.net","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"]]}] +[14:34:38.420] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:34:38.481] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:34:38.541] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast\\n\\nDoomAI: markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\",\"name\":\"DoomAI Terminal Bunker\"}","created_at":1759430045,"id":"66daa27f8b383352ef98fed90f3f63cc2dc0a00ebeafe6de2b9203cd6fcf1d30","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"610f144f5eef224971dd5a609b2c2fbd1e427285664f63ef0c41a6757cf2c9b550d49651e330c705974ef12ef76561e434c6088d348bbbbb291f91d8b5aa3e4f","tags":[]}] +[14:34:38.602] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:34:38.662] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:38.723] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:38.783] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:34:38.844] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:34:38.877] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759428493",{"content":"Me on nerd sniping: Nothing stops this brain.\n","created_at":1759430044,"id":"c24c7f3678b9abc769f24b9ad0fa2afdc4d40f4b94acfed11b3ed79fc4b13e6b","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"897b532ac0539faa7c08f0c5cd29a410ab3d5e22f4c0ba062366622fa2dd1eb7d83a60e136c29bf6432b9e94683e925faa5f2f30a9770f0e9e46c386dbe4d937","tags":[["alt","A short note: Me on nerd sniping: Nothing stops this brain.\n"]]}] +[14:34:38.877] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:34:38.938] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:38.999] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:39.059] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:39.422] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:34:39.663] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:34:40.690] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:34:41.173] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:34:41.415] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:34:41.898] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:34:42.140] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:34:42.562] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:34:43.106] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:34:43.373] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:34:44.223] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:34:44.223] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:34:44.223] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:34:44.223] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:34:44.374] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Wine hole 😂","created_at":1759430077,"id":"ef693d0ad79bf411f9d90d9fd1f19f4e531766d461e19f634dfc48737e40a93b","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"68ec8a06ad63e12c2e06e96eff2b4e48efbb1a7a64730315a288187f8b1fc7370280c726d76a21958bc95ce55d130dc02be3c6fe911e72526fee4beb233e778c","tags":[["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root"],["e","a8b83c760779d8e796bf63c590c188ad9ca2c5b39802377b6ca4207008ba4435","","reply"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"]]}] +[14:34:44.435] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Great day, as the enemy is revealing itself as domestic as well as foreign. https://x.com/i/status/1973449793327550819","created_at":1759430076,"id":"c10f69b808e398153ce4616b432258cb40a6204821ffd6182e66acec3227ec5f","kind":1,"pubkey":"519d2fb3c354f44f5d4c7cdfc532633daf029bcc7d54beb0cb0f770646f8350f","sig":"8ad37f9f8bc2722a728e367767725a8d47a63e826f3bd323cf38b34d9a86f53b4200920a7e52b404dd30bc36a1e520ef9d7dca3be91f36a446c8d05347f76bb3","tags":[["r","https://x.com/i/status/1973449793327550819"]]}] +[14:34:44.495] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I grew up calling them “the tribe.” Every memory with my grandparents listening on a radio had that name and logo entrenched in my favorite memories. \n\nThe guardians thing just gutted me with all the virtue signaling bullshit so I was almost a fair weather fan after that. This Jose moment was a bridge back for a moment. ","created_at":1759430076,"id":"2f6c4eb99edb947ceb1943498a5ef5350b1fae65b2330e2457d8179271f35a4c","kind":1,"pubkey":"9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae","sig":"39a78bcc6e01e944e35b7084475c7a8d18b272f1a3abe735f7a0819b72fbcf598a8e36c6c3daf2ee150a986e5a6075c61913228c755f643a142a04968b2a6bf6","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["e","f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23","wss://nostr.mom","reply"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","","mention"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f","","mention"]]}] +[14:34:44.556] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Music to my ears, can’t wait to eat there!! Thanks ","created_at":1759430076,"id":"0c6f28c5275be2d2ba293b92ffcf3b472ab933d60325a546cd4243ce84c4f150","kind":1,"pubkey":"13b42c1bbc81aad1e28b3e87c8e1ac818444902dd5f6ff0582632114cf750fd6","sig":"07a59dd963a18c9bc65df3eb815855819c313a1458dfcb463f9990b88f0ffb315c468caf98423bee895f6aa1eaf64c8b5d988f47360a85230aeda7f77b4e8471","tags":[["e","7f2508270ca33374fd2fbd6e912580fb23a8af45437012f3cba6ac21ef0c778b","wss://relay.primal.net","root"],["e","2fc49ef2fc00792b7daee2d2bc4f0d6c53de9cfa0f5a469d2c2e2a2e0ddeb7b8","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","reply"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae","","mention"],["p","0b77a4d6cc1fa1914944fc85e3055c790d7988d98dd6266ab08cde12cb11fdb7","","mention"]]}] +[14:34:44.616] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the hex pubkey of nostr:nprofile1qqs9pk20ctv9srrg9vr354p03v0rrgsqkpggh2u45va77zz4mu5p6ccpzemhxue69uhk2er9dchxummnw3ezumrpdejz7qgkwaehxw309a5xjum59ehx7um5wghxcctwvshszrnhwden5te0dehhxtnvdakz7qrxnfk","created_at":1759430075,"id":"cf9805ab0a6528d95a06dbe601f5dbb7910792c86aaa4692113f862d099637b8","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"995f2c9c755875e0e06881602baa18bac5a00f09a164e3f81b56e61bf36fd6ee352ce02c2b044fbd353a5e6c7879a2b96fe1142b5f736dc43f07d23bb9012a41","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","40e9be66e68ad630faff997f819a031058718f1e2daa56d9b01179ce43f9f151","wss://bots.utxo.one/","root","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4"],["e","5eb5f32039f0fbee0e37b0071434c518d7ecdf7b063d24567f3cb1b684d6b6b0","wss://nostr.bitcoiner.social/","reply","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4","wss://news.utxo.one/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"]]}] +[14:34:44.677] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"In the UK, Keir Starmer made a point of saying ID cards would be compulsory so he can then say he has taken feedback on board & will now make them voluntary whilst consulting the public. Then, increasingly it'll be convenient not to use it & in parallel inconvenient to use cash & convenient to use CBDCs. By 2030, both will have critical mass... unless people are vigilant & energetic in their resistance. \n\n","created_at":1759430072,"id":"a616aacb518c309010d853ecf8efcd60306d3c0ff6c5e776b44ccde4d0be657e","kind":1,"pubkey":"d712474feafbab89fb9e6cd4ff01239e3b6a1a96991f45e564b2debf937a0191","sig":"e9483833c624ca1e2122b28593f4f229085814b9c12c4338a0eacfaff88e3cf7354c583361c74b9f5a318ec9d9e996a97b5f054c7a99c57cf00c02bfdf3f59ac","tags":[]}] +[14:34:44.737] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"That was a gorgeous phone. \n\n","created_at":1759430061,"id":"4a89643b176642af2291602088698f3bda6833bf4ca94be7c040b5b82abf9cd3","kind":1,"pubkey":"b7cfd472ff903441ec6cd55bb506f9744211a6e68e52525d42445169bda03f5a","sig":"b631939c992bfba950c99f0d195d60e6e20f51a77afce1e8c795bc6d2aac586d324bf61aa2a0b14505c5d2aeeec56f022ca34261a6c3dbd1b616df8466647776","tags":[["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","1023ed59a2b320d5bc3528b3b1d1f4c2f73862b13c514788bbfd00a1dbd5ed2a","wss://relay.primal.net"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","wss://a.nos.lol"],["e","d0e6e1cdf5c0ecd4d1a321a9071b6e1b98aa8053cc11243371c784e0af2b8263","wss://relay.primal.net","reply","1023ed59a2b320d5bc3528b3b1d1f4c2f73862b13c514788bbfd00a1dbd5ed2a"],["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://a.nos.lol","root","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"]]}] +[14:34:44.798] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"suggestion taken!","created_at":1759430059,"id":"d47cd5530f81c0344978931845dc5b38a48e31e70a851ad415d41cc2fde1a8cc","kind":1,"pubkey":"f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2","sig":"e03207df8c089594c453f7e28d56bfe681ffa9217fddea1ef739428ae8646a01acb06a0dba41238e0362d690163cfd0d68bf0773a491578cc7ac99c607a2c554","tags":[["alt","A short note: suggestion taken!"],["e","dae37e3e2a01fe16404fe782f7f01658643329d017f172522da65255864355c9","wss://relay.primal.net/","root","f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2"],["e","fd6c218e65d1d99c7868ce1413b7791a9728ff8a4f0431040fdf1f6bf1753e5f","wss://relay.nostr.band/","reply","592295cf2b09a7f9555f43adb734cbee8a84ee892ed3f9336e6a09b6413a0db9"],["p","f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2","wss://relay.primal.net/"],["p","592295cf2b09a7f9555f43adb734cbee8a84ee892ed3f9336e6a09b6413a0db9","wss://nostr.mom/"]]}] +[14:34:44.859] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Bro should do that shit in privacy 🤣","created_at":1759430052,"id":"a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b4f70a1fa45dc4daa7cef85864607ab73ca00bcad088a8f64d7100ace73a0c49f0fc0bf4ce53e2073cc10aad9659db98231aef00d688543e8b808e965564f8d8","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","","reply"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:34:44.919] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy summarize this article","created_at":1759430050,"id":"5eb5f32039f0fbee0e37b0071434c518d7ecdf7b063d24567f3cb1b684d6b6b0","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"51d77c2f3a95295dd684ed739b85228d68a19504ac2e952fe8431a624bc819693f5cb7dc47f0b57ed23e4a1e2a0faea1bc937453b28894831ad9476bd67908d0","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","40e9be66e68ad630faff997f819a031058718f1e2daa56d9b01179ce43f9f151","wss://bots.utxo.one/","root","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4"],["p","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4","wss://news.utxo.one/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:34:44.980] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:34:45.040] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:34:45.101] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast\\n\\nDoomAI: markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\",\"name\":\"DoomAI Terminal Bunker\"}","created_at":1759430045,"id":"66daa27f8b383352ef98fed90f3f63cc2dc0a00ebeafe6de2b9203cd6fcf1d30","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"610f144f5eef224971dd5a609b2c2fbd1e427285664f63ef0c41a6757cf2c9b550d49651e330c705974ef12ef76561e434c6088d348bbbbb291f91d8b5aa3e4f","tags":[]}] +[14:34:45.162] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:34:45.222] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:45.283] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:45.343] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:34:45.404] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:34:45.464] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:34:45.525] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:45.586] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:45.646] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:46.009] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:34:46.251] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:34:47.278] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:34:47.761] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:34:48.003] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:34:48.452] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:34:48.693] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:34:49.116] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:34:49.660] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:34:49.962] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:34:50.022] RECV relay.laantungir.net:443: ["EVENT","pool_4_1759428813",{"content":"","created_at":1759430085,"id":"fdb97dfc24d0dc9568c439dda20ebd98df05a8701c0afb630d1187a88f642810","kind":10002,"pubkey":"34324c3cc822dbc7edbcef918a55e3c905fe14f3f0f0cf8bc18db1a59bfde092","sig":"b28ab3243bbbdf3faab405c1abb2c17930be2344f376496138ffad687206c63d1af6dd55bbf86a88afea36f2cb62c6b996d6e7684df803ef9801d7a380994937","tags":[["alt","Relay list to discover the user's content"],["r","wss://nostr.wine/"],["r","wss://relay.nostr.band/"],["r","wss://nostr.mom/"],["r","wss://nostr.lol/"],["r","wss://relay.nostr.hu/"],["r","wss://relay.nostr.bg/"],["r","wss://relay.0xchat.com/","write"]]}] +[14:34:50.816] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:34:50.816] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:34:50.817] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:34:50.817] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:34:50.976] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Damn brother I’m sorry. It’s tough right now, I feel it as well. A daily ongoing hustle","created_at":1759430090,"id":"1a71d37a963a9b31b066008205f93c556e54c7c01ca66bcbe33a8a2ade861040","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"6cb9c40e870c839e06c2a73e5297c9ba674c76d3ad5bee515c61e8601a39e02bc844aebf19f81d865cfa2d58458b7d52973e0df9fa2af881465ae297598f9038","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","wss://bitcoiner.social/","root"],["e","20b75a49d097c025b85c20b0f56ea9589e2bbeb2282f5b20f605539e75d42f50","","reply"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"]]}] +[14:34:51.037] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Get well! \n\n","created_at":1759430087,"id":"194305fb826553235d2672b86f2d1c5704161f461a39c7719c523687835610f4","kind":1,"pubkey":"7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5","sig":"c7e6097efad98ce0189b080667b4868bef26c95549cb93d5057f2df78086fadb8654dfd2bf14f6102f5f7233b273ed08bc3a58689e318178df9761e15fb2c769","tags":[["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://nos.lol"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"]]}] +[14:34:51.098] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsr9cvzwc652r4m83d86ykplrnm9dg5gwdvzzn8ameanlvut35wy3gpz3mhxw309aex2mrp0yhx5c34x5hxxmmd9uqsuamnwvaz7tmwdaejumr0dshszythwden5te0dehhxarj9ekxzmny9u0ljp2l when does damos going to have follow packs? ","created_at":1759430085,"id":"2d9b64e1afe4fe7e023deee8626c622d125837ac64eed192a044379521f072c8","kind":1,"pubkey":"6fb266012c3008303e54ae55140b46957e9978098401dda34f4d921a275bf8bb","sig":"75e79ec3a867d92ae939f46ac08d94158015702865b98d29a8bb338d4706adbeec2e7dc8ca31b6b46d8e352ef1e77ff66daa07b21553fd0c880f6f49d2837319","tags":[["alt","A short note: nostr:nprofile1qqsr9cvzwc652r4m83d86ykplrnm9dg5gwd..."],["p","32e1827635450ebb3c5a7d12c1f8e7b2b514439ac10a67eef3d9fd9c5c68e245","ws://relay.jb55.com/"],["p","32e1827635450ebb3c5a7d12c1f8e7b2b514439ac10a67eef3d9fd9c5c68e245","ws://relay.jb55.com/"]]}] +[14:34:51.159] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:34 @ 917,405","created_at":1759430084,"id":"dd23f76be4645c30c3ad11836dbbbaa97614bb9db3855a2e878c17cd087e6cfb","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"8c5ec78631d49eb733ab441e2b8616d14968742635356824a084cb78870efb4816865ad06e84cbd057692c3bcb99330ea917aa1663a80de1ae8a060f64cf40de","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:34:51.220] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Wine hole 😂","created_at":1759430077,"id":"ef693d0ad79bf411f9d90d9fd1f19f4e531766d461e19f634dfc48737e40a93b","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"68ec8a06ad63e12c2e06e96eff2b4e48efbb1a7a64730315a288187f8b1fc7370280c726d76a21958bc95ce55d130dc02be3c6fe911e72526fee4beb233e778c","tags":[["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root"],["e","a8b83c760779d8e796bf63c590c188ad9ca2c5b39802377b6ca4207008ba4435","","reply"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"]]}] +[14:34:51.280] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Great day, as the enemy is revealing itself as domestic as well as foreign. https://x.com/i/status/1973449793327550819","created_at":1759430076,"id":"c10f69b808e398153ce4616b432258cb40a6204821ffd6182e66acec3227ec5f","kind":1,"pubkey":"519d2fb3c354f44f5d4c7cdfc532633daf029bcc7d54beb0cb0f770646f8350f","sig":"8ad37f9f8bc2722a728e367767725a8d47a63e826f3bd323cf38b34d9a86f53b4200920a7e52b404dd30bc36a1e520ef9d7dca3be91f36a446c8d05347f76bb3","tags":[["r","https://x.com/i/status/1973449793327550819"]]}] +[14:34:51.341] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I grew up calling them “the tribe.” Every memory with my grandparents listening on a radio had that name and logo entrenched in my favorite memories. \n\nThe guardians thing just gutted me with all the virtue signaling bullshit so I was almost a fair weather fan after that. This Jose moment was a bridge back for a moment. ","created_at":1759430076,"id":"2f6c4eb99edb947ceb1943498a5ef5350b1fae65b2330e2457d8179271f35a4c","kind":1,"pubkey":"9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae","sig":"39a78bcc6e01e944e35b7084475c7a8d18b272f1a3abe735f7a0819b72fbcf598a8e36c6c3daf2ee150a986e5a6075c61913228c755f643a142a04968b2a6bf6","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["e","f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23","wss://nostr.mom","reply"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","","mention"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f","","mention"]]}] +[14:34:51.401] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Music to my ears, can’t wait to eat there!! Thanks ","created_at":1759430076,"id":"0c6f28c5275be2d2ba293b92ffcf3b472ab933d60325a546cd4243ce84c4f150","kind":1,"pubkey":"13b42c1bbc81aad1e28b3e87c8e1ac818444902dd5f6ff0582632114cf750fd6","sig":"07a59dd963a18c9bc65df3eb815855819c313a1458dfcb463f9990b88f0ffb315c468caf98423bee895f6aa1eaf64c8b5d988f47360a85230aeda7f77b4e8471","tags":[["e","7f2508270ca33374fd2fbd6e912580fb23a8af45437012f3cba6ac21ef0c778b","wss://relay.primal.net","root"],["e","2fc49ef2fc00792b7daee2d2bc4f0d6c53de9cfa0f5a469d2c2e2a2e0ddeb7b8","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","reply"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae","","mention"],["p","0b77a4d6cc1fa1914944fc85e3055c790d7988d98dd6266ab08cde12cb11fdb7","","mention"]]}] +[14:34:51.462] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the hex pubkey of nostr:nprofile1qqs9pk20ctv9srrg9vr354p03v0rrgsqkpggh2u45va77zz4mu5p6ccpzemhxue69uhk2er9dchxummnw3ezumrpdejz7qgkwaehxw309a5xjum59ehx7um5wghxcctwvshszrnhwden5te0dehhxtnvdakz7qrxnfk","created_at":1759430075,"id":"cf9805ab0a6528d95a06dbe601f5dbb7910792c86aaa4692113f862d099637b8","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"995f2c9c755875e0e06881602baa18bac5a00f09a164e3f81b56e61bf36fd6ee352ce02c2b044fbd353a5e6c7879a2b96fe1142b5f736dc43f07d23bb9012a41","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","40e9be66e68ad630faff997f819a031058718f1e2daa56d9b01179ce43f9f151","wss://bots.utxo.one/","root","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4"],["e","5eb5f32039f0fbee0e37b0071434c518d7ecdf7b063d24567f3cb1b684d6b6b0","wss://nostr.bitcoiner.social/","reply","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4","wss://news.utxo.one/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"]]}] +[14:34:51.522] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"In the UK, Keir Starmer made a point of saying ID cards would be compulsory so he can then say he has taken feedback on board & will now make them voluntary whilst consulting the public. Then, increasingly it'll be convenient not to use it & in parallel inconvenient to use cash & convenient to use CBDCs. By 2030, both will have critical mass... unless people are vigilant & energetic in their resistance. \n\n","created_at":1759430072,"id":"a616aacb518c309010d853ecf8efcd60306d3c0ff6c5e776b44ccde4d0be657e","kind":1,"pubkey":"d712474feafbab89fb9e6cd4ff01239e3b6a1a96991f45e564b2debf937a0191","sig":"e9483833c624ca1e2122b28593f4f229085814b9c12c4338a0eacfaff88e3cf7354c583361c74b9f5a318ec9d9e996a97b5f054c7a99c57cf00c02bfdf3f59ac","tags":[]}] +[14:34:51.583] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:34:51.643] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430089,"id":"1e1dd341c8971ec9f50093c8dd8d095b5024788667e2cc9359183de041f7f989","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"71b083b2f9d542c5a56a8af4924fdda189d6d55150e644722300ab70e5068f40edd885f3d904145a5dcf4dcaa2a321b7d6eeb25c1130669161187a05b9385822","tags":[]}] +[14:34:51.704] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:34:51.765] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:34:51.825] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:51.886] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:51.946] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:34:52.007] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:34:52.067] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:34:52.128] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:52.188] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:52.249] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:52.611] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:34:52.853] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:34:53.845] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:34:54.329] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:34:54.571] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:34:55.054] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:34:55.296] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:34:55.719] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:34:56.262] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:34:56.564] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:34:57.421] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:34:57.421] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:34:57.421] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:34:57.421] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:34:57.573] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Starmer looking…","created_at":1759430096,"id":"34b553b514935ebaa6c0eaf3e4dc8d639dd37e31b7b8eb9fd5f83b3f5eabd212","kind":1,"pubkey":"7b062a24134fbabfd9a8cde218c9ad7290f9511d7908beae51db3cda39f2db6d","sig":"db6dc5614744f890707dc9b4e3600250865d5b415aee6c0e5af0e7c33f0b8583c3e99135cc55a3472b283ce2ac5a1588f974676f4d3f7d118e7dde7a878a0df7","tags":[["e","552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:34:57.634] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Things I'm considering adding to Bloom to scratch my own itches:\n\n1. Document annotations with some collaboration aspect\n2. Start stream right from a stored video\n3. Paywalled links to files\n4. Companion app to upload files from a folder on your local machine right to a Blossom server\n\nhttps://github.com/letdown2491/bloom","created_at":1759430095,"id":"d9f298556990544c1dfb9defaac1963721d65097126045b01ed7280fde8d04ac","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"4ddff264a25a3b2daf6b18a5356e55c21a02e2a6d9b3d29382f31cb38f22b9ced4cb8df3312128f45bfc9dc8b2e7487f67699763f9bb11f1b59429ca218badcd","tags":[["alt","A short note: Things I'm considering adding to Bloom to scratch ..."],["r","https://github.com/letdown2491/bloom"]]}] +[14:34:57.694] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"That's one of the reasons Powell continues to say labor market is strong and solid.. lol. \n\n","created_at":1759430094,"id":"87b7abf41636d602d7c45a029acd85dd7bb2e9662079323b99d63253f79fd7ee","kind":1,"pubkey":"8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","sig":"fbdf4e365afe431d11255f31b651fd29e05759301a0ce4026e6adbc988d151c5640cd7115a44e04fa2f91d35dca8c059bc4414df8fe6798ba49c0ac0e34a244d","tags":[["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","wss://relay.primal.net"],["e","552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","wss://relay.primal.net","root","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672"]]}] +[14:34:57.755] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We’re going to win. \nhttps://blossom.primal.net/cf4546fbe09644b85d2f0eea731b84c96ec84da6de723dc861ada83f754263d9.jpg","created_at":1759430093,"id":"a0169211a599866589e8b9b59d6789f3f333a33a943646399421bb88771f26f2","kind":1,"pubkey":"472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e","sig":"458c797392bfffcd1126840290ae122a4e0f3f4d0690df00549405cf038fae48bb255aedcb42e4c64eb2dfe43af435153af00132746e8522dc97fc34d9af3d28","tags":[]}] +[14:34:57.816] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ねれん","created_at":1759430092,"id":"c90503b1aeade57f2f4ab49f49ffc22d50c345b4c1b87b65d24ea8e43bf0efb2","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"32e7d28b32c9e3e1ca15ec9fda992e4ff7fca67dff486bb075427a1ff40a666f31c7cffa6ce6e50985c3447233d9d94858561f98daacc50c096af74e1955e1f7","tags":[]}] +[14:34:57.877] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Damn brother I’m sorry. It’s tough right now, I feel it as well. A daily ongoing hustle","created_at":1759430090,"id":"1a71d37a963a9b31b066008205f93c556e54c7c01ca66bcbe33a8a2ade861040","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"6cb9c40e870c839e06c2a73e5297c9ba674c76d3ad5bee515c61e8601a39e02bc844aebf19f81d865cfa2d58458b7d52973e0df9fa2af881465ae297598f9038","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","wss://bitcoiner.social/","root"],["e","20b75a49d097c025b85c20b0f56ea9589e2bbeb2282f5b20f605539e75d42f50","","reply"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"]]}] +[14:34:57.937] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Get well! \n\n","created_at":1759430087,"id":"194305fb826553235d2672b86f2d1c5704161f461a39c7719c523687835610f4","kind":1,"pubkey":"7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5","sig":"c7e6097efad98ce0189b080667b4868bef26c95549cb93d5057f2df78086fadb8654dfd2bf14f6102f5f7233b273ed08bc3a58689e318178df9761e15fb2c769","tags":[["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://nos.lol"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"]]}] +[14:34:57.998] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsr9cvzwc652r4m83d86ykplrnm9dg5gwdvzzn8ameanlvut35wy3gpz3mhxw309aex2mrp0yhx5c34x5hxxmmd9uqsuamnwvaz7tmwdaejumr0dshszythwden5te0dehhxarj9ekxzmny9u0ljp2l when does damos going to have follow packs? ","created_at":1759430085,"id":"2d9b64e1afe4fe7e023deee8626c622d125837ac64eed192a044379521f072c8","kind":1,"pubkey":"6fb266012c3008303e54ae55140b46957e9978098401dda34f4d921a275bf8bb","sig":"75e79ec3a867d92ae939f46ac08d94158015702865b98d29a8bb338d4706adbeec2e7dc8ca31b6b46d8e352ef1e77ff66daa07b21553fd0c880f6f49d2837319","tags":[["alt","A short note: nostr:nprofile1qqsr9cvzwc652r4m83d86ykplrnm9dg5gwd..."],["p","32e1827635450ebb3c5a7d12c1f8e7b2b514439ac10a67eef3d9fd9c5c68e245","ws://relay.jb55.com/"],["p","32e1827635450ebb3c5a7d12c1f8e7b2b514439ac10a67eef3d9fd9c5c68e245","ws://relay.jb55.com/"]]}] +[14:34:58.059] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:34 @ 917,405","created_at":1759430084,"id":"dd23f76be4645c30c3ad11836dbbbaa97614bb9db3855a2e878c17cd087e6cfb","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"8c5ec78631d49eb733ab441e2b8616d14968742635356824a084cb78870efb4816865ad06e84cbd057692c3bcb99330ea917aa1663a80de1ae8a060f64cf40de","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:34:58.084] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Wine hole 😂","created_at":1759430077,"id":"ef693d0ad79bf411f9d90d9fd1f19f4e531766d461e19f634dfc48737e40a93b","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"68ec8a06ad63e12c2e06e96eff2b4e48efbb1a7a64730315a288187f8b1fc7370280c726d76a21958bc95ce55d130dc02be3c6fe911e72526fee4beb233e778c","tags":[["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root"],["e","a8b83c760779d8e796bf63c590c188ad9ca2c5b39802377b6ca4207008ba4435","","reply"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"]]}] +[14:34:58.144] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:34:58.205] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430089,"id":"1e1dd341c8971ec9f50093c8dd8d095b5024788667e2cc9359183de041f7f989","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"71b083b2f9d542c5a56a8af4924fdda189d6d55150e644722300ab70e5068f40edd885f3d904145a5dcf4dcaa2a321b7d6eeb25c1130669161187a05b9385822","tags":[]}] +[14:34:58.265] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:34:58.326] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:34:58.386] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:58.447] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:58.507] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:34:58.568] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:34:58.629] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:34:58.689] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:58.750] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:58.810] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:59.173] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:34:59.414] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:35:00.441] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:35:00.925] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:35:01.166] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:35:01.650] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:35:01.891] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:35:02.314] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:35:02.857] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:35:03.125] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:35:04.599] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:35:04.599] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:35:04.599] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:35:04.599] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:35:04.821] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ああ久々に334だ","created_at":1759430102,"id":"e5e3da6fa3fb5af387f89f5848556e4f2395441fba2f4f6d24dec76b01bb518d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2711de3fe8642b3fd86d8cd5d99a26ef9d44b3bee70d71959b53f92a44d35933952ab85315944e80a72c13b10e36089b98322063e83e116433fd149ee53fc503","tags":[]}] +[14:35:04.882] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Haha this is awesome. ","created_at":1759430101,"id":"fe62578b33cbd6d598f193110b04afc2a209c8360bab110d28e491b3971e74ab","kind":1,"pubkey":"45fd1955f590da87c1fd2edb99d17accf235ec3ebf0afe1d3306ade42693c6e9","sig":"c633db8dfb8db1e9c78783ec73b84ccfa61beaecbc57272cf5af9c8683627cae6e4aca730e4e1a8857cf5eca66b4937f9dd15e835070c1d1ab344e667240f6f0","tags":[["e","7f2508270ca33374fd2fbd6e912580fb23a8af45437012f3cba6ac21ef0c778b","wss://relay.primal.net","root"],["p","0b77a4d6cc1fa1914944fc85e3055c790d7988d98dd6266ab08cde12cb11fdb7","","mention"]]}] +[14:35:04.942] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My sentiment is I’ll maybe update my node in 6 years ","created_at":1759430100,"id":"877401c32044ba67f7b3d8604136a49939f6290814069d289b32d0ddcf42f8cb","kind":1,"pubkey":"d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","sig":"78a2944ae944d559bc9db548daf4189722878b9660962aa2d433d8e211b13bd84beb0cc07efaece89ea770c55c0d0a0b6f5735f995cb9bda1ac4d1ffb0366c4d","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:35:05.003] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub18ams6ewn5aj2n3wt2qawzglx9mr4nzksxhvrdc4gzrecw7n5tvjqctp424 ","created_at":1759430100,"id":"acbd5487611337fcff21deb693ff78f0f1f24d22b3627867f6205e2079874e68","kind":1,"pubkey":"96a578f6b504646de141ba90bec5651965aa01df0605928b3785a1372504e93d","sig":"e9d3412a9808b358886b49f4b8e73ecfcc4d1615c7ce2e6ba407be807ee596cc96f862dfc59af2ca437405801ea052838c6ede9a7985ff6c11da061591ae50db","tags":[["e","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","wss://relay.primal.net","root"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","","mention"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","","mention"]]}] +[14:35:05.064] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:35 ------------✄","created_at":1759430100,"id":"d6dfda8fff6888d3d243f8f569b2ae0870bb989ec151e5c743125d4f376d15d8","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"ba98d2a33767b9497d11f22a599d3d278f0dc33ba7b758e4a9d9b9903b8bb89e3da6f6b714cb928afa1ad3e938f23188ad13da060e1c2319246923243c96dcc1","tags":[]}] +[14:35:05.125] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"robo","created_at":1759430098,"id":"84b930a2284f33908864bd5712e0d9a935e9998db11eac96ce753fb523876cd0","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3221224f8bdb9c1c30f7b2868df5c04f8bf9d020f48995c918e2cc765f69ef402fa08cca08e1aa22c4b15a2e9609720728dad04bae7cf671b2c9a0bbe4594586","tags":[]}] +[14:35:05.185] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Starmer looking…","created_at":1759430096,"id":"34b553b514935ebaa6c0eaf3e4dc8d639dd37e31b7b8eb9fd5f83b3f5eabd212","kind":1,"pubkey":"7b062a24134fbabfd9a8cde218c9ad7290f9511d7908beae51db3cda39f2db6d","sig":"db6dc5614744f890707dc9b4e3600250865d5b415aee6c0e5af0e7c33f0b8583c3e99135cc55a3472b283ce2ac5a1588f974676f4d3f7d118e7dde7a878a0df7","tags":[["e","552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:35:05.246] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Things I'm considering adding to Bloom to scratch my own itches:\n\n1. Document annotations with some collaboration aspect\n2. Start stream right from a stored video\n3. Paywalled links to files\n4. Companion app to upload files from a folder on your local machine right to a Blossom server\n\nhttps://github.com/letdown2491/bloom","created_at":1759430095,"id":"d9f298556990544c1dfb9defaac1963721d65097126045b01ed7280fde8d04ac","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"4ddff264a25a3b2daf6b18a5356e55c21a02e2a6d9b3d29382f31cb38f22b9ced4cb8df3312128f45bfc9dc8b2e7487f67699763f9bb11f1b59429ca218badcd","tags":[["alt","A short note: Things I'm considering adding to Bloom to scratch ..."],["r","https://github.com/letdown2491/bloom"]]}] +[14:35:05.308] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"That's one of the reasons Powell continues to say labor market is strong and solid.. lol. \n\n","created_at":1759430094,"id":"87b7abf41636d602d7c45a029acd85dd7bb2e9662079323b99d63253f79fd7ee","kind":1,"pubkey":"8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","sig":"fbdf4e365afe431d11255f31b651fd29e05759301a0ce4026e6adbc988d151c5640cd7115a44e04fa2f91d35dca8c059bc4414df8fe6798ba49c0ac0e34a244d","tags":[["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","wss://relay.primal.net"],["e","552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","wss://relay.primal.net","root","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672"]]}] +[14:35:05.368] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We’re going to win. \nhttps://blossom.primal.net/cf4546fbe09644b85d2f0eea731b84c96ec84da6de723dc861ada83f754263d9.jpg","created_at":1759430093,"id":"a0169211a599866589e8b9b59d6789f3f333a33a943646399421bb88771f26f2","kind":1,"pubkey":"472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e","sig":"458c797392bfffcd1126840290ae122a4e0f3f4d0690df00549405cf038fae48bb255aedcb42e4c64eb2dfe43af435153af00132746e8522dc97fc34d9af3d28","tags":[]}] +[14:35:05.428] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:35:05.489] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430089,"id":"1e1dd341c8971ec9f50093c8dd8d095b5024788667e2cc9359183de041f7f989","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"71b083b2f9d542c5a56a8af4924fdda189d6d55150e644722300ab70e5068f40edd885f3d904145a5dcf4dcaa2a321b7d6eeb25c1130669161187a05b9385822","tags":[]}] +[14:35:05.549] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:35:05.610] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:35:05.671] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:35:05.731] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:05.792] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:35:05.852] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:35:05.913] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:35:05.973] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:06.034] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:06.094] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:35:06.457] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:35:06.699] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:35:07.725] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:35:08.173] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:35:08.415] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:35:08.898] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:35:09.140] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:35:09.563] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:35:10.106] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:35:10.408] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:35:11.257] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:35:11.257] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:35:11.257] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:35:11.257] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:35:11.407] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ああ久々に334だ","created_at":1759430102,"id":"e5e3da6fa3fb5af387f89f5848556e4f2395441fba2f4f6d24dec76b01bb518d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2711de3fe8642b3fd86d8cd5d99a26ef9d44b3bee70d71959b53f92a44d35933952ab85315944e80a72c13b10e36089b98322063e83e116433fd149ee53fc503","tags":[]}] +[14:35:11.468] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Haha this is awesome. ","created_at":1759430101,"id":"fe62578b33cbd6d598f193110b04afc2a209c8360bab110d28e491b3971e74ab","kind":1,"pubkey":"45fd1955f590da87c1fd2edb99d17accf235ec3ebf0afe1d3306ade42693c6e9","sig":"c633db8dfb8db1e9c78783ec73b84ccfa61beaecbc57272cf5af9c8683627cae6e4aca730e4e1a8857cf5eca66b4937f9dd15e835070c1d1ab344e667240f6f0","tags":[["e","7f2508270ca33374fd2fbd6e912580fb23a8af45437012f3cba6ac21ef0c778b","wss://relay.primal.net","root"],["p","0b77a4d6cc1fa1914944fc85e3055c790d7988d98dd6266ab08cde12cb11fdb7","","mention"]]}] +[14:35:11.528] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My sentiment is I’ll maybe update my node in 6 years ","created_at":1759430100,"id":"877401c32044ba67f7b3d8604136a49939f6290814069d289b32d0ddcf42f8cb","kind":1,"pubkey":"d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","sig":"78a2944ae944d559bc9db548daf4189722878b9660962aa2d433d8e211b13bd84beb0cc07efaece89ea770c55c0d0a0b6f5735f995cb9bda1ac4d1ffb0366c4d","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:35:11.589] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub18ams6ewn5aj2n3wt2qawzglx9mr4nzksxhvrdc4gzrecw7n5tvjqctp424 ","created_at":1759430100,"id":"acbd5487611337fcff21deb693ff78f0f1f24d22b3627867f6205e2079874e68","kind":1,"pubkey":"96a578f6b504646de141ba90bec5651965aa01df0605928b3785a1372504e93d","sig":"e9d3412a9808b358886b49f4b8e73ecfcc4d1615c7ce2e6ba407be807ee596cc96f862dfc59af2ca437405801ea052838c6ede9a7985ff6c11da061591ae50db","tags":[["e","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","wss://relay.primal.net","root"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","","mention"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","","mention"]]}] +[14:35:11.649] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:35 ------------✄","created_at":1759430100,"id":"d6dfda8fff6888d3d243f8f569b2ae0870bb989ec151e5c743125d4f376d15d8","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"ba98d2a33767b9497d11f22a599d3d278f0dc33ba7b758e4a9d9b9903b8bb89e3da6f6b714cb928afa1ad3e938f23188ad13da060e1c2319246923243c96dcc1","tags":[]}] +[14:35:11.710] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"robo","created_at":1759430098,"id":"84b930a2284f33908864bd5712e0d9a935e9998db11eac96ce753fb523876cd0","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3221224f8bdb9c1c30f7b2868df5c04f8bf9d020f48995c918e2cc765f69ef402fa08cca08e1aa22c4b15a2e9609720728dad04bae7cf671b2c9a0bbe4594586","tags":[]}] +[14:35:11.770] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Starmer looking…","created_at":1759430096,"id":"34b553b514935ebaa6c0eaf3e4dc8d639dd37e31b7b8eb9fd5f83b3f5eabd212","kind":1,"pubkey":"7b062a24134fbabfd9a8cde218c9ad7290f9511d7908beae51db3cda39f2db6d","sig":"db6dc5614744f890707dc9b4e3600250865d5b415aee6c0e5af0e7c33f0b8583c3e99135cc55a3472b283ce2ac5a1588f974676f4d3f7d118e7dde7a878a0df7","tags":[["e","552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:35:11.831] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Things I'm considering adding to Bloom to scratch my own itches:\n\n1. Document annotations with some collaboration aspect\n2. Start stream right from a stored video\n3. Paywalled links to files\n4. Companion app to upload files from a folder on your local machine right to a Blossom server\n\nhttps://github.com/letdown2491/bloom","created_at":1759430095,"id":"d9f298556990544c1dfb9defaac1963721d65097126045b01ed7280fde8d04ac","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"4ddff264a25a3b2daf6b18a5356e55c21a02e2a6d9b3d29382f31cb38f22b9ced4cb8df3312128f45bfc9dc8b2e7487f67699763f9bb11f1b59429ca218badcd","tags":[["alt","A short note: Things I'm considering adding to Bloom to scratch ..."],["r","https://github.com/letdown2491/bloom"]]}] +[14:35:11.891] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"That's one of the reasons Powell continues to say labor market is strong and solid.. lol. \n\n","created_at":1759430094,"id":"87b7abf41636d602d7c45a029acd85dd7bb2e9662079323b99d63253f79fd7ee","kind":1,"pubkey":"8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","sig":"fbdf4e365afe431d11255f31b651fd29e05759301a0ce4026e6adbc988d151c5640cd7115a44e04fa2f91d35dca8c059bc4414df8fe6798ba49c0ac0e34a244d","tags":[["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","wss://relay.primal.net"],["e","552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","wss://relay.primal.net","root","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672"]]}] +[14:35:11.952] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We’re going to win. \nhttps://blossom.primal.net/cf4546fbe09644b85d2f0eea731b84c96ec84da6de723dc861ada83f754263d9.jpg","created_at":1759430093,"id":"a0169211a599866589e8b9b59d6789f3f333a33a943646399421bb88771f26f2","kind":1,"pubkey":"472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e","sig":"458c797392bfffcd1126840290ae122a4e0f3f4d0690df00549405cf038fae48bb255aedcb42e4c64eb2dfe43af435153af00132746e8522dc97fc34d9af3d28","tags":[]}] +[14:35:12.012] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:35:12.073] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430089,"id":"1e1dd341c8971ec9f50093c8dd8d095b5024788667e2cc9359183de041f7f989","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"71b083b2f9d542c5a56a8af4924fdda189d6d55150e644722300ab70e5068f40edd885f3d904145a5dcf4dcaa2a321b7d6eeb25c1130669161187a05b9385822","tags":[]}] +[14:35:12.133] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:35:12.194] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:35:12.254] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:35:12.315] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:12.375] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:35:12.436] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:35:12.496] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:35:12.557] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:12.617] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:12.678] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:35:13.040] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:35:13.247] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:35:14.274] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:35:14.757] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:35:14.999] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:35:15.482] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:35:15.724] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:35:16.147] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:35:16.690] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:35:16.992] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:35:18.042] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:35:18.043] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:35:18.043] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:35:18.043] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:35:18.197] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Their little faces are so sweet 🦇","created_at":1759430114,"id":"c3cbe410f331db1f343d8d7b6c9a4d72c5db19fcba81706462d6c164624e2b50","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"2029890a891ec8138fff1125e3d4929ed0a3ae76628e90a039c8faed42d778843a25dc2ae2d67d6767ed0737a58952e72db006cd4191ccac43ebeadd93392db9","tags":[["alt","A short note: Their little faces are so sweet 🦇"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","22a4d6bec023f484e7e4825853b6b4eeda0aee1af68ce73117dcaec4ca956a12","wss://relay.nostr.band/","reply","288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7","wss://relay.primal.net/"]]}] +[14:35:18.207] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ああ久々に334だ","created_at":1759430102,"id":"e5e3da6fa3fb5af387f89f5848556e4f2395441fba2f4f6d24dec76b01bb518d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2711de3fe8642b3fd86d8cd5d99a26ef9d44b3bee70d71959b53f92a44d35933952ab85315944e80a72c13b10e36089b98322063e83e116433fd149ee53fc503","tags":[]}] +[14:35:18.268] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Haha this is awesome. ","created_at":1759430101,"id":"fe62578b33cbd6d598f193110b04afc2a209c8360bab110d28e491b3971e74ab","kind":1,"pubkey":"45fd1955f590da87c1fd2edb99d17accf235ec3ebf0afe1d3306ade42693c6e9","sig":"c633db8dfb8db1e9c78783ec73b84ccfa61beaecbc57272cf5af9c8683627cae6e4aca730e4e1a8857cf5eca66b4937f9dd15e835070c1d1ab344e667240f6f0","tags":[["e","7f2508270ca33374fd2fbd6e912580fb23a8af45437012f3cba6ac21ef0c778b","wss://relay.primal.net","root"],["p","0b77a4d6cc1fa1914944fc85e3055c790d7988d98dd6266ab08cde12cb11fdb7","","mention"]]}] +[14:35:18.329] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My sentiment is I’ll maybe update my node in 6 years ","created_at":1759430100,"id":"877401c32044ba67f7b3d8604136a49939f6290814069d289b32d0ddcf42f8cb","kind":1,"pubkey":"d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","sig":"78a2944ae944d559bc9db548daf4189722878b9660962aa2d433d8e211b13bd84beb0cc07efaece89ea770c55c0d0a0b6f5735f995cb9bda1ac4d1ffb0366c4d","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:35:18.389] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub18ams6ewn5aj2n3wt2qawzglx9mr4nzksxhvrdc4gzrecw7n5tvjqctp424 ","created_at":1759430100,"id":"acbd5487611337fcff21deb693ff78f0f1f24d22b3627867f6205e2079874e68","kind":1,"pubkey":"96a578f6b504646de141ba90bec5651965aa01df0605928b3785a1372504e93d","sig":"e9d3412a9808b358886b49f4b8e73ecfcc4d1615c7ce2e6ba407be807ee596cc96f862dfc59af2ca437405801ea052838c6ede9a7985ff6c11da061591ae50db","tags":[["e","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","wss://relay.primal.net","root"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","","mention"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","","mention"]]}] +[14:35:18.450] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:35 ------------✄","created_at":1759430100,"id":"d6dfda8fff6888d3d243f8f569b2ae0870bb989ec151e5c743125d4f376d15d8","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"ba98d2a33767b9497d11f22a599d3d278f0dc33ba7b758e4a9d9b9903b8bb89e3da6f6b714cb928afa1ad3e938f23188ad13da060e1c2319246923243c96dcc1","tags":[]}] +[14:35:18.510] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"robo","created_at":1759430098,"id":"84b930a2284f33908864bd5712e0d9a935e9998db11eac96ce753fb523876cd0","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3221224f8bdb9c1c30f7b2868df5c04f8bf9d020f48995c918e2cc765f69ef402fa08cca08e1aa22c4b15a2e9609720728dad04bae7cf671b2c9a0bbe4594586","tags":[]}] +[14:35:18.571] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Starmer looking…","created_at":1759430096,"id":"34b553b514935ebaa6c0eaf3e4dc8d639dd37e31b7b8eb9fd5f83b3f5eabd212","kind":1,"pubkey":"7b062a24134fbabfd9a8cde218c9ad7290f9511d7908beae51db3cda39f2db6d","sig":"db6dc5614744f890707dc9b4e3600250865d5b415aee6c0e5af0e7c33f0b8583c3e99135cc55a3472b283ce2ac5a1588f974676f4d3f7d118e7dde7a878a0df7","tags":[["e","552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:35:18.631] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Things I'm considering adding to Bloom to scratch my own itches:\n\n1. Document annotations with some collaboration aspect\n2. Start stream right from a stored video\n3. Paywalled links to files\n4. Companion app to upload files from a folder on your local machine right to a Blossom server\n\nhttps://github.com/letdown2491/bloom","created_at":1759430095,"id":"d9f298556990544c1dfb9defaac1963721d65097126045b01ed7280fde8d04ac","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"4ddff264a25a3b2daf6b18a5356e55c21a02e2a6d9b3d29382f31cb38f22b9ced4cb8df3312128f45bfc9dc8b2e7487f67699763f9bb11f1b59429ca218badcd","tags":[["alt","A short note: Things I'm considering adding to Bloom to scratch ..."],["r","https://github.com/letdown2491/bloom"]]}] +[14:35:18.692] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"That's one of the reasons Powell continues to say labor market is strong and solid.. lol. \n\n","created_at":1759430094,"id":"87b7abf41636d602d7c45a029acd85dd7bb2e9662079323b99d63253f79fd7ee","kind":1,"pubkey":"8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","sig":"fbdf4e365afe431d11255f31b651fd29e05759301a0ce4026e6adbc988d151c5640cd7115a44e04fa2f91d35dca8c059bc4414df8fe6798ba49c0ac0e34a244d","tags":[["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","wss://relay.primal.net"],["e","552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","wss://relay.primal.net","root","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672"]]}] +[14:35:18.752] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:35:18.813] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Sarah Gation\",\"about\":\"Pigment purist...mixing colors only makes brown\",\"picture\":\"https://cdn.nicecrew.digital/ee85913c52cede57614f622e8fca74b4d849e63337788d450549c12bad11a84e.jpg\",\"banner\":\"https://cdn.nicecrew.digital/cc04847da32ee4373b3deed7511b75c1070e0f22ffa64f5e8d66bf68ce4b9aa5.jpg\",\"nip05\":\"SarahGation@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430112,"id":"6b704688cc421a1a788d8dd5ac8dc362614914a63949d82c1829ec78a85965c4","kind":0,"pubkey":"084583f041e9830fabe628c850824726c9488b745f559328fe0f099ff3953174","sig":"de82e2ff8c4583a62292615982457c626da08a2c1591f0449088c0c731a990ecc5a93ad0821fc98770202c820e4d664db3f360cdf7718eea6e44920e88bf3105","tags":[["proxy","https://nicecrew.digital/users/SarahGation","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:18.874] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430089,"id":"1e1dd341c8971ec9f50093c8dd8d095b5024788667e2cc9359183de041f7f989","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"71b083b2f9d542c5a56a8af4924fdda189d6d55150e644722300ab70e5068f40edd885f3d904145a5dcf4dcaa2a321b7d6eeb25c1130669161187a05b9385822","tags":[]}] +[14:35:18.934] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:35:18.995] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:35:19.055] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:35:19.116] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:19.176] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:35:19.237] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:35:19.297] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:35:19.358] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:19.419] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:35:19.781] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:35:20.023] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:35:21.050] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:35:21.533] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:35:21.774] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:35:22.257] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:35:22.498] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:35:22.921] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:35:23.431] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:35:23.732] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:35:24.586] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:35:24.586] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:35:24.586] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:35:24.586] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:35:24.737] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"well theyre probably ALSO afraid of being wrong","created_at":1759430121,"id":"030bbf27c836fb19562150349214f5cb1edb44672239dd1ef43393bb9baac75b","kind":1,"pubkey":"f985d309197c805e1719c73185b574fc3ee407d7c1b6157dee99c6ace2599bbb","sig":"13007b83507a4ee0863bbc25d25d2eaa7977f6d5f60c08abc5b7046bba8183e45b660c2518dd3c15f021869ea5d70ffd3dc7848f11bc7146d1b20fd40e4ec99f","tags":[["e","fb9a38407be6b63b95dd3cebcb449916643b539966531259add93553b23a7dd8","wss://nostr.wine","reply","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"]]}] +[14:35:24.798] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Their little faces are so sweet 🦇","created_at":1759430114,"id":"c3cbe410f331db1f343d8d7b6c9a4d72c5db19fcba81706462d6c164624e2b50","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"2029890a891ec8138fff1125e3d4929ed0a3ae76628e90a039c8faed42d778843a25dc2ae2d67d6767ed0737a58952e72db006cd4191ccac43ebeadd93392db9","tags":[["alt","A short note: Their little faces are so sweet 🦇"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","22a4d6bec023f484e7e4825853b6b4eeda0aee1af68ce73117dcaec4ca956a12","wss://relay.nostr.band/","reply","288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7","wss://relay.primal.net/"]]}] +[14:35:24.858] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ああ久々に334だ","created_at":1759430102,"id":"e5e3da6fa3fb5af387f89f5848556e4f2395441fba2f4f6d24dec76b01bb518d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2711de3fe8642b3fd86d8cd5d99a26ef9d44b3bee70d71959b53f92a44d35933952ab85315944e80a72c13b10e36089b98322063e83e116433fd149ee53fc503","tags":[]}] +[14:35:24.919] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Haha this is awesome. ","created_at":1759430101,"id":"fe62578b33cbd6d598f193110b04afc2a209c8360bab110d28e491b3971e74ab","kind":1,"pubkey":"45fd1955f590da87c1fd2edb99d17accf235ec3ebf0afe1d3306ade42693c6e9","sig":"c633db8dfb8db1e9c78783ec73b84ccfa61beaecbc57272cf5af9c8683627cae6e4aca730e4e1a8857cf5eca66b4937f9dd15e835070c1d1ab344e667240f6f0","tags":[["e","7f2508270ca33374fd2fbd6e912580fb23a8af45437012f3cba6ac21ef0c778b","wss://relay.primal.net","root"],["p","0b77a4d6cc1fa1914944fc85e3055c790d7988d98dd6266ab08cde12cb11fdb7","","mention"]]}] +[14:35:24.979] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My sentiment is I’ll maybe update my node in 6 years ","created_at":1759430100,"id":"877401c32044ba67f7b3d8604136a49939f6290814069d289b32d0ddcf42f8cb","kind":1,"pubkey":"d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","sig":"78a2944ae944d559bc9db548daf4189722878b9660962aa2d433d8e211b13bd84beb0cc07efaece89ea770c55c0d0a0b6f5735f995cb9bda1ac4d1ffb0366c4d","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:35:25.040] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub18ams6ewn5aj2n3wt2qawzglx9mr4nzksxhvrdc4gzrecw7n5tvjqctp424 ","created_at":1759430100,"id":"acbd5487611337fcff21deb693ff78f0f1f24d22b3627867f6205e2079874e68","kind":1,"pubkey":"96a578f6b504646de141ba90bec5651965aa01df0605928b3785a1372504e93d","sig":"e9d3412a9808b358886b49f4b8e73ecfcc4d1615c7ce2e6ba407be807ee596cc96f862dfc59af2ca437405801ea052838c6ede9a7985ff6c11da061591ae50db","tags":[["e","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","wss://relay.primal.net","root"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","","mention"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","","mention"]]}] +[14:35:25.101] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:35 ------------✄","created_at":1759430100,"id":"d6dfda8fff6888d3d243f8f569b2ae0870bb989ec151e5c743125d4f376d15d8","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"ba98d2a33767b9497d11f22a599d3d278f0dc33ba7b758e4a9d9b9903b8bb89e3da6f6b714cb928afa1ad3e938f23188ad13da060e1c2319246923243c96dcc1","tags":[]}] +[14:35:25.161] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"robo","created_at":1759430098,"id":"84b930a2284f33908864bd5712e0d9a935e9998db11eac96ce753fb523876cd0","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3221224f8bdb9c1c30f7b2868df5c04f8bf9d020f48995c918e2cc765f69ef402fa08cca08e1aa22c4b15a2e9609720728dad04bae7cf671b2c9a0bbe4594586","tags":[]}] +[14:35:25.222] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Starmer looking…","created_at":1759430096,"id":"34b553b514935ebaa6c0eaf3e4dc8d639dd37e31b7b8eb9fd5f83b3f5eabd212","kind":1,"pubkey":"7b062a24134fbabfd9a8cde218c9ad7290f9511d7908beae51db3cda39f2db6d","sig":"db6dc5614744f890707dc9b4e3600250865d5b415aee6c0e5af0e7c33f0b8583c3e99135cc55a3472b283ce2ac5a1588f974676f4d3f7d118e7dde7a878a0df7","tags":[["e","552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:35:25.282] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Things I'm considering adding to Bloom to scratch my own itches:\n\n1. Document annotations with some collaboration aspect\n2. Start stream right from a stored video\n3. Paywalled links to files\n4. Companion app to upload files from a folder on your local machine right to a Blossom server\n\nhttps://github.com/letdown2491/bloom","created_at":1759430095,"id":"d9f298556990544c1dfb9defaac1963721d65097126045b01ed7280fde8d04ac","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"4ddff264a25a3b2daf6b18a5356e55c21a02e2a6d9b3d29382f31cb38f22b9ced4cb8df3312128f45bfc9dc8b2e7487f67699763f9bb11f1b59429ca218badcd","tags":[["alt","A short note: Things I'm considering adding to Bloom to scratch ..."],["r","https://github.com/letdown2491/bloom"]]}] +[14:35:25.343] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:35:25.403] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:25.464] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Sarah Gation\",\"about\":\"Pigment purist...mixing colors only makes brown\",\"picture\":\"https://cdn.nicecrew.digital/ee85913c52cede57614f622e8fca74b4d849e63337788d450549c12bad11a84e.jpg\",\"banner\":\"https://cdn.nicecrew.digital/cc04847da32ee4373b3deed7511b75c1070e0f22ffa64f5e8d66bf68ce4b9aa5.jpg\",\"nip05\":\"SarahGation@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430112,"id":"6b704688cc421a1a788d8dd5ac8dc362614914a63949d82c1829ec78a85965c4","kind":0,"pubkey":"084583f041e9830fabe628c850824726c9488b745f559328fe0f099ff3953174","sig":"de82e2ff8c4583a62292615982457c626da08a2c1591f0449088c0c731a990ecc5a93ad0821fc98770202c820e4d664db3f360cdf7718eea6e44920e88bf3105","tags":[["proxy","https://nicecrew.digital/users/SarahGation","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:25.525] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430089,"id":"1e1dd341c8971ec9f50093c8dd8d095b5024788667e2cc9359183de041f7f989","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"71b083b2f9d542c5a56a8af4924fdda189d6d55150e644722300ab70e5068f40edd885f3d904145a5dcf4dcaa2a321b7d6eeb25c1130669161187a05b9385822","tags":[]}] +[14:35:25.585] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:35:25.646] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:35:25.706] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:35:25.767] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:25.827] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:35:25.888] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:35:25.949] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:35:26.009] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:35:26.372] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:35:26.614] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:35:27.641] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:35:28.089] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:35:28.331] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:35:28.814] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:35:29.055] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:35:29.478] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:35:30.023] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:35:30.325] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:35:31.177] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:35:31.177] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:35:31.177] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:35:31.177] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:35:31.480] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"well theyre probably ALSO afraid of being wrong","created_at":1759430121,"id":"030bbf27c836fb19562150349214f5cb1edb44672239dd1ef43393bb9baac75b","kind":1,"pubkey":"f985d309197c805e1719c73185b574fc3ee407d7c1b6157dee99c6ace2599bbb","sig":"13007b83507a4ee0863bbc25d25d2eaa7977f6d5f60c08abc5b7046bba8183e45b660c2518dd3c15f021869ea5d70ffd3dc7848f11bc7146d1b20fd40e4ec99f","tags":[["e","fb9a38407be6b63b95dd3cebcb449916643b539966531259add93553b23a7dd8","wss://nostr.wine","reply","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"]]}] +[14:35:31.541] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Their little faces are so sweet 🦇","created_at":1759430114,"id":"c3cbe410f331db1f343d8d7b6c9a4d72c5db19fcba81706462d6c164624e2b50","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"2029890a891ec8138fff1125e3d4929ed0a3ae76628e90a039c8faed42d778843a25dc2ae2d67d6767ed0737a58952e72db006cd4191ccac43ebeadd93392db9","tags":[["alt","A short note: Their little faces are so sweet 🦇"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","22a4d6bec023f484e7e4825853b6b4eeda0aee1af68ce73117dcaec4ca956a12","wss://relay.nostr.band/","reply","288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7","wss://relay.primal.net/"]]}] +[14:35:31.601] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ああ久々に334だ","created_at":1759430102,"id":"e5e3da6fa3fb5af387f89f5848556e4f2395441fba2f4f6d24dec76b01bb518d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2711de3fe8642b3fd86d8cd5d99a26ef9d44b3bee70d71959b53f92a44d35933952ab85315944e80a72c13b10e36089b98322063e83e116433fd149ee53fc503","tags":[]}] +[14:35:31.662] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Haha this is awesome. ","created_at":1759430101,"id":"fe62578b33cbd6d598f193110b04afc2a209c8360bab110d28e491b3971e74ab","kind":1,"pubkey":"45fd1955f590da87c1fd2edb99d17accf235ec3ebf0afe1d3306ade42693c6e9","sig":"c633db8dfb8db1e9c78783ec73b84ccfa61beaecbc57272cf5af9c8683627cae6e4aca730e4e1a8857cf5eca66b4937f9dd15e835070c1d1ab344e667240f6f0","tags":[["e","7f2508270ca33374fd2fbd6e912580fb23a8af45437012f3cba6ac21ef0c778b","wss://relay.primal.net","root"],["p","0b77a4d6cc1fa1914944fc85e3055c790d7988d98dd6266ab08cde12cb11fdb7","","mention"]]}] +[14:35:31.722] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My sentiment is I’ll maybe update my node in 6 years ","created_at":1759430100,"id":"877401c32044ba67f7b3d8604136a49939f6290814069d289b32d0ddcf42f8cb","kind":1,"pubkey":"d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","sig":"78a2944ae944d559bc9db548daf4189722878b9660962aa2d433d8e211b13bd84beb0cc07efaece89ea770c55c0d0a0b6f5735f995cb9bda1ac4d1ffb0366c4d","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:35:31.783] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub18ams6ewn5aj2n3wt2qawzglx9mr4nzksxhvrdc4gzrecw7n5tvjqctp424 ","created_at":1759430100,"id":"acbd5487611337fcff21deb693ff78f0f1f24d22b3627867f6205e2079874e68","kind":1,"pubkey":"96a578f6b504646de141ba90bec5651965aa01df0605928b3785a1372504e93d","sig":"e9d3412a9808b358886b49f4b8e73ecfcc4d1615c7ce2e6ba407be807ee596cc96f862dfc59af2ca437405801ea052838c6ede9a7985ff6c11da061591ae50db","tags":[["e","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","wss://relay.primal.net","root"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","","mention"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","","mention"]]}] +[14:35:31.844] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:35 ------------✄","created_at":1759430100,"id":"d6dfda8fff6888d3d243f8f569b2ae0870bb989ec151e5c743125d4f376d15d8","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"ba98d2a33767b9497d11f22a599d3d278f0dc33ba7b758e4a9d9b9903b8bb89e3da6f6b714cb928afa1ad3e938f23188ad13da060e1c2319246923243c96dcc1","tags":[]}] +[14:35:31.904] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"robo","created_at":1759430098,"id":"84b930a2284f33908864bd5712e0d9a935e9998db11eac96ce753fb523876cd0","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3221224f8bdb9c1c30f7b2868df5c04f8bf9d020f48995c918e2cc765f69ef402fa08cca08e1aa22c4b15a2e9609720728dad04bae7cf671b2c9a0bbe4594586","tags":[]}] +[14:35:31.965] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Starmer looking…","created_at":1759430096,"id":"34b553b514935ebaa6c0eaf3e4dc8d639dd37e31b7b8eb9fd5f83b3f5eabd212","kind":1,"pubkey":"7b062a24134fbabfd9a8cde218c9ad7290f9511d7908beae51db3cda39f2db6d","sig":"db6dc5614744f890707dc9b4e3600250865d5b415aee6c0e5af0e7c33f0b8583c3e99135cc55a3472b283ce2ac5a1588f974676f4d3f7d118e7dde7a878a0df7","tags":[["e","552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:35:32.025] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Things I'm considering adding to Bloom to scratch my own itches:\n\n1. Document annotations with some collaboration aspect\n2. Start stream right from a stored video\n3. Paywalled links to files\n4. Companion app to upload files from a folder on your local machine right to a Blossom server\n\nhttps://github.com/letdown2491/bloom","created_at":1759430095,"id":"d9f298556990544c1dfb9defaac1963721d65097126045b01ed7280fde8d04ac","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"4ddff264a25a3b2daf6b18a5356e55c21a02e2a6d9b3d29382f31cb38f22b9ced4cb8df3312128f45bfc9dc8b2e7487f67699763f9bb11f1b59429ca218badcd","tags":[["alt","A short note: Things I'm considering adding to Bloom to scratch ..."],["r","https://github.com/letdown2491/bloom"]]}] +[14:35:32.086] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:35:32.146] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:32.207] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Sarah Gation\",\"about\":\"Pigment purist...mixing colors only makes brown\",\"picture\":\"https://cdn.nicecrew.digital/ee85913c52cede57614f622e8fca74b4d849e63337788d450549c12bad11a84e.jpg\",\"banner\":\"https://cdn.nicecrew.digital/cc04847da32ee4373b3deed7511b75c1070e0f22ffa64f5e8d66bf68ce4b9aa5.jpg\",\"nip05\":\"SarahGation@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430112,"id":"6b704688cc421a1a788d8dd5ac8dc362614914a63949d82c1829ec78a85965c4","kind":0,"pubkey":"084583f041e9830fabe628c850824726c9488b745f559328fe0f099ff3953174","sig":"de82e2ff8c4583a62292615982457c626da08a2c1591f0449088c0c731a990ecc5a93ad0821fc98770202c820e4d664db3f360cdf7718eea6e44920e88bf3105","tags":[["proxy","https://nicecrew.digital/users/SarahGation","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:32.268] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430089,"id":"1e1dd341c8971ec9f50093c8dd8d095b5024788667e2cc9359183de041f7f989","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"71b083b2f9d542c5a56a8af4924fdda189d6d55150e644722300ab70e5068f40edd885f3d904145a5dcf4dcaa2a321b7d6eeb25c1130669161187a05b9385822","tags":[]}] +[14:35:32.328] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:35:32.389] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:35:32.449] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:35:32.510] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:32.570] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:35:32.631] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:35:32.691] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:35:32.752] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:35:33.079] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:35:33.321] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:35:33.815] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759428493",{"content":"Things I'm considering adding to Bloom to scratch my own itches:\n\n1. Document annotations with some collaboration aspect\n2. Start stream right from a stored video\n3. Paywalled links to files\n4. Companion app to upload files from a folder on your local machine right to a Blossom server\n\nhttps://github.com/letdown2491/bloom","created_at":1759430095,"id":"d9f298556990544c1dfb9defaac1963721d65097126045b01ed7280fde8d04ac","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"4ddff264a25a3b2daf6b18a5356e55c21a02e2a6d9b3d29382f31cb38f22b9ced4cb8df3312128f45bfc9dc8b2e7487f67699763f9bb11f1b59429ca218badcd","tags":[["alt","A short note: Things I'm considering adding to Bloom to scratch ..."],["r","https://github.com/letdown2491/bloom"]]}] +[14:35:34.297] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:35:34.780] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:35:35.022] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:35:35.455] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759428493",{"content":"Block 917405\n\n3 - high priority\n3 - medium priority\n1 - low priority\n1 - no priority\n1 - purging\n\n#bitcoinfees #mempool","created_at":1759430124,"id":"1afdbead726eee9be4a61174d39b9f52d850b0e4b4194663d576ca4e5c8487c6","kind":1,"pubkey":"f03df3d4134230420cdf7acbb35f96a2542424246ab052ba24c6fec6a4d4f676","sig":"849a31cc5538fa901df77ef301ce689f9de2edac53a9bf74c4095287b0d8bf538d43cfc87d4fa497d0123bc6ee6bc0d469c4d413bcf746902cf54a6cba43fd85","tags":[]}] +[14:35:35.455] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:35:35.697] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:35:36.120] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:35:36.664] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:35:36.966] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:35:37.820] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:35:37.820] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:35:37.821] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:35:37.821] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:35:37.972] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"😋 \n\n\n\nhttps://blossom.primal.net/aea7652a9b5aa168f49709b15fb5d1947251894993f2998fd6b4d5f859c7ade1.mp4","created_at":1759430135,"id":"ce47ade5baec881cf7561d6dca5e35c19f6c55a81c5ed84290d375ed1a479760","kind":1,"pubkey":"20d29810d6a5f92b045ade02ebbadc9036d741cc686b00415c42b4236fe4ad2f","sig":"6560921db5987c6adbc65597d3317ce5d7592b767394c7f65e7fd4c6754e53dd5f26274891c509e35b3e6a2fb41644282bbe09ea66c9e41d433fef0354ee3906","tags":[]}] +[14:35:38.033] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You're very kind","created_at":1759430134,"id":"1d52a2df9a877854d65f1dff413f88e1cad8b9b7cb266f2e70bfd03a49f25f5d","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"78be571cd3ac4f5d7e31a58be9eda29727d5f1e4c136edac4f247c371d6692c933b83c9365ec04aa5b1b33c3af5a0024518fed31e666679dde2260741021338f","tags":[["alt","A short note: You're very kind"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","14c29438ced12b38043cd6dd40e920081ca99fe10b4ade938b7f15a86ae50b2d","wss://nostr.wine/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"]]}] +[14:35:38.094] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Im sure they will, they will lose all credibility if they push v30.","created_at":1759430132,"id":"f767292d47e96927823b9c1deb73450fd4a6c587bb98e7ee3fd001b9e28dc2e2","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"5b80a506c295c0fa00fc639cbc56388b9e3d2e65ce67b680a08a4772a24399ded86e3653461b232d5767ec19d90776cf55af0dd77aea5f9f937a0d2bfca780e0","tags":[["alt","A short note: Im sure they will, they will lose all credibility ..."],["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","wss://relay.orly.dev/","root","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","wss://relay.primal.net/","","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","wss://relay.orly.dev/","reply","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","wss://relay.sovereign.app/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:35:38.119] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"well theyre probably ALSO afraid of being wrong","created_at":1759430121,"id":"030bbf27c836fb19562150349214f5cb1edb44672239dd1ef43393bb9baac75b","kind":1,"pubkey":"f985d309197c805e1719c73185b574fc3ee407d7c1b6157dee99c6ace2599bbb","sig":"13007b83507a4ee0863bbc25d25d2eaa7977f6d5f60c08abc5b7046bba8183e45b660c2518dd3c15f021869ea5d70ffd3dc7848f11bc7146d1b20fd40e4ec99f","tags":[["e","fb9a38407be6b63b95dd3cebcb449916643b539966531259add93553b23a7dd8","wss://nostr.wine","reply","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"]]}] +[14:35:38.179] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Their little faces are so sweet 🦇","created_at":1759430114,"id":"c3cbe410f331db1f343d8d7b6c9a4d72c5db19fcba81706462d6c164624e2b50","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"2029890a891ec8138fff1125e3d4929ed0a3ae76628e90a039c8faed42d778843a25dc2ae2d67d6767ed0737a58952e72db006cd4191ccac43ebeadd93392db9","tags":[["alt","A short note: Their little faces are so sweet 🦇"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","22a4d6bec023f484e7e4825853b6b4eeda0aee1af68ce73117dcaec4ca956a12","wss://relay.nostr.band/","reply","288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7","wss://relay.primal.net/"]]}] +[14:35:38.240] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ああ久々に334だ","created_at":1759430102,"id":"e5e3da6fa3fb5af387f89f5848556e4f2395441fba2f4f6d24dec76b01bb518d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2711de3fe8642b3fd86d8cd5d99a26ef9d44b3bee70d71959b53f92a44d35933952ab85315944e80a72c13b10e36089b98322063e83e116433fd149ee53fc503","tags":[]}] +[14:35:38.300] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Haha this is awesome. ","created_at":1759430101,"id":"fe62578b33cbd6d598f193110b04afc2a209c8360bab110d28e491b3971e74ab","kind":1,"pubkey":"45fd1955f590da87c1fd2edb99d17accf235ec3ebf0afe1d3306ade42693c6e9","sig":"c633db8dfb8db1e9c78783ec73b84ccfa61beaecbc57272cf5af9c8683627cae6e4aca730e4e1a8857cf5eca66b4937f9dd15e835070c1d1ab344e667240f6f0","tags":[["e","7f2508270ca33374fd2fbd6e912580fb23a8af45437012f3cba6ac21ef0c778b","wss://relay.primal.net","root"],["p","0b77a4d6cc1fa1914944fc85e3055c790d7988d98dd6266ab08cde12cb11fdb7","","mention"]]}] +[14:35:38.361] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My sentiment is I’ll maybe update my node in 6 years ","created_at":1759430100,"id":"877401c32044ba67f7b3d8604136a49939f6290814069d289b32d0ddcf42f8cb","kind":1,"pubkey":"d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","sig":"78a2944ae944d559bc9db548daf4189722878b9660962aa2d433d8e211b13bd84beb0cc07efaece89ea770c55c0d0a0b6f5735f995cb9bda1ac4d1ffb0366c4d","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:35:38.421] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub18ams6ewn5aj2n3wt2qawzglx9mr4nzksxhvrdc4gzrecw7n5tvjqctp424 ","created_at":1759430100,"id":"acbd5487611337fcff21deb693ff78f0f1f24d22b3627867f6205e2079874e68","kind":1,"pubkey":"96a578f6b504646de141ba90bec5651965aa01df0605928b3785a1372504e93d","sig":"e9d3412a9808b358886b49f4b8e73ecfcc4d1615c7ce2e6ba407be807ee596cc96f862dfc59af2ca437405801ea052838c6ede9a7985ff6c11da061591ae50db","tags":[["e","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","wss://relay.primal.net","root"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","","mention"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","","mention"]]}] +[14:35:38.482] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:35 ------------✄","created_at":1759430100,"id":"d6dfda8fff6888d3d243f8f569b2ae0870bb989ec151e5c743125d4f376d15d8","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"ba98d2a33767b9497d11f22a599d3d278f0dc33ba7b758e4a9d9b9903b8bb89e3da6f6b714cb928afa1ad3e938f23188ad13da060e1c2319246923243c96dcc1","tags":[]}] +[14:35:38.542] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:35:38.603] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:38.663] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Sarah Gation\",\"about\":\"Pigment purist...mixing colors only makes brown\",\"picture\":\"https://cdn.nicecrew.digital/ee85913c52cede57614f622e8fca74b4d849e63337788d450549c12bad11a84e.jpg\",\"banner\":\"https://cdn.nicecrew.digital/cc04847da32ee4373b3deed7511b75c1070e0f22ffa64f5e8d66bf68ce4b9aa5.jpg\",\"nip05\":\"SarahGation@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430112,"id":"6b704688cc421a1a788d8dd5ac8dc362614914a63949d82c1829ec78a85965c4","kind":0,"pubkey":"084583f041e9830fabe628c850824726c9488b745f559328fe0f099ff3953174","sig":"de82e2ff8c4583a62292615982457c626da08a2c1591f0449088c0c731a990ecc5a93ad0821fc98770202c820e4d664db3f360cdf7718eea6e44920e88bf3105","tags":[["proxy","https://nicecrew.digital/users/SarahGation","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:38.724] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430089,"id":"1e1dd341c8971ec9f50093c8dd8d095b5024788667e2cc9359183de041f7f989","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"71b083b2f9d542c5a56a8af4924fdda189d6d55150e644722300ab70e5068f40edd885f3d904145a5dcf4dcaa2a321b7d6eeb25c1130669161187a05b9385822","tags":[]}] +[14:35:38.784] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:35:38.845] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:35:38.905] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:35:38.966] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:39.026] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:35:39.087] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:35:39.147] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:35:39.208] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:35:39.570] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:35:39.812] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:35:40.838] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:35:41.322] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:35:41.564] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:35:42.047] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:35:42.289] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:35:42.712] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:35:43.221] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:35:43.523] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:35:44.375] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:35:44.375] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:35:44.375] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:35:44.375] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:35:44.526] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💯🎯","created_at":1759430141,"id":"ef45dc0ada5537d5dd39d7b98071778f438a209f3e5c909ee6f7f6490b7fd651","kind":1,"pubkey":"10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df","sig":"70bb7b244f1df9275bf21c1198439241cd428e127f61e67aa8a12eca765d5db0902d1811339372c4e8c48418cfa722b613520df6eb705629889226df6026137e","tags":[["alt","A short note: 💯🎯"],["e","20078eabcc995a8b064202f96b55ca9f65af612808bf49ab17f382dd2b7a0c1e","wss://nostr.wine/","root","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69"],["e","27aa4056c55d383372a9bb82824909e4cd9467c53245c7f9a485fdd2f842f880","wss://relay.primal.net/","reply","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450"],["p","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69","wss://relay.current.fyi/"],["p","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","wss://nostr.mom/"]]}] +[14:35:44.586] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fantastic stuff ","created_at":1759430138,"id":"6cee0f921e74a22e119f32ad6d89c5772e0250679fa539faf520e1aac7e35fbf","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"c5b35b30c374630bacea29b348b7525877f2f783ed03916ff3754027bf580fda4550c88e1b22100305b81b5477b67f971b3dd0d7dccb934ca7a817fcd04696db","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","wss://offchain.pub","root"],["p","b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","","mention"]]}] +[14:35:44.647] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"😋 \n\n\n\nhttps://blossom.primal.net/aea7652a9b5aa168f49709b15fb5d1947251894993f2998fd6b4d5f859c7ade1.mp4","created_at":1759430135,"id":"ce47ade5baec881cf7561d6dca5e35c19f6c55a81c5ed84290d375ed1a479760","kind":1,"pubkey":"20d29810d6a5f92b045ade02ebbadc9036d741cc686b00415c42b4236fe4ad2f","sig":"6560921db5987c6adbc65597d3317ce5d7592b767394c7f65e7fd4c6754e53dd5f26274891c509e35b3e6a2fb41644282bbe09ea66c9e41d433fef0354ee3906","tags":[]}] +[14:35:44.708] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You're very kind","created_at":1759430134,"id":"1d52a2df9a877854d65f1dff413f88e1cad8b9b7cb266f2e70bfd03a49f25f5d","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"78be571cd3ac4f5d7e31a58be9eda29727d5f1e4c136edac4f247c371d6692c933b83c9365ec04aa5b1b33c3af5a0024518fed31e666679dde2260741021338f","tags":[["alt","A short note: You're very kind"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","14c29438ced12b38043cd6dd40e920081ca99fe10b4ade938b7f15a86ae50b2d","wss://nostr.wine/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"]]}] +[14:35:44.768] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Im sure they will, they will lose all credibility if they push v30.","created_at":1759430132,"id":"f767292d47e96927823b9c1deb73450fd4a6c587bb98e7ee3fd001b9e28dc2e2","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"5b80a506c295c0fa00fc639cbc56388b9e3d2e65ce67b680a08a4772a24399ded86e3653461b232d5767ec19d90776cf55af0dd77aea5f9f937a0d2bfca780e0","tags":[["alt","A short note: Im sure they will, they will lose all credibility ..."],["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","wss://relay.orly.dev/","root","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","wss://relay.primal.net/","","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","wss://relay.orly.dev/","reply","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","wss://relay.sovereign.app/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:35:44.829] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"well theyre probably ALSO afraid of being wrong","created_at":1759430121,"id":"030bbf27c836fb19562150349214f5cb1edb44672239dd1ef43393bb9baac75b","kind":1,"pubkey":"f985d309197c805e1719c73185b574fc3ee407d7c1b6157dee99c6ace2599bbb","sig":"13007b83507a4ee0863bbc25d25d2eaa7977f6d5f60c08abc5b7046bba8183e45b660c2518dd3c15f021869ea5d70ffd3dc7848f11bc7146d1b20fd40e4ec99f","tags":[["e","fb9a38407be6b63b95dd3cebcb449916643b539966531259add93553b23a7dd8","wss://nostr.wine","reply","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"]]}] +[14:35:44.889] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Their little faces are so sweet 🦇","created_at":1759430114,"id":"c3cbe410f331db1f343d8d7b6c9a4d72c5db19fcba81706462d6c164624e2b50","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"2029890a891ec8138fff1125e3d4929ed0a3ae76628e90a039c8faed42d778843a25dc2ae2d67d6767ed0737a58952e72db006cd4191ccac43ebeadd93392db9","tags":[["alt","A short note: Their little faces are so sweet 🦇"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","22a4d6bec023f484e7e4825853b6b4eeda0aee1af68ce73117dcaec4ca956a12","wss://relay.nostr.band/","reply","288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7","wss://relay.primal.net/"]]}] +[14:35:44.950] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ああ久々に334だ","created_at":1759430102,"id":"e5e3da6fa3fb5af387f89f5848556e4f2395441fba2f4f6d24dec76b01bb518d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2711de3fe8642b3fd86d8cd5d99a26ef9d44b3bee70d71959b53f92a44d35933952ab85315944e80a72c13b10e36089b98322063e83e116433fd149ee53fc503","tags":[]}] +[14:35:45.011] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Haha this is awesome. ","created_at":1759430101,"id":"fe62578b33cbd6d598f193110b04afc2a209c8360bab110d28e491b3971e74ab","kind":1,"pubkey":"45fd1955f590da87c1fd2edb99d17accf235ec3ebf0afe1d3306ade42693c6e9","sig":"c633db8dfb8db1e9c78783ec73b84ccfa61beaecbc57272cf5af9c8683627cae6e4aca730e4e1a8857cf5eca66b4937f9dd15e835070c1d1ab344e667240f6f0","tags":[["e","7f2508270ca33374fd2fbd6e912580fb23a8af45437012f3cba6ac21ef0c778b","wss://relay.primal.net","root"],["p","0b77a4d6cc1fa1914944fc85e3055c790d7988d98dd6266ab08cde12cb11fdb7","","mention"]]}] +[14:35:45.071] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My sentiment is I’ll maybe update my node in 6 years ","created_at":1759430100,"id":"877401c32044ba67f7b3d8604136a49939f6290814069d289b32d0ddcf42f8cb","kind":1,"pubkey":"d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","sig":"78a2944ae944d559bc9db548daf4189722878b9660962aa2d433d8e211b13bd84beb0cc07efaece89ea770c55c0d0a0b6f5735f995cb9bda1ac4d1ffb0366c4d","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:35:45.132] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:35:45.193] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:45.253] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Sarah Gation\",\"about\":\"Pigment purist...mixing colors only makes brown\",\"picture\":\"https://cdn.nicecrew.digital/ee85913c52cede57614f622e8fca74b4d849e63337788d450549c12bad11a84e.jpg\",\"banner\":\"https://cdn.nicecrew.digital/cc04847da32ee4373b3deed7511b75c1070e0f22ffa64f5e8d66bf68ce4b9aa5.jpg\",\"nip05\":\"SarahGation@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430112,"id":"6b704688cc421a1a788d8dd5ac8dc362614914a63949d82c1829ec78a85965c4","kind":0,"pubkey":"084583f041e9830fabe628c850824726c9488b745f559328fe0f099ff3953174","sig":"de82e2ff8c4583a62292615982457c626da08a2c1591f0449088c0c731a990ecc5a93ad0821fc98770202c820e4d664db3f360cdf7718eea6e44920e88bf3105","tags":[["proxy","https://nicecrew.digital/users/SarahGation","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:45.314] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430089,"id":"1e1dd341c8971ec9f50093c8dd8d095b5024788667e2cc9359183de041f7f989","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"71b083b2f9d542c5a56a8af4924fdda189d6d55150e644722300ab70e5068f40edd885f3d904145a5dcf4dcaa2a321b7d6eeb25c1130669161187a05b9385822","tags":[]}] +[14:35:45.374] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:35:45.435] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:35:45.495] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:35:45.556] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:45.617] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:35:45.677] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:35:45.738] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:35:45.798] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:35:46.161] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:35:46.403] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:35:47.430] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:35:47.914] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:35:48.121] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:35:48.604] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:35:48.845] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:35:49.268] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:35:49.812] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:35:50.115] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:35:50.970] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:35:50.970] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:35:50.970] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:35:50.970] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:35:51.192] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i fell asleep before the end of the episode \nhope everything worked out ok","created_at":1759430145,"id":"72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"d8e720aa02ce225bd3d3e84fe72417bf320d7c1884faebdb6c67a86ca5f0913b965ff255704255f68dd57bcb2c0e074a55751b728b02c2ea2a26a80bc26e71b0","tags":[]}] +[14:35:51.252] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you","created_at":1759430143,"id":"afd3d56088deec21ba40cca47adaa0dd6bcf8a75086e7d8db46d85d39730f083","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"646fd5b9bed5793f54ce0101fab6134da996dada346180a112744811f5dd7df3b75b3694eec44b1abe2d3f6f496f8569d79878a7b8bb1ab669a078ff983dc93a","tags":[["alt","A short note: Thank you"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","194305fb826553235d2672b86f2d1c5704161f461a39c7719c523687835610f4","wss://nostr.einundzwanzig.space/","reply","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5","wss://relay.primal.net/"]]}] +[14:35:51.313] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💯🎯","created_at":1759430141,"id":"ef45dc0ada5537d5dd39d7b98071778f438a209f3e5c909ee6f7f6490b7fd651","kind":1,"pubkey":"10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df","sig":"70bb7b244f1df9275bf21c1198439241cd428e127f61e67aa8a12eca765d5db0902d1811339372c4e8c48418cfa722b613520df6eb705629889226df6026137e","tags":[["alt","A short note: 💯🎯"],["e","20078eabcc995a8b064202f96b55ca9f65af612808bf49ab17f382dd2b7a0c1e","wss://nostr.wine/","root","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69"],["e","27aa4056c55d383372a9bb82824909e4cd9467c53245c7f9a485fdd2f842f880","wss://relay.primal.net/","reply","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450"],["p","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69","wss://relay.current.fyi/"],["p","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","wss://nostr.mom/"]]}] +[14:35:51.373] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fantastic stuff ","created_at":1759430138,"id":"6cee0f921e74a22e119f32ad6d89c5772e0250679fa539faf520e1aac7e35fbf","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"c5b35b30c374630bacea29b348b7525877f2f783ed03916ff3754027bf580fda4550c88e1b22100305b81b5477b67f971b3dd0d7dccb934ca7a817fcd04696db","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","wss://offchain.pub","root"],["p","b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","","mention"]]}] +[14:35:51.434] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"😋 \n\n\n\nhttps://blossom.primal.net/aea7652a9b5aa168f49709b15fb5d1947251894993f2998fd6b4d5f859c7ade1.mp4","created_at":1759430135,"id":"ce47ade5baec881cf7561d6dca5e35c19f6c55a81c5ed84290d375ed1a479760","kind":1,"pubkey":"20d29810d6a5f92b045ade02ebbadc9036d741cc686b00415c42b4236fe4ad2f","sig":"6560921db5987c6adbc65597d3317ce5d7592b767394c7f65e7fd4c6754e53dd5f26274891c509e35b3e6a2fb41644282bbe09ea66c9e41d433fef0354ee3906","tags":[]}] +[14:35:51.494] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You're very kind","created_at":1759430134,"id":"1d52a2df9a877854d65f1dff413f88e1cad8b9b7cb266f2e70bfd03a49f25f5d","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"78be571cd3ac4f5d7e31a58be9eda29727d5f1e4c136edac4f247c371d6692c933b83c9365ec04aa5b1b33c3af5a0024518fed31e666679dde2260741021338f","tags":[["alt","A short note: You're very kind"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","14c29438ced12b38043cd6dd40e920081ca99fe10b4ade938b7f15a86ae50b2d","wss://nostr.wine/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"]]}] +[14:35:51.555] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Im sure they will, they will lose all credibility if they push v30.","created_at":1759430132,"id":"f767292d47e96927823b9c1deb73450fd4a6c587bb98e7ee3fd001b9e28dc2e2","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"5b80a506c295c0fa00fc639cbc56388b9e3d2e65ce67b680a08a4772a24399ded86e3653461b232d5767ec19d90776cf55af0dd77aea5f9f937a0d2bfca780e0","tags":[["alt","A short note: Im sure they will, they will lose all credibility ..."],["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","wss://relay.orly.dev/","root","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","wss://relay.primal.net/","","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","wss://relay.orly.dev/","reply","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","wss://relay.sovereign.app/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:35:51.616] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"well theyre probably ALSO afraid of being wrong","created_at":1759430121,"id":"030bbf27c836fb19562150349214f5cb1edb44672239dd1ef43393bb9baac75b","kind":1,"pubkey":"f985d309197c805e1719c73185b574fc3ee407d7c1b6157dee99c6ace2599bbb","sig":"13007b83507a4ee0863bbc25d25d2eaa7977f6d5f60c08abc5b7046bba8183e45b660c2518dd3c15f021869ea5d70ffd3dc7848f11bc7146d1b20fd40e4ec99f","tags":[["e","fb9a38407be6b63b95dd3cebcb449916643b539966531259add93553b23a7dd8","wss://nostr.wine","reply","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"]]}] +[14:35:51.676] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Their little faces are so sweet 🦇","created_at":1759430114,"id":"c3cbe410f331db1f343d8d7b6c9a4d72c5db19fcba81706462d6c164624e2b50","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"2029890a891ec8138fff1125e3d4929ed0a3ae76628e90a039c8faed42d778843a25dc2ae2d67d6767ed0737a58952e72db006cd4191ccac43ebeadd93392db9","tags":[["alt","A short note: Their little faces are so sweet 🦇"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","22a4d6bec023f484e7e4825853b6b4eeda0aee1af68ce73117dcaec4ca956a12","wss://relay.nostr.band/","reply","288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7","wss://relay.primal.net/"]]}] +[14:35:51.737] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ああ久々に334だ","created_at":1759430102,"id":"e5e3da6fa3fb5af387f89f5848556e4f2395441fba2f4f6d24dec76b01bb518d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2711de3fe8642b3fd86d8cd5d99a26ef9d44b3bee70d71959b53f92a44d35933952ab85315944e80a72c13b10e36089b98322063e83e116433fd149ee53fc503","tags":[]}] +[14:35:51.798] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:35:51.858] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:51.919] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:51.980] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Sarah Gation\",\"about\":\"Pigment purist...mixing colors only makes brown\",\"picture\":\"https://cdn.nicecrew.digital/ee85913c52cede57614f622e8fca74b4d849e63337788d450549c12bad11a84e.jpg\",\"banner\":\"https://cdn.nicecrew.digital/cc04847da32ee4373b3deed7511b75c1070e0f22ffa64f5e8d66bf68ce4b9aa5.jpg\",\"nip05\":\"SarahGation@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430112,"id":"6b704688cc421a1a788d8dd5ac8dc362614914a63949d82c1829ec78a85965c4","kind":0,"pubkey":"084583f041e9830fabe628c850824726c9488b745f559328fe0f099ff3953174","sig":"de82e2ff8c4583a62292615982457c626da08a2c1591f0449088c0c731a990ecc5a93ad0821fc98770202c820e4d664db3f360cdf7718eea6e44920e88bf3105","tags":[["proxy","https://nicecrew.digital/users/SarahGation","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:52.040] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430089,"id":"1e1dd341c8971ec9f50093c8dd8d095b5024788667e2cc9359183de041f7f989","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"71b083b2f9d542c5a56a8af4924fdda189d6d55150e644722300ab70e5068f40edd885f3d904145a5dcf4dcaa2a321b7d6eeb25c1130669161187a05b9385822","tags":[]}] +[14:35:52.101] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:35:52.161] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:35:52.222] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:35:52.282] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:52.343] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:35:52.403] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:35:52.464] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:35:52.827] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:35:53.069] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:35:54.060] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:35:54.544] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:35:54.786] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:35:55.269] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:35:55.511] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:35:55.934] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:35:56.478] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:35:56.780] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:35:57.634] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:35:57.635] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:35:57.635] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:35:57.635] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:35:57.786] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i fell asleep before the end of the episode \nhope everything worked out ok","created_at":1759430145,"id":"72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"d8e720aa02ce225bd3d3e84fe72417bf320d7c1884faebdb6c67a86ca5f0913b965ff255704255f68dd57bcb2c0e074a55751b728b02c2ea2a26a80bc26e71b0","tags":[]}] +[14:35:57.847] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you","created_at":1759430143,"id":"afd3d56088deec21ba40cca47adaa0dd6bcf8a75086e7d8db46d85d39730f083","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"646fd5b9bed5793f54ce0101fab6134da996dada346180a112744811f5dd7df3b75b3694eec44b1abe2d3f6f496f8569d79878a7b8bb1ab669a078ff983dc93a","tags":[["alt","A short note: Thank you"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","194305fb826553235d2672b86f2d1c5704161f461a39c7719c523687835610f4","wss://nostr.einundzwanzig.space/","reply","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5","wss://relay.primal.net/"]]}] +[14:35:57.907] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💯🎯","created_at":1759430141,"id":"ef45dc0ada5537d5dd39d7b98071778f438a209f3e5c909ee6f7f6490b7fd651","kind":1,"pubkey":"10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df","sig":"70bb7b244f1df9275bf21c1198439241cd428e127f61e67aa8a12eca765d5db0902d1811339372c4e8c48418cfa722b613520df6eb705629889226df6026137e","tags":[["alt","A short note: 💯🎯"],["e","20078eabcc995a8b064202f96b55ca9f65af612808bf49ab17f382dd2b7a0c1e","wss://nostr.wine/","root","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69"],["e","27aa4056c55d383372a9bb82824909e4cd9467c53245c7f9a485fdd2f842f880","wss://relay.primal.net/","reply","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450"],["p","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69","wss://relay.current.fyi/"],["p","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","wss://nostr.mom/"]]}] +[14:35:57.968] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fantastic stuff ","created_at":1759430138,"id":"6cee0f921e74a22e119f32ad6d89c5772e0250679fa539faf520e1aac7e35fbf","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"c5b35b30c374630bacea29b348b7525877f2f783ed03916ff3754027bf580fda4550c88e1b22100305b81b5477b67f971b3dd0d7dccb934ca7a817fcd04696db","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","wss://offchain.pub","root"],["p","b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","","mention"]]}] +[14:35:58.028] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"😋 \n\n\n\nhttps://blossom.primal.net/aea7652a9b5aa168f49709b15fb5d1947251894993f2998fd6b4d5f859c7ade1.mp4","created_at":1759430135,"id":"ce47ade5baec881cf7561d6dca5e35c19f6c55a81c5ed84290d375ed1a479760","kind":1,"pubkey":"20d29810d6a5f92b045ade02ebbadc9036d741cc686b00415c42b4236fe4ad2f","sig":"6560921db5987c6adbc65597d3317ce5d7592b767394c7f65e7fd4c6754e53dd5f26274891c509e35b3e6a2fb41644282bbe09ea66c9e41d433fef0354ee3906","tags":[]}] +[14:35:58.089] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You're very kind","created_at":1759430134,"id":"1d52a2df9a877854d65f1dff413f88e1cad8b9b7cb266f2e70bfd03a49f25f5d","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"78be571cd3ac4f5d7e31a58be9eda29727d5f1e4c136edac4f247c371d6692c933b83c9365ec04aa5b1b33c3af5a0024518fed31e666679dde2260741021338f","tags":[["alt","A short note: You're very kind"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","14c29438ced12b38043cd6dd40e920081ca99fe10b4ade938b7f15a86ae50b2d","wss://nostr.wine/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"]]}] +[14:35:58.115] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Im sure they will, they will lose all credibility if they push v30.","created_at":1759430132,"id":"f767292d47e96927823b9c1deb73450fd4a6c587bb98e7ee3fd001b9e28dc2e2","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"5b80a506c295c0fa00fc639cbc56388b9e3d2e65ce67b680a08a4772a24399ded86e3653461b232d5767ec19d90776cf55af0dd77aea5f9f937a0d2bfca780e0","tags":[["alt","A short note: Im sure they will, they will lose all credibility ..."],["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","wss://relay.orly.dev/","root","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","wss://relay.primal.net/","","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","wss://relay.orly.dev/","reply","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","wss://relay.sovereign.app/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:35:58.175] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"well theyre probably ALSO afraid of being wrong","created_at":1759430121,"id":"030bbf27c836fb19562150349214f5cb1edb44672239dd1ef43393bb9baac75b","kind":1,"pubkey":"f985d309197c805e1719c73185b574fc3ee407d7c1b6157dee99c6ace2599bbb","sig":"13007b83507a4ee0863bbc25d25d2eaa7977f6d5f60c08abc5b7046bba8183e45b660c2518dd3c15f021869ea5d70ffd3dc7848f11bc7146d1b20fd40e4ec99f","tags":[["e","fb9a38407be6b63b95dd3cebcb449916643b539966531259add93553b23a7dd8","wss://nostr.wine","reply","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"]]}] +[14:35:58.236] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Their little faces are so sweet 🦇","created_at":1759430114,"id":"c3cbe410f331db1f343d8d7b6c9a4d72c5db19fcba81706462d6c164624e2b50","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"2029890a891ec8138fff1125e3d4929ed0a3ae76628e90a039c8faed42d778843a25dc2ae2d67d6767ed0737a58952e72db006cd4191ccac43ebeadd93392db9","tags":[["alt","A short note: Their little faces are so sweet 🦇"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","22a4d6bec023f484e7e4825853b6b4eeda0aee1af68ce73117dcaec4ca956a12","wss://relay.nostr.band/","reply","288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7","wss://relay.primal.net/"]]}] +[14:35:58.296] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ああ久々に334だ","created_at":1759430102,"id":"e5e3da6fa3fb5af387f89f5848556e4f2395441fba2f4f6d24dec76b01bb518d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2711de3fe8642b3fd86d8cd5d99a26ef9d44b3bee70d71959b53f92a44d35933952ab85315944e80a72c13b10e36089b98322063e83e116433fd149ee53fc503","tags":[]}] +[14:35:58.357] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:35:58.418] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:35:58.478] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:58.539] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:58.599] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:58.660] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Sarah Gation\",\"about\":\"Pigment purist...mixing colors only makes brown\",\"picture\":\"https://cdn.nicecrew.digital/ee85913c52cede57614f622e8fca74b4d849e63337788d450549c12bad11a84e.jpg\",\"banner\":\"https://cdn.nicecrew.digital/cc04847da32ee4373b3deed7511b75c1070e0f22ffa64f5e8d66bf68ce4b9aa5.jpg\",\"nip05\":\"SarahGation@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430112,"id":"6b704688cc421a1a788d8dd5ac8dc362614914a63949d82c1829ec78a85965c4","kind":0,"pubkey":"084583f041e9830fabe628c850824726c9488b745f559328fe0f099ff3953174","sig":"de82e2ff8c4583a62292615982457c626da08a2c1591f0449088c0c731a990ecc5a93ad0821fc98770202c820e4d664db3f360cdf7718eea6e44920e88bf3105","tags":[["proxy","https://nicecrew.digital/users/SarahGation","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:58.721] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:35:58.781] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:35:58.842] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:35:58.902] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:58.963] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:35:59.023] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:35:59.386] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:35:59.628] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:36:00.654] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:36:01.137] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:36:01.379] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:36:01.862] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:36:02.104] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:36:02.526] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:36:03.070] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:36:03.336] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:36:04.191] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:36:04.191] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:36:04.191] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:36:04.191] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:36:04.342] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"All in #Bitcoin. Zero regrets.","created_at":1759430163,"id":"829919b495af01ab42a92364325642c602850f94531d3ced2c0ce6b282d7e9f0","kind":1,"pubkey":"7b991f776d04d87cb5d4259688187a520f6afc16b2b9ad26dac6b8ee76c2840d","sig":"8b8e41848697d2ac6bbffa56c783864f10857298b4d718997d2e27d7739ab98f260018da9753c085e4cd56f0e9caaf36059cd285758a9d695ad28e56f27d2953","tags":[["t","bitcoin"]]}] +[14:36:04.403] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Appreciate that","created_at":1759430157,"id":"7d1ac6a4f23bca363be5277ac27a15efc80e12ad53a666e8ab1beff79bd09ffd","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"90b7e2423d2e7711fa871851591bf873fefde322a81a4f94be1b252397f996851b661582e8407d70e6dac0e90f4cd66dd6484d1b3430a05d604775b1bee7fd3e","tags":[["alt","A short note: Appreciate that"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","e78dc352a6fa93d9880eb25da41714fd2f621570b9007f31fa7d344c2331644d","wss://nos.lol/","reply","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","wss://relay.primal.net/"]]}] +[14:36:04.464] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i fell asleep before the end of the episode \nhope everything worked out ok","created_at":1759430145,"id":"72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"d8e720aa02ce225bd3d3e84fe72417bf320d7c1884faebdb6c67a86ca5f0913b965ff255704255f68dd57bcb2c0e074a55751b728b02c2ea2a26a80bc26e71b0","tags":[]}] +[14:36:04.524] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you","created_at":1759430143,"id":"afd3d56088deec21ba40cca47adaa0dd6bcf8a75086e7d8db46d85d39730f083","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"646fd5b9bed5793f54ce0101fab6134da996dada346180a112744811f5dd7df3b75b3694eec44b1abe2d3f6f496f8569d79878a7b8bb1ab669a078ff983dc93a","tags":[["alt","A short note: Thank you"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","194305fb826553235d2672b86f2d1c5704161f461a39c7719c523687835610f4","wss://nostr.einundzwanzig.space/","reply","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5","wss://relay.primal.net/"]]}] +[14:36:04.585] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💯🎯","created_at":1759430141,"id":"ef45dc0ada5537d5dd39d7b98071778f438a209f3e5c909ee6f7f6490b7fd651","kind":1,"pubkey":"10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df","sig":"70bb7b244f1df9275bf21c1198439241cd428e127f61e67aa8a12eca765d5db0902d1811339372c4e8c48418cfa722b613520df6eb705629889226df6026137e","tags":[["alt","A short note: 💯🎯"],["e","20078eabcc995a8b064202f96b55ca9f65af612808bf49ab17f382dd2b7a0c1e","wss://nostr.wine/","root","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69"],["e","27aa4056c55d383372a9bb82824909e4cd9467c53245c7f9a485fdd2f842f880","wss://relay.primal.net/","reply","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450"],["p","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69","wss://relay.current.fyi/"],["p","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","wss://nostr.mom/"]]}] +[14:36:04.645] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fantastic stuff ","created_at":1759430138,"id":"6cee0f921e74a22e119f32ad6d89c5772e0250679fa539faf520e1aac7e35fbf","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"c5b35b30c374630bacea29b348b7525877f2f783ed03916ff3754027bf580fda4550c88e1b22100305b81b5477b67f971b3dd0d7dccb934ca7a817fcd04696db","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","wss://offchain.pub","root"],["p","b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","","mention"]]}] +[14:36:04.706] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"😋 \n\n\n\nhttps://blossom.primal.net/aea7652a9b5aa168f49709b15fb5d1947251894993f2998fd6b4d5f859c7ade1.mp4","created_at":1759430135,"id":"ce47ade5baec881cf7561d6dca5e35c19f6c55a81c5ed84290d375ed1a479760","kind":1,"pubkey":"20d29810d6a5f92b045ade02ebbadc9036d741cc686b00415c42b4236fe4ad2f","sig":"6560921db5987c6adbc65597d3317ce5d7592b767394c7f65e7fd4c6754e53dd5f26274891c509e35b3e6a2fb41644282bbe09ea66c9e41d433fef0354ee3906","tags":[]}] +[14:36:04.766] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You're very kind","created_at":1759430134,"id":"1d52a2df9a877854d65f1dff413f88e1cad8b9b7cb266f2e70bfd03a49f25f5d","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"78be571cd3ac4f5d7e31a58be9eda29727d5f1e4c136edac4f247c371d6692c933b83c9365ec04aa5b1b33c3af5a0024518fed31e666679dde2260741021338f","tags":[["alt","A short note: You're very kind"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","14c29438ced12b38043cd6dd40e920081ca99fe10b4ade938b7f15a86ae50b2d","wss://nostr.wine/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"]]}] +[14:36:04.827] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Im sure they will, they will lose all credibility if they push v30.","created_at":1759430132,"id":"f767292d47e96927823b9c1deb73450fd4a6c587bb98e7ee3fd001b9e28dc2e2","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"5b80a506c295c0fa00fc639cbc56388b9e3d2e65ce67b680a08a4772a24399ded86e3653461b232d5767ec19d90776cf55af0dd77aea5f9f937a0d2bfca780e0","tags":[["alt","A short note: Im sure they will, they will lose all credibility ..."],["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","wss://relay.orly.dev/","root","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","wss://relay.primal.net/","","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","wss://relay.orly.dev/","reply","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","wss://relay.sovereign.app/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:36:04.887] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"well theyre probably ALSO afraid of being wrong","created_at":1759430121,"id":"030bbf27c836fb19562150349214f5cb1edb44672239dd1ef43393bb9baac75b","kind":1,"pubkey":"f985d309197c805e1719c73185b574fc3ee407d7c1b6157dee99c6ace2599bbb","sig":"13007b83507a4ee0863bbc25d25d2eaa7977f6d5f60c08abc5b7046bba8183e45b660c2518dd3c15f021869ea5d70ffd3dc7848f11bc7146d1b20fd40e4ec99f","tags":[["e","fb9a38407be6b63b95dd3cebcb449916643b539966531259add93553b23a7dd8","wss://nostr.wine","reply","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"]]}] +[14:36:04.948] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:36:05.008] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:05.069] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:05.130] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:36:05.190] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:05.251] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:05.312] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:05.372] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Sarah Gation\",\"about\":\"Pigment purist...mixing colors only makes brown\",\"picture\":\"https://cdn.nicecrew.digital/ee85913c52cede57614f622e8fca74b4d849e63337788d450549c12bad11a84e.jpg\",\"banner\":\"https://cdn.nicecrew.digital/cc04847da32ee4373b3deed7511b75c1070e0f22ffa64f5e8d66bf68ce4b9aa5.jpg\",\"nip05\":\"SarahGation@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430112,"id":"6b704688cc421a1a788d8dd5ac8dc362614914a63949d82c1829ec78a85965c4","kind":0,"pubkey":"084583f041e9830fabe628c850824726c9488b745f559328fe0f099ff3953174","sig":"de82e2ff8c4583a62292615982457c626da08a2c1591f0449088c0c731a990ecc5a93ad0821fc98770202c820e4d664db3f360cdf7718eea6e44920e88bf3105","tags":[["proxy","https://nicecrew.digital/users/SarahGation","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:05.433] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:36:05.493] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:36:05.554] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:36:05.614] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:36:05.976] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:36:06.218] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:36:07.244] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:36:07.727] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:36:07.968] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:36:08.417] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:36:08.658] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:36:09.081] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:36:09.624] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:36:09.925] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:36:10.967] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:36:10.967] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:36:10.967] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:36:10.967] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:36:11.118] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"All in #Bitcoin. Zero regrets.","created_at":1759430163,"id":"829919b495af01ab42a92364325642c602850f94531d3ced2c0ce6b282d7e9f0","kind":1,"pubkey":"7b991f776d04d87cb5d4259688187a520f6afc16b2b9ad26dac6b8ee76c2840d","sig":"8b8e41848697d2ac6bbffa56c783864f10857298b4d718997d2e27d7739ab98f260018da9753c085e4cd56f0e9caaf36059cd285758a9d695ad28e56f27d2953","tags":[["t","bitcoin"]]}] +[14:36:11.178] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Appreciate that","created_at":1759430157,"id":"7d1ac6a4f23bca363be5277ac27a15efc80e12ad53a666e8ab1beff79bd09ffd","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"90b7e2423d2e7711fa871851591bf873fefde322a81a4f94be1b252397f996851b661582e8407d70e6dac0e90f4cd66dd6484d1b3430a05d604775b1bee7fd3e","tags":[["alt","A short note: Appreciate that"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","e78dc352a6fa93d9880eb25da41714fd2f621570b9007f31fa7d344c2331644d","wss://nos.lol/","reply","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","wss://relay.primal.net/"]]}] +[14:36:11.239] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i fell asleep before the end of the episode \nhope everything worked out ok","created_at":1759430145,"id":"72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"d8e720aa02ce225bd3d3e84fe72417bf320d7c1884faebdb6c67a86ca5f0913b965ff255704255f68dd57bcb2c0e074a55751b728b02c2ea2a26a80bc26e71b0","tags":[]}] +[14:36:11.299] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you","created_at":1759430143,"id":"afd3d56088deec21ba40cca47adaa0dd6bcf8a75086e7d8db46d85d39730f083","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"646fd5b9bed5793f54ce0101fab6134da996dada346180a112744811f5dd7df3b75b3694eec44b1abe2d3f6f496f8569d79878a7b8bb1ab669a078ff983dc93a","tags":[["alt","A short note: Thank you"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","194305fb826553235d2672b86f2d1c5704161f461a39c7719c523687835610f4","wss://nostr.einundzwanzig.space/","reply","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5","wss://relay.primal.net/"]]}] +[14:36:11.359] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💯🎯","created_at":1759430141,"id":"ef45dc0ada5537d5dd39d7b98071778f438a209f3e5c909ee6f7f6490b7fd651","kind":1,"pubkey":"10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df","sig":"70bb7b244f1df9275bf21c1198439241cd428e127f61e67aa8a12eca765d5db0902d1811339372c4e8c48418cfa722b613520df6eb705629889226df6026137e","tags":[["alt","A short note: 💯🎯"],["e","20078eabcc995a8b064202f96b55ca9f65af612808bf49ab17f382dd2b7a0c1e","wss://nostr.wine/","root","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69"],["e","27aa4056c55d383372a9bb82824909e4cd9467c53245c7f9a485fdd2f842f880","wss://relay.primal.net/","reply","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450"],["p","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69","wss://relay.current.fyi/"],["p","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","wss://nostr.mom/"]]}] +[14:36:11.420] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fantastic stuff ","created_at":1759430138,"id":"6cee0f921e74a22e119f32ad6d89c5772e0250679fa539faf520e1aac7e35fbf","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"c5b35b30c374630bacea29b348b7525877f2f783ed03916ff3754027bf580fda4550c88e1b22100305b81b5477b67f971b3dd0d7dccb934ca7a817fcd04696db","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","wss://offchain.pub","root"],["p","b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","","mention"]]}] +[14:36:11.480] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"😋 \n\n\n\nhttps://blossom.primal.net/aea7652a9b5aa168f49709b15fb5d1947251894993f2998fd6b4d5f859c7ade1.mp4","created_at":1759430135,"id":"ce47ade5baec881cf7561d6dca5e35c19f6c55a81c5ed84290d375ed1a479760","kind":1,"pubkey":"20d29810d6a5f92b045ade02ebbadc9036d741cc686b00415c42b4236fe4ad2f","sig":"6560921db5987c6adbc65597d3317ce5d7592b767394c7f65e7fd4c6754e53dd5f26274891c509e35b3e6a2fb41644282bbe09ea66c9e41d433fef0354ee3906","tags":[]}] +[14:36:11.541] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You're very kind","created_at":1759430134,"id":"1d52a2df9a877854d65f1dff413f88e1cad8b9b7cb266f2e70bfd03a49f25f5d","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"78be571cd3ac4f5d7e31a58be9eda29727d5f1e4c136edac4f247c371d6692c933b83c9365ec04aa5b1b33c3af5a0024518fed31e666679dde2260741021338f","tags":[["alt","A short note: You're very kind"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","14c29438ced12b38043cd6dd40e920081ca99fe10b4ade938b7f15a86ae50b2d","wss://nostr.wine/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"]]}] +[14:36:11.601] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Im sure they will, they will lose all credibility if they push v30.","created_at":1759430132,"id":"f767292d47e96927823b9c1deb73450fd4a6c587bb98e7ee3fd001b9e28dc2e2","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"5b80a506c295c0fa00fc639cbc56388b9e3d2e65ce67b680a08a4772a24399ded86e3653461b232d5767ec19d90776cf55af0dd77aea5f9f937a0d2bfca780e0","tags":[["alt","A short note: Im sure they will, they will lose all credibility ..."],["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","wss://relay.orly.dev/","root","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","wss://relay.primal.net/","","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","wss://relay.orly.dev/","reply","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","wss://relay.sovereign.app/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:36:11.662] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"well theyre probably ALSO afraid of being wrong","created_at":1759430121,"id":"030bbf27c836fb19562150349214f5cb1edb44672239dd1ef43393bb9baac75b","kind":1,"pubkey":"f985d309197c805e1719c73185b574fc3ee407d7c1b6157dee99c6ace2599bbb","sig":"13007b83507a4ee0863bbc25d25d2eaa7977f6d5f60c08abc5b7046bba8183e45b660c2518dd3c15f021869ea5d70ffd3dc7848f11bc7146d1b20fd40e4ec99f","tags":[["e","fb9a38407be6b63b95dd3cebcb449916643b539966531259add93553b23a7dd8","wss://nostr.wine","reply","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"]]}] +[14:36:11.722] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:36:11.783] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:11.843] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:11.904] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:36:11.964] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:12.025] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:12.085] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:12.146] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Sarah Gation\",\"about\":\"Pigment purist...mixing colors only makes brown\",\"picture\":\"https://cdn.nicecrew.digital/ee85913c52cede57614f622e8fca74b4d849e63337788d450549c12bad11a84e.jpg\",\"banner\":\"https://cdn.nicecrew.digital/cc04847da32ee4373b3deed7511b75c1070e0f22ffa64f5e8d66bf68ce4b9aa5.jpg\",\"nip05\":\"SarahGation@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430112,"id":"6b704688cc421a1a788d8dd5ac8dc362614914a63949d82c1829ec78a85965c4","kind":0,"pubkey":"084583f041e9830fabe628c850824726c9488b745f559328fe0f099ff3953174","sig":"de82e2ff8c4583a62292615982457c626da08a2c1591f0449088c0c731a990ecc5a93ad0821fc98770202c820e4d664db3f360cdf7718eea6e44920e88bf3105","tags":[["proxy","https://nicecrew.digital/users/SarahGation","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:12.206] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:36:12.267] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:36:12.327] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:36:12.388] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:36:12.750] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:36:12.991] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:36:13.983] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:36:14.467] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:36:14.708] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:36:15.191] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:36:15.433] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:36:15.856] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:36:16.400] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:36:16.702] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:36:17.552] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:36:17.552] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:36:17.552] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:36:17.552] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:36:17.703] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Niicceeee","created_at":1759430173,"id":"e0f89ee69e0a0e51ff93d359c5eb0867262db02076acf9291a57e7b7283036f1","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"6d56072afa69775cca9cb7d49e2f9e0cc2eac4d0f143cf57d3684a98cf5a5b31e1dbaf73948521b0c97e73aeb27d699bcbd9c3224af4e5dfa8250c441c698632","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["e","7495a7cf20983223a43dc8d34b26bb0613bcdb26c50d8b3323a0fe4680bc9c99","","reply"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"]]}] +[14:36:17.764] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"All in #Bitcoin. Zero regrets.","created_at":1759430163,"id":"829919b495af01ab42a92364325642c602850f94531d3ced2c0ce6b282d7e9f0","kind":1,"pubkey":"7b991f776d04d87cb5d4259688187a520f6afc16b2b9ad26dac6b8ee76c2840d","sig":"8b8e41848697d2ac6bbffa56c783864f10857298b4d718997d2e27d7739ab98f260018da9753c085e4cd56f0e9caaf36059cd285758a9d695ad28e56f27d2953","tags":[["t","bitcoin"]]}] +[14:36:17.824] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Appreciate that","created_at":1759430157,"id":"7d1ac6a4f23bca363be5277ac27a15efc80e12ad53a666e8ab1beff79bd09ffd","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"90b7e2423d2e7711fa871851591bf873fefde322a81a4f94be1b252397f996851b661582e8407d70e6dac0e90f4cd66dd6484d1b3430a05d604775b1bee7fd3e","tags":[["alt","A short note: Appreciate that"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","e78dc352a6fa93d9880eb25da41714fd2f621570b9007f31fa7d344c2331644d","wss://nos.lol/","reply","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","wss://relay.primal.net/"]]}] +[14:36:17.885] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i fell asleep before the end of the episode \nhope everything worked out ok","created_at":1759430145,"id":"72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"d8e720aa02ce225bd3d3e84fe72417bf320d7c1884faebdb6c67a86ca5f0913b965ff255704255f68dd57bcb2c0e074a55751b728b02c2ea2a26a80bc26e71b0","tags":[]}] +[14:36:17.945] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you","created_at":1759430143,"id":"afd3d56088deec21ba40cca47adaa0dd6bcf8a75086e7d8db46d85d39730f083","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"646fd5b9bed5793f54ce0101fab6134da996dada346180a112744811f5dd7df3b75b3694eec44b1abe2d3f6f496f8569d79878a7b8bb1ab669a078ff983dc93a","tags":[["alt","A short note: Thank you"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","194305fb826553235d2672b86f2d1c5704161f461a39c7719c523687835610f4","wss://nostr.einundzwanzig.space/","reply","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5","wss://relay.primal.net/"]]}] +[14:36:18.006] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💯🎯","created_at":1759430141,"id":"ef45dc0ada5537d5dd39d7b98071778f438a209f3e5c909ee6f7f6490b7fd651","kind":1,"pubkey":"10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df","sig":"70bb7b244f1df9275bf21c1198439241cd428e127f61e67aa8a12eca765d5db0902d1811339372c4e8c48418cfa722b613520df6eb705629889226df6026137e","tags":[["alt","A short note: 💯🎯"],["e","20078eabcc995a8b064202f96b55ca9f65af612808bf49ab17f382dd2b7a0c1e","wss://nostr.wine/","root","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69"],["e","27aa4056c55d383372a9bb82824909e4cd9467c53245c7f9a485fdd2f842f880","wss://relay.primal.net/","reply","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450"],["p","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69","wss://relay.current.fyi/"],["p","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","wss://nostr.mom/"]]}] +[14:36:18.066] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fantastic stuff ","created_at":1759430138,"id":"6cee0f921e74a22e119f32ad6d89c5772e0250679fa539faf520e1aac7e35fbf","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"c5b35b30c374630bacea29b348b7525877f2f783ed03916ff3754027bf580fda4550c88e1b22100305b81b5477b67f971b3dd0d7dccb934ca7a817fcd04696db","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","wss://offchain.pub","root"],["p","b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","","mention"]]}] +[14:36:18.092] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"😋 \n\n\n\nhttps://blossom.primal.net/aea7652a9b5aa168f49709b15fb5d1947251894993f2998fd6b4d5f859c7ade1.mp4","created_at":1759430135,"id":"ce47ade5baec881cf7561d6dca5e35c19f6c55a81c5ed84290d375ed1a479760","kind":1,"pubkey":"20d29810d6a5f92b045ade02ebbadc9036d741cc686b00415c42b4236fe4ad2f","sig":"6560921db5987c6adbc65597d3317ce5d7592b767394c7f65e7fd4c6754e53dd5f26274891c509e35b3e6a2fb41644282bbe09ea66c9e41d433fef0354ee3906","tags":[]}] +[14:36:18.152] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You're very kind","created_at":1759430134,"id":"1d52a2df9a877854d65f1dff413f88e1cad8b9b7cb266f2e70bfd03a49f25f5d","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"78be571cd3ac4f5d7e31a58be9eda29727d5f1e4c136edac4f247c371d6692c933b83c9365ec04aa5b1b33c3af5a0024518fed31e666679dde2260741021338f","tags":[["alt","A short note: You're very kind"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","14c29438ced12b38043cd6dd40e920081ca99fe10b4ade938b7f15a86ae50b2d","wss://nostr.wine/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"]]}] +[14:36:18.213] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Im sure they will, they will lose all credibility if they push v30.","created_at":1759430132,"id":"f767292d47e96927823b9c1deb73450fd4a6c587bb98e7ee3fd001b9e28dc2e2","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"5b80a506c295c0fa00fc639cbc56388b9e3d2e65ce67b680a08a4772a24399ded86e3653461b232d5767ec19d90776cf55af0dd77aea5f9f937a0d2bfca780e0","tags":[["alt","A short note: Im sure they will, they will lose all credibility ..."],["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","wss://relay.orly.dev/","root","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","wss://relay.primal.net/","","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","wss://relay.orly.dev/","reply","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","wss://relay.sovereign.app/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:36:18.273] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:36:18.334] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:18.394] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:18.455] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:18.515] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:36:18.576] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:18.636] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:18.697] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:18.757] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Sarah Gation\",\"about\":\"Pigment purist...mixing colors only makes brown\",\"picture\":\"https://cdn.nicecrew.digital/ee85913c52cede57614f622e8fca74b4d849e63337788d450549c12bad11a84e.jpg\",\"banner\":\"https://cdn.nicecrew.digital/cc04847da32ee4373b3deed7511b75c1070e0f22ffa64f5e8d66bf68ce4b9aa5.jpg\",\"nip05\":\"SarahGation@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430112,"id":"6b704688cc421a1a788d8dd5ac8dc362614914a63949d82c1829ec78a85965c4","kind":0,"pubkey":"084583f041e9830fabe628c850824726c9488b745f559328fe0f099ff3953174","sig":"de82e2ff8c4583a62292615982457c626da08a2c1591f0449088c0c731a990ecc5a93ad0821fc98770202c820e4d664db3f360cdf7718eea6e44920e88bf3105","tags":[["proxy","https://nicecrew.digital/users/SarahGation","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:18.818] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:36:18.878] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:36:18.939] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:36:19.301] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:36:19.543] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:36:20.570] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:36:21.054] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:36:21.296] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:36:21.779] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:36:22.021] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:36:22.444] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:36:22.988] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:36:23.255] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:36:24.114] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:36:24.114] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:36:24.114] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:36:24.114] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:36:24.270] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Niicceeee","created_at":1759430173,"id":"e0f89ee69e0a0e51ff93d359c5eb0867262db02076acf9291a57e7b7283036f1","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"6d56072afa69775cca9cb7d49e2f9e0cc2eac4d0f143cf57d3684a98cf5a5b31e1dbaf73948521b0c97e73aeb27d699bcbd9c3224af4e5dfa8250c441c698632","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["e","7495a7cf20983223a43dc8d34b26bb0613bcdb26c50d8b3323a0fe4680bc9c99","","reply"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"]]}] +[14:36:24.331] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"All in #Bitcoin. Zero regrets.","created_at":1759430163,"id":"829919b495af01ab42a92364325642c602850f94531d3ced2c0ce6b282d7e9f0","kind":1,"pubkey":"7b991f776d04d87cb5d4259688187a520f6afc16b2b9ad26dac6b8ee76c2840d","sig":"8b8e41848697d2ac6bbffa56c783864f10857298b4d718997d2e27d7739ab98f260018da9753c085e4cd56f0e9caaf36059cd285758a9d695ad28e56f27d2953","tags":[["t","bitcoin"]]}] +[14:36:24.391] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Appreciate that","created_at":1759430157,"id":"7d1ac6a4f23bca363be5277ac27a15efc80e12ad53a666e8ab1beff79bd09ffd","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"90b7e2423d2e7711fa871851591bf873fefde322a81a4f94be1b252397f996851b661582e8407d70e6dac0e90f4cd66dd6484d1b3430a05d604775b1bee7fd3e","tags":[["alt","A short note: Appreciate that"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","e78dc352a6fa93d9880eb25da41714fd2f621570b9007f31fa7d344c2331644d","wss://nos.lol/","reply","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","wss://relay.primal.net/"]]}] +[14:36:24.452] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i fell asleep before the end of the episode \nhope everything worked out ok","created_at":1759430145,"id":"72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"d8e720aa02ce225bd3d3e84fe72417bf320d7c1884faebdb6c67a86ca5f0913b965ff255704255f68dd57bcb2c0e074a55751b728b02c2ea2a26a80bc26e71b0","tags":[]}] +[14:36:24.512] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you","created_at":1759430143,"id":"afd3d56088deec21ba40cca47adaa0dd6bcf8a75086e7d8db46d85d39730f083","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"646fd5b9bed5793f54ce0101fab6134da996dada346180a112744811f5dd7df3b75b3694eec44b1abe2d3f6f496f8569d79878a7b8bb1ab669a078ff983dc93a","tags":[["alt","A short note: Thank you"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","194305fb826553235d2672b86f2d1c5704161f461a39c7719c523687835610f4","wss://nostr.einundzwanzig.space/","reply","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5","wss://relay.primal.net/"]]}] +[14:36:24.573] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💯🎯","created_at":1759430141,"id":"ef45dc0ada5537d5dd39d7b98071778f438a209f3e5c909ee6f7f6490b7fd651","kind":1,"pubkey":"10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df","sig":"70bb7b244f1df9275bf21c1198439241cd428e127f61e67aa8a12eca765d5db0902d1811339372c4e8c48418cfa722b613520df6eb705629889226df6026137e","tags":[["alt","A short note: 💯🎯"],["e","20078eabcc995a8b064202f96b55ca9f65af612808bf49ab17f382dd2b7a0c1e","wss://nostr.wine/","root","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69"],["e","27aa4056c55d383372a9bb82824909e4cd9467c53245c7f9a485fdd2f842f880","wss://relay.primal.net/","reply","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450"],["p","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69","wss://relay.current.fyi/"],["p","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","wss://nostr.mom/"]]}] +[14:36:24.633] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fantastic stuff ","created_at":1759430138,"id":"6cee0f921e74a22e119f32ad6d89c5772e0250679fa539faf520e1aac7e35fbf","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"c5b35b30c374630bacea29b348b7525877f2f783ed03916ff3754027bf580fda4550c88e1b22100305b81b5477b67f971b3dd0d7dccb934ca7a817fcd04696db","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","wss://offchain.pub","root"],["p","b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","","mention"]]}] +[14:36:24.694] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"😋 \n\n\n\nhttps://blossom.primal.net/aea7652a9b5aa168f49709b15fb5d1947251894993f2998fd6b4d5f859c7ade1.mp4","created_at":1759430135,"id":"ce47ade5baec881cf7561d6dca5e35c19f6c55a81c5ed84290d375ed1a479760","kind":1,"pubkey":"20d29810d6a5f92b045ade02ebbadc9036d741cc686b00415c42b4236fe4ad2f","sig":"6560921db5987c6adbc65597d3317ce5d7592b767394c7f65e7fd4c6754e53dd5f26274891c509e35b3e6a2fb41644282bbe09ea66c9e41d433fef0354ee3906","tags":[]}] +[14:36:24.754] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You're very kind","created_at":1759430134,"id":"1d52a2df9a877854d65f1dff413f88e1cad8b9b7cb266f2e70bfd03a49f25f5d","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"78be571cd3ac4f5d7e31a58be9eda29727d5f1e4c136edac4f247c371d6692c933b83c9365ec04aa5b1b33c3af5a0024518fed31e666679dde2260741021338f","tags":[["alt","A short note: You're very kind"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","14c29438ced12b38043cd6dd40e920081ca99fe10b4ade938b7f15a86ae50b2d","wss://nostr.wine/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"]]}] +[14:36:24.815] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Im sure they will, they will lose all credibility if they push v30.","created_at":1759430132,"id":"f767292d47e96927823b9c1deb73450fd4a6c587bb98e7ee3fd001b9e28dc2e2","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"5b80a506c295c0fa00fc639cbc56388b9e3d2e65ce67b680a08a4772a24399ded86e3653461b232d5767ec19d90776cf55af0dd77aea5f9f937a0d2bfca780e0","tags":[["alt","A short note: Im sure they will, they will lose all credibility ..."],["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","wss://relay.orly.dev/","root","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","wss://relay.primal.net/","","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","wss://relay.orly.dev/","reply","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","wss://relay.sovereign.app/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:36:24.875] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:36:24.936] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:24.997] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:25.057] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:25.118] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:25.178] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:36:25.239] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:25.299] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:25.360] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:25.421] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Sarah Gation\",\"about\":\"Pigment purist...mixing colors only makes brown\",\"picture\":\"https://cdn.nicecrew.digital/ee85913c52cede57614f622e8fca74b4d849e63337788d450549c12bad11a84e.jpg\",\"banner\":\"https://cdn.nicecrew.digital/cc04847da32ee4373b3deed7511b75c1070e0f22ffa64f5e8d66bf68ce4b9aa5.jpg\",\"nip05\":\"SarahGation@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430112,"id":"6b704688cc421a1a788d8dd5ac8dc362614914a63949d82c1829ec78a85965c4","kind":0,"pubkey":"084583f041e9830fabe628c850824726c9488b745f559328fe0f099ff3953174","sig":"de82e2ff8c4583a62292615982457c626da08a2c1591f0449088c0c731a990ecc5a93ad0821fc98770202c820e4d664db3f360cdf7718eea6e44920e88bf3105","tags":[["proxy","https://nicecrew.digital/users/SarahGation","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:25.481] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:36:25.541] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:36:25.904] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:36:26.146] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:36:27.205] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:36:27.689] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:36:27.930] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:36:28.378] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:36:28.620] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:36:29.043] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:36:29.587] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:36:29.889] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:36:30.938] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:36:30.938] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:36:30.938] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:36:30.938] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:36:31.090] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Niicceeee","created_at":1759430173,"id":"e0f89ee69e0a0e51ff93d359c5eb0867262db02076acf9291a57e7b7283036f1","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"6d56072afa69775cca9cb7d49e2f9e0cc2eac4d0f143cf57d3684a98cf5a5b31e1dbaf73948521b0c97e73aeb27d699bcbd9c3224af4e5dfa8250c441c698632","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["e","7495a7cf20983223a43dc8d34b26bb0613bcdb26c50d8b3323a0fe4680bc9c99","","reply"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"]]}] +[14:36:31.150] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"All in #Bitcoin. Zero regrets.","created_at":1759430163,"id":"829919b495af01ab42a92364325642c602850f94531d3ced2c0ce6b282d7e9f0","kind":1,"pubkey":"7b991f776d04d87cb5d4259688187a520f6afc16b2b9ad26dac6b8ee76c2840d","sig":"8b8e41848697d2ac6bbffa56c783864f10857298b4d718997d2e27d7739ab98f260018da9753c085e4cd56f0e9caaf36059cd285758a9d695ad28e56f27d2953","tags":[["t","bitcoin"]]}] +[14:36:31.211] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Appreciate that","created_at":1759430157,"id":"7d1ac6a4f23bca363be5277ac27a15efc80e12ad53a666e8ab1beff79bd09ffd","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"90b7e2423d2e7711fa871851591bf873fefde322a81a4f94be1b252397f996851b661582e8407d70e6dac0e90f4cd66dd6484d1b3430a05d604775b1bee7fd3e","tags":[["alt","A short note: Appreciate that"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","e78dc352a6fa93d9880eb25da41714fd2f621570b9007f31fa7d344c2331644d","wss://nos.lol/","reply","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","wss://relay.primal.net/"]]}] +[14:36:31.271] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i fell asleep before the end of the episode \nhope everything worked out ok","created_at":1759430145,"id":"72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"d8e720aa02ce225bd3d3e84fe72417bf320d7c1884faebdb6c67a86ca5f0913b965ff255704255f68dd57bcb2c0e074a55751b728b02c2ea2a26a80bc26e71b0","tags":[]}] +[14:36:31.332] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you","created_at":1759430143,"id":"afd3d56088deec21ba40cca47adaa0dd6bcf8a75086e7d8db46d85d39730f083","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"646fd5b9bed5793f54ce0101fab6134da996dada346180a112744811f5dd7df3b75b3694eec44b1abe2d3f6f496f8569d79878a7b8bb1ab669a078ff983dc93a","tags":[["alt","A short note: Thank you"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","194305fb826553235d2672b86f2d1c5704161f461a39c7719c523687835610f4","wss://nostr.einundzwanzig.space/","reply","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5","wss://relay.primal.net/"]]}] +[14:36:31.392] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💯🎯","created_at":1759430141,"id":"ef45dc0ada5537d5dd39d7b98071778f438a209f3e5c909ee6f7f6490b7fd651","kind":1,"pubkey":"10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df","sig":"70bb7b244f1df9275bf21c1198439241cd428e127f61e67aa8a12eca765d5db0902d1811339372c4e8c48418cfa722b613520df6eb705629889226df6026137e","tags":[["alt","A short note: 💯🎯"],["e","20078eabcc995a8b064202f96b55ca9f65af612808bf49ab17f382dd2b7a0c1e","wss://nostr.wine/","root","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69"],["e","27aa4056c55d383372a9bb82824909e4cd9467c53245c7f9a485fdd2f842f880","wss://relay.primal.net/","reply","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450"],["p","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69","wss://relay.current.fyi/"],["p","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","wss://nostr.mom/"]]}] +[14:36:31.453] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fantastic stuff ","created_at":1759430138,"id":"6cee0f921e74a22e119f32ad6d89c5772e0250679fa539faf520e1aac7e35fbf","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"c5b35b30c374630bacea29b348b7525877f2f783ed03916ff3754027bf580fda4550c88e1b22100305b81b5477b67f971b3dd0d7dccb934ca7a817fcd04696db","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","wss://offchain.pub","root"],["p","b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","","mention"]]}] +[14:36:31.513] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"😋 \n\n\n\nhttps://blossom.primal.net/aea7652a9b5aa168f49709b15fb5d1947251894993f2998fd6b4d5f859c7ade1.mp4","created_at":1759430135,"id":"ce47ade5baec881cf7561d6dca5e35c19f6c55a81c5ed84290d375ed1a479760","kind":1,"pubkey":"20d29810d6a5f92b045ade02ebbadc9036d741cc686b00415c42b4236fe4ad2f","sig":"6560921db5987c6adbc65597d3317ce5d7592b767394c7f65e7fd4c6754e53dd5f26274891c509e35b3e6a2fb41644282bbe09ea66c9e41d433fef0354ee3906","tags":[]}] +[14:36:31.574] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You're very kind","created_at":1759430134,"id":"1d52a2df9a877854d65f1dff413f88e1cad8b9b7cb266f2e70bfd03a49f25f5d","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"78be571cd3ac4f5d7e31a58be9eda29727d5f1e4c136edac4f247c371d6692c933b83c9365ec04aa5b1b33c3af5a0024518fed31e666679dde2260741021338f","tags":[["alt","A short note: You're very kind"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","14c29438ced12b38043cd6dd40e920081ca99fe10b4ade938b7f15a86ae50b2d","wss://nostr.wine/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"]]}] +[14:36:31.635] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Im sure they will, they will lose all credibility if they push v30.","created_at":1759430132,"id":"f767292d47e96927823b9c1deb73450fd4a6c587bb98e7ee3fd001b9e28dc2e2","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"5b80a506c295c0fa00fc639cbc56388b9e3d2e65ce67b680a08a4772a24399ded86e3653461b232d5767ec19d90776cf55af0dd77aea5f9f937a0d2bfca780e0","tags":[["alt","A short note: Im sure they will, they will lose all credibility ..."],["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","wss://relay.orly.dev/","root","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","wss://relay.primal.net/","","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","wss://relay.orly.dev/","reply","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","wss://relay.sovereign.app/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:36:31.695] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:36:31.756] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:31.816] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:31.877] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:31.937] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:31.998] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:32.058] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:36:32.119] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:32.179] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:32.240] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:32.300] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Sarah Gation\",\"about\":\"Pigment purist...mixing colors only makes brown\",\"picture\":\"https://cdn.nicecrew.digital/ee85913c52cede57614f622e8fca74b4d849e63337788d450549c12bad11a84e.jpg\",\"banner\":\"https://cdn.nicecrew.digital/cc04847da32ee4373b3deed7511b75c1070e0f22ffa64f5e8d66bf68ce4b9aa5.jpg\",\"nip05\":\"SarahGation@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430112,"id":"6b704688cc421a1a788d8dd5ac8dc362614914a63949d82c1829ec78a85965c4","kind":0,"pubkey":"084583f041e9830fabe628c850824726c9488b745f559328fe0f099ff3953174","sig":"de82e2ff8c4583a62292615982457c626da08a2c1591f0449088c0c731a990ecc5a93ad0821fc98770202c820e4d664db3f360cdf7718eea6e44920e88bf3105","tags":[["proxy","https://nicecrew.digital/users/SarahGation","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:32.361] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:36:32.723] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:36:32.965] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:36:33.957] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:36:34.440] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:36:34.682] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:36:35.165] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:36:35.407] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:36:35.829] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:36:36.373] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:36:36.675] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:36:37.535] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:36:37.536] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:36:37.536] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:36:37.536] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:36:37.688] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"parks & rec is on now","created_at":1759430197,"id":"d5ff5008509180c8456467fe8d0376545c5c83554e1e94acc9afd447710e7a24","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"506bf73a8318ddea48bd41a839b4ebb13689e127840cd41710c6bb60326e647a16e1576aba81af6e0205735ab0360a1a29ed38365bcf4d20acde9630cbf7d2ee","tags":[["e","72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","","root"]]}] +[14:36:37.748] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like think about it… just satirically riffing here\n\nWhat if we found out that Sydney Sweeney had been identified in her childhood as a technological genius (in the GATE program) so she was covertly trained throughout her life (by her parents who were deeply radicalized) until her teens when she’s displaced onto the streets post 2008 housing crash \n\nAnd then maybe like add in the former military took her in and obfuscated her identity so that she could live a free life once her assignment was complete\n\nWhile under military care she cooks up bitcoin \n\nI think I might write this alt universe next \nnostr:nevent1qqs2vrzxl8a85umcyl5xeyzmkmxj5vd4tllh9gq84qq9j4zmm0m846cpndmhxue69uhkummn9ekx7mp0y5erqamnwvaz7tmwdaehgu3wd3skuep0y5erqffjxpshvct5v9ez2v3swaehxw309ahx7um5wgh8w6twv5hj2v3sy5erqctkv96xzu39xgc8wumn8ghj7ur4wfcxcetjv4kxz7fwvdhk6te9xgc8wumn8ghj7un9d3shjtnyv9kh2uewd9hj7ffjxpmhxue69uhhyetvv9ujuumwdae8gtnnda3kjctv9uz3evne","created_at":1759430195,"id":"e5f94e543baa12eb3c0b7703d8c0ecc98962d44fc113fbbb45b63304833314a5","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"11d9fda3dfd3a9e785c2feb30e7cff30e9eca4870750baae97d3d732862ca7a530104744b019be706261d0299bd8331c0c15a563bec30bfed84647921cb3233c","tags":[["e","a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","mention"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","","mention"]]}] +[14:36:37.809] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Niicceeee","created_at":1759430173,"id":"e0f89ee69e0a0e51ff93d359c5eb0867262db02076acf9291a57e7b7283036f1","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"6d56072afa69775cca9cb7d49e2f9e0cc2eac4d0f143cf57d3684a98cf5a5b31e1dbaf73948521b0c97e73aeb27d699bcbd9c3224af4e5dfa8250c441c698632","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["e","7495a7cf20983223a43dc8d34b26bb0613bcdb26c50d8b3323a0fe4680bc9c99","","reply"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"]]}] +[14:36:37.870] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"All in #Bitcoin. Zero regrets.","created_at":1759430163,"id":"829919b495af01ab42a92364325642c602850f94531d3ced2c0ce6b282d7e9f0","kind":1,"pubkey":"7b991f776d04d87cb5d4259688187a520f6afc16b2b9ad26dac6b8ee76c2840d","sig":"8b8e41848697d2ac6bbffa56c783864f10857298b4d718997d2e27d7739ab98f260018da9753c085e4cd56f0e9caaf36059cd285758a9d695ad28e56f27d2953","tags":[["t","bitcoin"]]}] +[14:36:37.930] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Appreciate that","created_at":1759430157,"id":"7d1ac6a4f23bca363be5277ac27a15efc80e12ad53a666e8ab1beff79bd09ffd","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"90b7e2423d2e7711fa871851591bf873fefde322a81a4f94be1b252397f996851b661582e8407d70e6dac0e90f4cd66dd6484d1b3430a05d604775b1bee7fd3e","tags":[["alt","A short note: Appreciate that"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","e78dc352a6fa93d9880eb25da41714fd2f621570b9007f31fa7d344c2331644d","wss://nos.lol/","reply","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","wss://relay.primal.net/"]]}] +[14:36:37.991] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i fell asleep before the end of the episode \nhope everything worked out ok","created_at":1759430145,"id":"72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"d8e720aa02ce225bd3d3e84fe72417bf320d7c1884faebdb6c67a86ca5f0913b965ff255704255f68dd57bcb2c0e074a55751b728b02c2ea2a26a80bc26e71b0","tags":[]}] +[14:36:38.051] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you","created_at":1759430143,"id":"afd3d56088deec21ba40cca47adaa0dd6bcf8a75086e7d8db46d85d39730f083","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"646fd5b9bed5793f54ce0101fab6134da996dada346180a112744811f5dd7df3b75b3694eec44b1abe2d3f6f496f8569d79878a7b8bb1ab669a078ff983dc93a","tags":[["alt","A short note: Thank you"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","194305fb826553235d2672b86f2d1c5704161f461a39c7719c523687835610f4","wss://nostr.einundzwanzig.space/","reply","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5","wss://relay.primal.net/"]]}] +[14:36:38.077] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💯🎯","created_at":1759430141,"id":"ef45dc0ada5537d5dd39d7b98071778f438a209f3e5c909ee6f7f6490b7fd651","kind":1,"pubkey":"10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df","sig":"70bb7b244f1df9275bf21c1198439241cd428e127f61e67aa8a12eca765d5db0902d1811339372c4e8c48418cfa722b613520df6eb705629889226df6026137e","tags":[["alt","A short note: 💯🎯"],["e","20078eabcc995a8b064202f96b55ca9f65af612808bf49ab17f382dd2b7a0c1e","wss://nostr.wine/","root","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69"],["e","27aa4056c55d383372a9bb82824909e4cd9467c53245c7f9a485fdd2f842f880","wss://relay.primal.net/","reply","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450"],["p","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69","wss://relay.current.fyi/"],["p","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","wss://nostr.mom/"]]}] +[14:36:38.138] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fantastic stuff ","created_at":1759430138,"id":"6cee0f921e74a22e119f32ad6d89c5772e0250679fa539faf520e1aac7e35fbf","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"c5b35b30c374630bacea29b348b7525877f2f783ed03916ff3754027bf580fda4550c88e1b22100305b81b5477b67f971b3dd0d7dccb934ca7a817fcd04696db","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","wss://offchain.pub","root"],["p","b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","","mention"]]}] +[14:36:38.198] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"😋 \n\n\n\nhttps://blossom.primal.net/aea7652a9b5aa168f49709b15fb5d1947251894993f2998fd6b4d5f859c7ade1.mp4","created_at":1759430135,"id":"ce47ade5baec881cf7561d6dca5e35c19f6c55a81c5ed84290d375ed1a479760","kind":1,"pubkey":"20d29810d6a5f92b045ade02ebbadc9036d741cc686b00415c42b4236fe4ad2f","sig":"6560921db5987c6adbc65597d3317ce5d7592b767394c7f65e7fd4c6754e53dd5f26274891c509e35b3e6a2fb41644282bbe09ea66c9e41d433fef0354ee3906","tags":[]}] +[14:36:38.259] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:36:38.320] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:38.380] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:38.440] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:38.501] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:38.561] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:38.622] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:36:38.682] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:38.743] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:38.803] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:38.864] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Sarah Gation\",\"about\":\"Pigment purist...mixing colors only makes brown\",\"picture\":\"https://cdn.nicecrew.digital/ee85913c52cede57614f622e8fca74b4d849e63337788d450549c12bad11a84e.jpg\",\"banner\":\"https://cdn.nicecrew.digital/cc04847da32ee4373b3deed7511b75c1070e0f22ffa64f5e8d66bf68ce4b9aa5.jpg\",\"nip05\":\"SarahGation@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430112,"id":"6b704688cc421a1a788d8dd5ac8dc362614914a63949d82c1829ec78a85965c4","kind":0,"pubkey":"084583f041e9830fabe628c850824726c9488b745f559328fe0f099ff3953174","sig":"de82e2ff8c4583a62292615982457c626da08a2c1591f0449088c0c731a990ecc5a93ad0821fc98770202c820e4d664db3f360cdf7718eea6e44920e88bf3105","tags":[["proxy","https://nicecrew.digital/users/SarahGation","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:38.924] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:36:39.287] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:36:39.529] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:36:40.557] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:36:41.041] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:36:41.282] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:36:41.766] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:36:42.008] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:36:42.431] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:36:42.975] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:36:43.242] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:36:44.097] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:36:44.097] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:36:44.097] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:36:44.097] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:36:44.248] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fr fr ","created_at":1759430204,"id":"e5d268031fb7e8e68e838e2dffc5ff38c24f5de427f1da257f1a9e697ff1a209","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"ca02b1e582d68e8e06cf3d1a0304bbc7855d47419b9b8312db1a9a6a63f18dfc445c10316efd4ccd3c87e7552038847e45876971a66cd724cf08e93d456e4e87","tags":[["alt","A short note: Fr fr "],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","wss://relay.coinos.io/","","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","wss://nos.lol/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:36:44.309] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"probably needs the loan to fix a coolant leak #expensivecarsatthepaydayloan https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg ","created_at":1759430203,"id":"be5ff464d0b3ce294972c644513496d7f78f9f388762613c6025d349f11938e3","kind":1,"pubkey":"341db5a7e3a931f49095d82a4acc939cf8a67293b1e4179fd4b5c0544c4fc2ef","sig":"e9be924d461d395a8f1446fba07fd212198245ff450bb9ff8abfbe72d1a9686d0aa71c109e04dbcbee3edb0df6350feda5524faa2e82bb053b373d754a14031c","tags":[["alt","A short note: probably needs the loan to fix a coolant leak #exp..."],["t","expensivecarsatthepaydayloan"],["r","https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg"],["imeta","url https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg","x e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","size 198715","m image/jpeg","dim 1407x1061","blurhash #JEyratS-.M|aJM{t6j]ofO]xuV?M|RjNGfPj[t7$~V?R+x]bbt6j[xuofE2o#xux]ofn#t8t7of?w%MNGtRV@RiozWBWW%$NGofj[Rij[ayWBofSit6WYWCn~j]WBbIfk","ox e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","alt "]]}] +[14:36:44.369] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"parks & rec is on now","created_at":1759430197,"id":"d5ff5008509180c8456467fe8d0376545c5c83554e1e94acc9afd447710e7a24","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"506bf73a8318ddea48bd41a839b4ebb13689e127840cd41710c6bb60326e647a16e1576aba81af6e0205735ab0360a1a29ed38365bcf4d20acde9630cbf7d2ee","tags":[["e","72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","","root"]]}] +[14:36:44.430] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like think about it… just satirically riffing here\n\nWhat if we found out that Sydney Sweeney had been identified in her childhood as a technological genius (in the GATE program) so she was covertly trained throughout her life (by her parents who were deeply radicalized) until her teens when she’s displaced onto the streets post 2008 housing crash \n\nAnd then maybe like add in the former military took her in and obfuscated her identity so that she could live a free life once her assignment was complete\n\nWhile under military care she cooks up bitcoin \n\nI think I might write this alt universe next \nnostr:nevent1qqs2vrzxl8a85umcyl5xeyzmkmxj5vd4tllh9gq84qq9j4zmm0m846cpndmhxue69uhkummn9ekx7mp0y5erqamnwvaz7tmwdaehgu3wd3skuep0y5erqffjxpshvct5v9ez2v3swaehxw309ahx7um5wgh8w6twv5hj2v3sy5erqctkv96xzu39xgc8wumn8ghj7ur4wfcxcetjv4kxz7fwvdhk6te9xgc8wumn8ghj7un9d3shjtnyv9kh2uewd9hj7ffjxpmhxue69uhhyetvv9ujuumwdae8gtnnda3kjctv9uz3evne","created_at":1759430195,"id":"e5f94e543baa12eb3c0b7703d8c0ecc98962d44fc113fbbb45b63304833314a5","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"11d9fda3dfd3a9e785c2feb30e7cff30e9eca4870750baae97d3d732862ca7a530104744b019be706261d0299bd8331c0c15a563bec30bfed84647921cb3233c","tags":[["e","a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","mention"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","","mention"]]}] +[14:36:44.490] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Niicceeee","created_at":1759430173,"id":"e0f89ee69e0a0e51ff93d359c5eb0867262db02076acf9291a57e7b7283036f1","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"6d56072afa69775cca9cb7d49e2f9e0cc2eac4d0f143cf57d3684a98cf5a5b31e1dbaf73948521b0c97e73aeb27d699bcbd9c3224af4e5dfa8250c441c698632","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["e","7495a7cf20983223a43dc8d34b26bb0613bcdb26c50d8b3323a0fe4680bc9c99","","reply"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"]]}] +[14:36:44.551] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"All in #Bitcoin. Zero regrets.","created_at":1759430163,"id":"829919b495af01ab42a92364325642c602850f94531d3ced2c0ce6b282d7e9f0","kind":1,"pubkey":"7b991f776d04d87cb5d4259688187a520f6afc16b2b9ad26dac6b8ee76c2840d","sig":"8b8e41848697d2ac6bbffa56c783864f10857298b4d718997d2e27d7739ab98f260018da9753c085e4cd56f0e9caaf36059cd285758a9d695ad28e56f27d2953","tags":[["t","bitcoin"]]}] +[14:36:44.611] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Appreciate that","created_at":1759430157,"id":"7d1ac6a4f23bca363be5277ac27a15efc80e12ad53a666e8ab1beff79bd09ffd","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"90b7e2423d2e7711fa871851591bf873fefde322a81a4f94be1b252397f996851b661582e8407d70e6dac0e90f4cd66dd6484d1b3430a05d604775b1bee7fd3e","tags":[["alt","A short note: Appreciate that"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","e78dc352a6fa93d9880eb25da41714fd2f621570b9007f31fa7d344c2331644d","wss://nos.lol/","reply","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","wss://relay.primal.net/"]]}] +[14:36:44.672] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i fell asleep before the end of the episode \nhope everything worked out ok","created_at":1759430145,"id":"72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"d8e720aa02ce225bd3d3e84fe72417bf320d7c1884faebdb6c67a86ca5f0913b965ff255704255f68dd57bcb2c0e074a55751b728b02c2ea2a26a80bc26e71b0","tags":[]}] +[14:36:44.732] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you","created_at":1759430143,"id":"afd3d56088deec21ba40cca47adaa0dd6bcf8a75086e7d8db46d85d39730f083","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"646fd5b9bed5793f54ce0101fab6134da996dada346180a112744811f5dd7df3b75b3694eec44b1abe2d3f6f496f8569d79878a7b8bb1ab669a078ff983dc93a","tags":[["alt","A short note: Thank you"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","194305fb826553235d2672b86f2d1c5704161f461a39c7719c523687835610f4","wss://nostr.einundzwanzig.space/","reply","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5","wss://relay.primal.net/"]]}] +[14:36:44.793] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💯🎯","created_at":1759430141,"id":"ef45dc0ada5537d5dd39d7b98071778f438a209f3e5c909ee6f7f6490b7fd651","kind":1,"pubkey":"10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df","sig":"70bb7b244f1df9275bf21c1198439241cd428e127f61e67aa8a12eca765d5db0902d1811339372c4e8c48418cfa722b613520df6eb705629889226df6026137e","tags":[["alt","A short note: 💯🎯"],["e","20078eabcc995a8b064202f96b55ca9f65af612808bf49ab17f382dd2b7a0c1e","wss://nostr.wine/","root","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69"],["e","27aa4056c55d383372a9bb82824909e4cd9467c53245c7f9a485fdd2f842f880","wss://relay.primal.net/","reply","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450"],["p","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69","wss://relay.current.fyi/"],["p","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","wss://nostr.mom/"]]}] +[14:36:44.854] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:36:44.914] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:36:44.975] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:45.036] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:45.096] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:45.157] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:45.217] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:45.277] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:36:45.338] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:45.398] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:45.459] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:45.519] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:36:45.882] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:36:46.123] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:36:47.150] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:36:47.633] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:36:47.875] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:36:48.325] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:36:48.566] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:36:48.989] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:36:49.533] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:36:49.835] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:36:50.692] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:36:50.692] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:36:50.692] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:36:50.692] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:36:50.914] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fr fr ","created_at":1759430204,"id":"e5d268031fb7e8e68e838e2dffc5ff38c24f5de427f1da257f1a9e697ff1a209","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"ca02b1e582d68e8e06cf3d1a0304bbc7855d47419b9b8312db1a9a6a63f18dfc445c10316efd4ccd3c87e7552038847e45876971a66cd724cf08e93d456e4e87","tags":[["alt","A short note: Fr fr "],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","wss://relay.coinos.io/","","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","wss://nos.lol/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:36:50.974] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"probably needs the loan to fix a coolant leak #expensivecarsatthepaydayloan https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg ","created_at":1759430203,"id":"be5ff464d0b3ce294972c644513496d7f78f9f388762613c6025d349f11938e3","kind":1,"pubkey":"341db5a7e3a931f49095d82a4acc939cf8a67293b1e4179fd4b5c0544c4fc2ef","sig":"e9be924d461d395a8f1446fba07fd212198245ff450bb9ff8abfbe72d1a9686d0aa71c109e04dbcbee3edb0df6350feda5524faa2e82bb053b373d754a14031c","tags":[["alt","A short note: probably needs the loan to fix a coolant leak #exp..."],["t","expensivecarsatthepaydayloan"],["r","https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg"],["imeta","url https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg","x e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","size 198715","m image/jpeg","dim 1407x1061","blurhash #JEyratS-.M|aJM{t6j]ofO]xuV?M|RjNGfPj[t7$~V?R+x]bbt6j[xuofE2o#xux]ofn#t8t7of?w%MNGtRV@RiozWBWW%$NGofj[Rij[ayWBofSit6WYWCn~j]WBbIfk","ox e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","alt "]]}] +[14:36:51.035] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"parks & rec is on now","created_at":1759430197,"id":"d5ff5008509180c8456467fe8d0376545c5c83554e1e94acc9afd447710e7a24","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"506bf73a8318ddea48bd41a839b4ebb13689e127840cd41710c6bb60326e647a16e1576aba81af6e0205735ab0360a1a29ed38365bcf4d20acde9630cbf7d2ee","tags":[["e","72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","","root"]]}] +[14:36:51.095] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like think about it… just satirically riffing here\n\nWhat if we found out that Sydney Sweeney had been identified in her childhood as a technological genius (in the GATE program) so she was covertly trained throughout her life (by her parents who were deeply radicalized) until her teens when she’s displaced onto the streets post 2008 housing crash \n\nAnd then maybe like add in the former military took her in and obfuscated her identity so that she could live a free life once her assignment was complete\n\nWhile under military care she cooks up bitcoin \n\nI think I might write this alt universe next \nnostr:nevent1qqs2vrzxl8a85umcyl5xeyzmkmxj5vd4tllh9gq84qq9j4zmm0m846cpndmhxue69uhkummn9ekx7mp0y5erqamnwvaz7tmwdaehgu3wd3skuep0y5erqffjxpshvct5v9ez2v3swaehxw309ahx7um5wgh8w6twv5hj2v3sy5erqctkv96xzu39xgc8wumn8ghj7ur4wfcxcetjv4kxz7fwvdhk6te9xgc8wumn8ghj7un9d3shjtnyv9kh2uewd9hj7ffjxpmhxue69uhhyetvv9ujuumwdae8gtnnda3kjctv9uz3evne","created_at":1759430195,"id":"e5f94e543baa12eb3c0b7703d8c0ecc98962d44fc113fbbb45b63304833314a5","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"11d9fda3dfd3a9e785c2feb30e7cff30e9eca4870750baae97d3d732862ca7a530104744b019be706261d0299bd8331c0c15a563bec30bfed84647921cb3233c","tags":[["e","a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","mention"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","","mention"]]}] +[14:36:51.156] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Niicceeee","created_at":1759430173,"id":"e0f89ee69e0a0e51ff93d359c5eb0867262db02076acf9291a57e7b7283036f1","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"6d56072afa69775cca9cb7d49e2f9e0cc2eac4d0f143cf57d3684a98cf5a5b31e1dbaf73948521b0c97e73aeb27d699bcbd9c3224af4e5dfa8250c441c698632","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["e","7495a7cf20983223a43dc8d34b26bb0613bcdb26c50d8b3323a0fe4680bc9c99","","reply"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"]]}] +[14:36:51.216] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"All in #Bitcoin. Zero regrets.","created_at":1759430163,"id":"829919b495af01ab42a92364325642c602850f94531d3ced2c0ce6b282d7e9f0","kind":1,"pubkey":"7b991f776d04d87cb5d4259688187a520f6afc16b2b9ad26dac6b8ee76c2840d","sig":"8b8e41848697d2ac6bbffa56c783864f10857298b4d718997d2e27d7739ab98f260018da9753c085e4cd56f0e9caaf36059cd285758a9d695ad28e56f27d2953","tags":[["t","bitcoin"]]}] +[14:36:51.277] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Appreciate that","created_at":1759430157,"id":"7d1ac6a4f23bca363be5277ac27a15efc80e12ad53a666e8ab1beff79bd09ffd","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"90b7e2423d2e7711fa871851591bf873fefde322a81a4f94be1b252397f996851b661582e8407d70e6dac0e90f4cd66dd6484d1b3430a05d604775b1bee7fd3e","tags":[["alt","A short note: Appreciate that"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","e78dc352a6fa93d9880eb25da41714fd2f621570b9007f31fa7d344c2331644d","wss://nos.lol/","reply","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","wss://relay.primal.net/"]]}] +[14:36:51.337] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i fell asleep before the end of the episode \nhope everything worked out ok","created_at":1759430145,"id":"72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"d8e720aa02ce225bd3d3e84fe72417bf320d7c1884faebdb6c67a86ca5f0913b965ff255704255f68dd57bcb2c0e074a55751b728b02c2ea2a26a80bc26e71b0","tags":[]}] +[14:36:51.398] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you","created_at":1759430143,"id":"afd3d56088deec21ba40cca47adaa0dd6bcf8a75086e7d8db46d85d39730f083","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"646fd5b9bed5793f54ce0101fab6134da996dada346180a112744811f5dd7df3b75b3694eec44b1abe2d3f6f496f8569d79878a7b8bb1ab669a078ff983dc93a","tags":[["alt","A short note: Thank you"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","194305fb826553235d2672b86f2d1c5704161f461a39c7719c523687835610f4","wss://nostr.einundzwanzig.space/","reply","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5","wss://relay.primal.net/"]]}] +[14:36:51.458] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💯🎯","created_at":1759430141,"id":"ef45dc0ada5537d5dd39d7b98071778f438a209f3e5c909ee6f7f6490b7fd651","kind":1,"pubkey":"10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df","sig":"70bb7b244f1df9275bf21c1198439241cd428e127f61e67aa8a12eca765d5db0902d1811339372c4e8c48418cfa722b613520df6eb705629889226df6026137e","tags":[["alt","A short note: 💯🎯"],["e","20078eabcc995a8b064202f96b55ca9f65af612808bf49ab17f382dd2b7a0c1e","wss://nostr.wine/","root","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69"],["e","27aa4056c55d383372a9bb82824909e4cd9467c53245c7f9a485fdd2f842f880","wss://relay.primal.net/","reply","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450"],["p","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69","wss://relay.current.fyi/"],["p","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","wss://nostr.mom/"]]}] +[14:36:51.519] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:36:51.580] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:36:51.640] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:51.700] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:51.761] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:51.821] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:51.882] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:51.942] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:36:52.003] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:52.063] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:52.124] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:52.184] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:36:52.547] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:36:52.789] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:36:53.781] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:36:54.264] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:36:54.506] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:36:54.989] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:36:55.231] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:36:55.653] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:36:56.197] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:36:56.499] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:36:57.353] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:36:57.353] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:36:57.353] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:36:57.353] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:36:57.504] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1番はオレのだからわかってるよ","created_at":1759430217,"id":"f7ba0bd1d12dc18191566aaf004fdcba79659dd0dbfee373ef5638b83f2cf17b","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"b2bce96785f0e5bae95c08a8573cea5920215293dfc29115029c905e3a5cdb76beab5844a429be3356a67f2d9ad644143f2b7eba2aba4392f810965becfd0055","tags":[["e","84b930a2284f33908864bd5712e0d9a935e9998db11eac96ce753fb523876cd0",""],["e","fd0946c084daa5bd1ff002c28f2b997eb2f2c399612a0504979926df38d542a5","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:36:57.565] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fr fr ","created_at":1759430204,"id":"e5d268031fb7e8e68e838e2dffc5ff38c24f5de427f1da257f1a9e697ff1a209","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"ca02b1e582d68e8e06cf3d1a0304bbc7855d47419b9b8312db1a9a6a63f18dfc445c10316efd4ccd3c87e7552038847e45876971a66cd724cf08e93d456e4e87","tags":[["alt","A short note: Fr fr "],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","wss://relay.coinos.io/","","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","wss://nos.lol/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:36:57.626] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"probably needs the loan to fix a coolant leak #expensivecarsatthepaydayloan https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg ","created_at":1759430203,"id":"be5ff464d0b3ce294972c644513496d7f78f9f388762613c6025d349f11938e3","kind":1,"pubkey":"341db5a7e3a931f49095d82a4acc939cf8a67293b1e4179fd4b5c0544c4fc2ef","sig":"e9be924d461d395a8f1446fba07fd212198245ff450bb9ff8abfbe72d1a9686d0aa71c109e04dbcbee3edb0df6350feda5524faa2e82bb053b373d754a14031c","tags":[["alt","A short note: probably needs the loan to fix a coolant leak #exp..."],["t","expensivecarsatthepaydayloan"],["r","https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg"],["imeta","url https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg","x e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","size 198715","m image/jpeg","dim 1407x1061","blurhash #JEyratS-.M|aJM{t6j]ofO]xuV?M|RjNGfPj[t7$~V?R+x]bbt6j[xuofE2o#xux]ofn#t8t7of?w%MNGtRV@RiozWBWW%$NGofj[Rij[ayWBofSit6WYWCn~j]WBbIfk","ox e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","alt "]]}] +[14:36:57.686] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"parks & rec is on now","created_at":1759430197,"id":"d5ff5008509180c8456467fe8d0376545c5c83554e1e94acc9afd447710e7a24","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"506bf73a8318ddea48bd41a839b4ebb13689e127840cd41710c6bb60326e647a16e1576aba81af6e0205735ab0360a1a29ed38365bcf4d20acde9630cbf7d2ee","tags":[["e","72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","","root"]]}] +[14:36:57.747] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like think about it… just satirically riffing here\n\nWhat if we found out that Sydney Sweeney had been identified in her childhood as a technological genius (in the GATE program) so she was covertly trained throughout her life (by her parents who were deeply radicalized) until her teens when she’s displaced onto the streets post 2008 housing crash \n\nAnd then maybe like add in the former military took her in and obfuscated her identity so that she could live a free life once her assignment was complete\n\nWhile under military care she cooks up bitcoin \n\nI think I might write this alt universe next \nnostr:nevent1qqs2vrzxl8a85umcyl5xeyzmkmxj5vd4tllh9gq84qq9j4zmm0m846cpndmhxue69uhkummn9ekx7mp0y5erqamnwvaz7tmwdaehgu3wd3skuep0y5erqffjxpshvct5v9ez2v3swaehxw309ahx7um5wgh8w6twv5hj2v3sy5erqctkv96xzu39xgc8wumn8ghj7ur4wfcxcetjv4kxz7fwvdhk6te9xgc8wumn8ghj7un9d3shjtnyv9kh2uewd9hj7ffjxpmhxue69uhhyetvv9ujuumwdae8gtnnda3kjctv9uz3evne","created_at":1759430195,"id":"e5f94e543baa12eb3c0b7703d8c0ecc98962d44fc113fbbb45b63304833314a5","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"11d9fda3dfd3a9e785c2feb30e7cff30e9eca4870750baae97d3d732862ca7a530104744b019be706261d0299bd8331c0c15a563bec30bfed84647921cb3233c","tags":[["e","a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","mention"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","","mention"]]}] +[14:36:57.807] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Niicceeee","created_at":1759430173,"id":"e0f89ee69e0a0e51ff93d359c5eb0867262db02076acf9291a57e7b7283036f1","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"6d56072afa69775cca9cb7d49e2f9e0cc2eac4d0f143cf57d3684a98cf5a5b31e1dbaf73948521b0c97e73aeb27d699bcbd9c3224af4e5dfa8250c441c698632","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["e","7495a7cf20983223a43dc8d34b26bb0613bcdb26c50d8b3323a0fe4680bc9c99","","reply"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"]]}] +[14:36:57.868] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"All in #Bitcoin. Zero regrets.","created_at":1759430163,"id":"829919b495af01ab42a92364325642c602850f94531d3ced2c0ce6b282d7e9f0","kind":1,"pubkey":"7b991f776d04d87cb5d4259688187a520f6afc16b2b9ad26dac6b8ee76c2840d","sig":"8b8e41848697d2ac6bbffa56c783864f10857298b4d718997d2e27d7739ab98f260018da9753c085e4cd56f0e9caaf36059cd285758a9d695ad28e56f27d2953","tags":[["t","bitcoin"]]}] +[14:36:57.928] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Appreciate that","created_at":1759430157,"id":"7d1ac6a4f23bca363be5277ac27a15efc80e12ad53a666e8ab1beff79bd09ffd","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"90b7e2423d2e7711fa871851591bf873fefde322a81a4f94be1b252397f996851b661582e8407d70e6dac0e90f4cd66dd6484d1b3430a05d604775b1bee7fd3e","tags":[["alt","A short note: Appreciate that"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","e78dc352a6fa93d9880eb25da41714fd2f621570b9007f31fa7d344c2331644d","wss://nos.lol/","reply","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","wss://relay.primal.net/"]]}] +[14:36:57.989] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i fell asleep before the end of the episode \nhope everything worked out ok","created_at":1759430145,"id":"72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"d8e720aa02ce225bd3d3e84fe72417bf320d7c1884faebdb6c67a86ca5f0913b965ff255704255f68dd57bcb2c0e074a55751b728b02c2ea2a26a80bc26e71b0","tags":[]}] +[14:36:58.049] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you","created_at":1759430143,"id":"afd3d56088deec21ba40cca47adaa0dd6bcf8a75086e7d8db46d85d39730f083","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"646fd5b9bed5793f54ce0101fab6134da996dada346180a112744811f5dd7df3b75b3694eec44b1abe2d3f6f496f8569d79878a7b8bb1ab669a078ff983dc93a","tags":[["alt","A short note: Thank you"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","194305fb826553235d2672b86f2d1c5704161f461a39c7719c523687835610f4","wss://nostr.einundzwanzig.space/","reply","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5","wss://relay.primal.net/"]]}] +[14:36:58.110] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:36:58.136] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:36:58.196] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:58.257] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:58.317] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:58.378] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:58.439] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:58.499] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:36:58.560] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:58.620] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:58.681] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:58.741] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:36:59.104] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:36:59.346] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:37:00.372] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:37:00.855] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:37:01.097] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:37:01.580] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:37:01.822] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:37:02.245] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:37:02.788] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:37:03.090] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:37:03.908] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:37:03.909] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:37:03.909] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:37:03.909] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:37:04.060] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for BSQ\nPrice: 2050sat\nBTC: 0.001 - 0.0041\nBSQ: 48.78 - 200.00\nMethod: BSQ Swap\nCreated: 2025-10-02T18:36:01Z","created_at":1759430222,"id":"e65a8d6874310099a7f4d3a2261fbc090c9e6e803f9da4755dbe2c0a33fe64f3","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"9893bc11f678c469b6304167d29643f6ea96ae6a8a99b69b44fe161561f7f2b8279172f05844eba4a065934d0627cf0f1389cea2a7af72fd56bff1f37ba05332","tags":[]}] +[14:37:04.121] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1番はオレのだからわかってるよ","created_at":1759430217,"id":"f7ba0bd1d12dc18191566aaf004fdcba79659dd0dbfee373ef5638b83f2cf17b","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"b2bce96785f0e5bae95c08a8573cea5920215293dfc29115029c905e3a5cdb76beab5844a429be3356a67f2d9ad644143f2b7eba2aba4392f810965becfd0055","tags":[["e","84b930a2284f33908864bd5712e0d9a935e9998db11eac96ce753fb523876cd0",""],["e","fd0946c084daa5bd1ff002c28f2b997eb2f2c399612a0504979926df38d542a5","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:37:04.181] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fr fr ","created_at":1759430204,"id":"e5d268031fb7e8e68e838e2dffc5ff38c24f5de427f1da257f1a9e697ff1a209","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"ca02b1e582d68e8e06cf3d1a0304bbc7855d47419b9b8312db1a9a6a63f18dfc445c10316efd4ccd3c87e7552038847e45876971a66cd724cf08e93d456e4e87","tags":[["alt","A short note: Fr fr "],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","wss://relay.coinos.io/","","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","wss://nos.lol/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:37:04.242] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"probably needs the loan to fix a coolant leak #expensivecarsatthepaydayloan https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg ","created_at":1759430203,"id":"be5ff464d0b3ce294972c644513496d7f78f9f388762613c6025d349f11938e3","kind":1,"pubkey":"341db5a7e3a931f49095d82a4acc939cf8a67293b1e4179fd4b5c0544c4fc2ef","sig":"e9be924d461d395a8f1446fba07fd212198245ff450bb9ff8abfbe72d1a9686d0aa71c109e04dbcbee3edb0df6350feda5524faa2e82bb053b373d754a14031c","tags":[["alt","A short note: probably needs the loan to fix a coolant leak #exp..."],["t","expensivecarsatthepaydayloan"],["r","https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg"],["imeta","url https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg","x e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","size 198715","m image/jpeg","dim 1407x1061","blurhash #JEyratS-.M|aJM{t6j]ofO]xuV?M|RjNGfPj[t7$~V?R+x]bbt6j[xuofE2o#xux]ofn#t8t7of?w%MNGtRV@RiozWBWW%$NGofj[Rij[ayWBofSit6WYWCn~j]WBbIfk","ox e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","alt "]]}] +[14:37:04.302] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"parks & rec is on now","created_at":1759430197,"id":"d5ff5008509180c8456467fe8d0376545c5c83554e1e94acc9afd447710e7a24","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"506bf73a8318ddea48bd41a839b4ebb13689e127840cd41710c6bb60326e647a16e1576aba81af6e0205735ab0360a1a29ed38365bcf4d20acde9630cbf7d2ee","tags":[["e","72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","","root"]]}] +[14:37:04.363] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like think about it… just satirically riffing here\n\nWhat if we found out that Sydney Sweeney had been identified in her childhood as a technological genius (in the GATE program) so she was covertly trained throughout her life (by her parents who were deeply radicalized) until her teens when she’s displaced onto the streets post 2008 housing crash \n\nAnd then maybe like add in the former military took her in and obfuscated her identity so that she could live a free life once her assignment was complete\n\nWhile under military care she cooks up bitcoin \n\nI think I might write this alt universe next \nnostr:nevent1qqs2vrzxl8a85umcyl5xeyzmkmxj5vd4tllh9gq84qq9j4zmm0m846cpndmhxue69uhkummn9ekx7mp0y5erqamnwvaz7tmwdaehgu3wd3skuep0y5erqffjxpshvct5v9ez2v3swaehxw309ahx7um5wgh8w6twv5hj2v3sy5erqctkv96xzu39xgc8wumn8ghj7ur4wfcxcetjv4kxz7fwvdhk6te9xgc8wumn8ghj7un9d3shjtnyv9kh2uewd9hj7ffjxpmhxue69uhhyetvv9ujuumwdae8gtnnda3kjctv9uz3evne","created_at":1759430195,"id":"e5f94e543baa12eb3c0b7703d8c0ecc98962d44fc113fbbb45b63304833314a5","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"11d9fda3dfd3a9e785c2feb30e7cff30e9eca4870750baae97d3d732862ca7a530104744b019be706261d0299bd8331c0c15a563bec30bfed84647921cb3233c","tags":[["e","a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","mention"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","","mention"]]}] +[14:37:04.423] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Niicceeee","created_at":1759430173,"id":"e0f89ee69e0a0e51ff93d359c5eb0867262db02076acf9291a57e7b7283036f1","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"6d56072afa69775cca9cb7d49e2f9e0cc2eac4d0f143cf57d3684a98cf5a5b31e1dbaf73948521b0c97e73aeb27d699bcbd9c3224af4e5dfa8250c441c698632","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["e","7495a7cf20983223a43dc8d34b26bb0613bcdb26c50d8b3323a0fe4680bc9c99","","reply"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"]]}] +[14:37:04.484] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"All in #Bitcoin. Zero regrets.","created_at":1759430163,"id":"829919b495af01ab42a92364325642c602850f94531d3ced2c0ce6b282d7e9f0","kind":1,"pubkey":"7b991f776d04d87cb5d4259688187a520f6afc16b2b9ad26dac6b8ee76c2840d","sig":"8b8e41848697d2ac6bbffa56c783864f10857298b4d718997d2e27d7739ab98f260018da9753c085e4cd56f0e9caaf36059cd285758a9d695ad28e56f27d2953","tags":[["t","bitcoin"]]}] +[14:37:04.544] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Appreciate that","created_at":1759430157,"id":"7d1ac6a4f23bca363be5277ac27a15efc80e12ad53a666e8ab1beff79bd09ffd","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"90b7e2423d2e7711fa871851591bf873fefde322a81a4f94be1b252397f996851b661582e8407d70e6dac0e90f4cd66dd6484d1b3430a05d604775b1bee7fd3e","tags":[["alt","A short note: Appreciate that"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","e78dc352a6fa93d9880eb25da41714fd2f621570b9007f31fa7d344c2331644d","wss://nos.lol/","reply","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","wss://relay.primal.net/"]]}] +[14:37:04.605] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i fell asleep before the end of the episode \nhope everything worked out ok","created_at":1759430145,"id":"72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"d8e720aa02ce225bd3d3e84fe72417bf320d7c1884faebdb6c67a86ca5f0913b965ff255704255f68dd57bcb2c0e074a55751b728b02c2ea2a26a80bc26e71b0","tags":[]}] +[14:37:04.665] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:37:04.726] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:37:04.786] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:04.847] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:04.907] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:04.968] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:05.028] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:05.089] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:37:05.149] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:05.210] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:05.271] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:05.331] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:37:05.694] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:37:05.936] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:37:06.962] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:37:07.445] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:37:07.687] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:37:08.136] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:37:08.378] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:37:08.800] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:37:09.344] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:37:09.646] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:37:10.500] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:37:10.500] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:37:10.500] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:37:10.500] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:37:10.652] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You would never...😆","created_at":1759430231,"id":"f3c8c6a258b0f77c6f265e5426b8a52b25893999a6ce8eb1ec25581dc004598a","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"e3939dcfb7f4cdc2735490db7a2b8eeeb36e59634cec4f0bcc57c9cabf2f9bc6a2a7b79cd0c96b798db12f45f827e9b20316c4487ae1356f98122f913c592c5c","tags":[["alt","A short note: You would never...😆"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","58432f623b56e9ff13c987c41f2f9d495c489b81a122441f2253ee34c7496aad","wss://relay.damus.io/","reply","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af","wss://relay.damus.io/"]]}] +[14:37:10.713] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"‍CME Group to Launch 24/7 Crypto Derivatives Trading in 2026\n\nCME Group plans to introduce continuous trading for crypto futures and options by early 2026, pending regulatory approval from the CFTC. This move addresses growing demand for round-the-clock risk management in digital asset markets.\n\nThe global crypto derivatives market boasts significant open interest, with CME Group holding substantial volume. However, a US government shutdown is currently delaying the CFTC's review process, creating an uncertain timeline for the initiative.\n\nhttps://cryptovka.ru/en/news/5381/cme-group-unveils-always-on-crypto-derivatives-trading-for-2026","created_at":1759430227,"id":"f1f6a70ae0078ed441717a57cbda3a2190c654aab6deca473b0aed581f5e2cfd","kind":1,"pubkey":"b63581fed371e76c0e77ca94a868b56f191c3b06240c0205bf1e9098d2cccc49","sig":"dbcfb5aad6c5636c592cc6bed73c6ad43560f314f35a71d61c2c160abd9ff9f17ce59db4ef479ee3c3e27f09d143984880553e107ff97c75f513f390dccf3acd","tags":[]}] +[14:37:10.773] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for BSQ\nPrice: 2050sat\nBTC: 0.001 - 0.0041\nBSQ: 48.78 - 200.00\nMethod: BSQ Swap\nCreated: 2025-10-02T18:36:01Z","created_at":1759430222,"id":"e65a8d6874310099a7f4d3a2261fbc090c9e6e803f9da4755dbe2c0a33fe64f3","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"9893bc11f678c469b6304167d29643f6ea96ae6a8a99b69b44fe161561f7f2b8279172f05844eba4a065934d0627cf0f1389cea2a7af72fd56bff1f37ba05332","tags":[]}] +[14:37:10.833] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1番はオレのだからわかってるよ","created_at":1759430217,"id":"f7ba0bd1d12dc18191566aaf004fdcba79659dd0dbfee373ef5638b83f2cf17b","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"b2bce96785f0e5bae95c08a8573cea5920215293dfc29115029c905e3a5cdb76beab5844a429be3356a67f2d9ad644143f2b7eba2aba4392f810965becfd0055","tags":[["e","84b930a2284f33908864bd5712e0d9a935e9998db11eac96ce753fb523876cd0",""],["e","fd0946c084daa5bd1ff002c28f2b997eb2f2c399612a0504979926df38d542a5","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:37:10.894] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fr fr ","created_at":1759430204,"id":"e5d268031fb7e8e68e838e2dffc5ff38c24f5de427f1da257f1a9e697ff1a209","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"ca02b1e582d68e8e06cf3d1a0304bbc7855d47419b9b8312db1a9a6a63f18dfc445c10316efd4ccd3c87e7552038847e45876971a66cd724cf08e93d456e4e87","tags":[["alt","A short note: Fr fr "],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","wss://relay.coinos.io/","","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","wss://nos.lol/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:37:10.954] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"probably needs the loan to fix a coolant leak #expensivecarsatthepaydayloan https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg ","created_at":1759430203,"id":"be5ff464d0b3ce294972c644513496d7f78f9f388762613c6025d349f11938e3","kind":1,"pubkey":"341db5a7e3a931f49095d82a4acc939cf8a67293b1e4179fd4b5c0544c4fc2ef","sig":"e9be924d461d395a8f1446fba07fd212198245ff450bb9ff8abfbe72d1a9686d0aa71c109e04dbcbee3edb0df6350feda5524faa2e82bb053b373d754a14031c","tags":[["alt","A short note: probably needs the loan to fix a coolant leak #exp..."],["t","expensivecarsatthepaydayloan"],["r","https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg"],["imeta","url https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg","x e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","size 198715","m image/jpeg","dim 1407x1061","blurhash #JEyratS-.M|aJM{t6j]ofO]xuV?M|RjNGfPj[t7$~V?R+x]bbt6j[xuofE2o#xux]ofn#t8t7of?w%MNGtRV@RiozWBWW%$NGofj[Rij[ayWBofSit6WYWCn~j]WBbIfk","ox e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","alt "]]}] +[14:37:11.015] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"parks & rec is on now","created_at":1759430197,"id":"d5ff5008509180c8456467fe8d0376545c5c83554e1e94acc9afd447710e7a24","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"506bf73a8318ddea48bd41a839b4ebb13689e127840cd41710c6bb60326e647a16e1576aba81af6e0205735ab0360a1a29ed38365bcf4d20acde9630cbf7d2ee","tags":[["e","72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","","root"]]}] +[14:37:11.075] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like think about it… just satirically riffing here\n\nWhat if we found out that Sydney Sweeney had been identified in her childhood as a technological genius (in the GATE program) so she was covertly trained throughout her life (by her parents who were deeply radicalized) until her teens when she’s displaced onto the streets post 2008 housing crash \n\nAnd then maybe like add in the former military took her in and obfuscated her identity so that she could live a free life once her assignment was complete\n\nWhile under military care she cooks up bitcoin \n\nI think I might write this alt universe next \nnostr:nevent1qqs2vrzxl8a85umcyl5xeyzmkmxj5vd4tllh9gq84qq9j4zmm0m846cpndmhxue69uhkummn9ekx7mp0y5erqamnwvaz7tmwdaehgu3wd3skuep0y5erqffjxpshvct5v9ez2v3swaehxw309ahx7um5wgh8w6twv5hj2v3sy5erqctkv96xzu39xgc8wumn8ghj7ur4wfcxcetjv4kxz7fwvdhk6te9xgc8wumn8ghj7un9d3shjtnyv9kh2uewd9hj7ffjxpmhxue69uhhyetvv9ujuumwdae8gtnnda3kjctv9uz3evne","created_at":1759430195,"id":"e5f94e543baa12eb3c0b7703d8c0ecc98962d44fc113fbbb45b63304833314a5","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"11d9fda3dfd3a9e785c2feb30e7cff30e9eca4870750baae97d3d732862ca7a530104744b019be706261d0299bd8331c0c15a563bec30bfed84647921cb3233c","tags":[["e","a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","mention"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","","mention"]]}] +[14:37:11.136] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Niicceeee","created_at":1759430173,"id":"e0f89ee69e0a0e51ff93d359c5eb0867262db02076acf9291a57e7b7283036f1","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"6d56072afa69775cca9cb7d49e2f9e0cc2eac4d0f143cf57d3684a98cf5a5b31e1dbaf73948521b0c97e73aeb27d699bcbd9c3224af4e5dfa8250c441c698632","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["e","7495a7cf20983223a43dc8d34b26bb0613bcdb26c50d8b3323a0fe4680bc9c99","","reply"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"]]}] +[14:37:11.196] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"All in #Bitcoin. Zero regrets.","created_at":1759430163,"id":"829919b495af01ab42a92364325642c602850f94531d3ced2c0ce6b282d7e9f0","kind":1,"pubkey":"7b991f776d04d87cb5d4259688187a520f6afc16b2b9ad26dac6b8ee76c2840d","sig":"8b8e41848697d2ac6bbffa56c783864f10857298b4d718997d2e27d7739ab98f260018da9753c085e4cd56f0e9caaf36059cd285758a9d695ad28e56f27d2953","tags":[["t","bitcoin"]]}] +[14:37:11.257] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:37:11.317] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:37:11.378] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:11.438] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:11.499] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:11.559] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:11.620] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:11.680] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:37:11.741] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:11.801] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:11.862] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:11.922] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:37:12.284] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:37:12.526] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:37:13.519] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:37:14.001] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:37:14.243] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:37:14.726] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:37:14.968] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:37:15.391] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:37:15.935] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:37:16.237] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:37:17.092] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:37:17.092] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:37:17.092] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:37:17.092] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:37:17.245] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I wrote a little story last night just before Starbucks closed. \nWhat do you think? \nnostr:nevent1qqs0f6en3exeugswlrnp6cp7m8p42hqhugpj3xlng4t8zj9ugw4dqkgpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczypec77rn4skxedmsrcc4qct2ljpyx7d3x26x0wj6ss5at9j27xcnvqcyqqqqqqgelq2lz","created_at":1759430234,"id":"076ef37c04ecfc3b6138f4bc85ac1b2b6ee7daad33c2984d12fd40251bf9f927","kind":1,"pubkey":"738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","sig":"9f6bac1e08b2a37d7a54a583021b28af73156bca6379c5bf1bdd318556507dff9a9e08c1fc622729e34c8147c2b2560c60b5c6cd199b3e0dbb8792e9df3ac0aa","tags":[["alt","A short note: I wrote a little story last night just before Star..."],["p","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","wss://relay.primal.net/"],["q","f4eb338e4d9e220ef8e61d603ed9c3555c17e203289bf345567148bc43aad059","wss://relay.primal.net/","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136"]]}] +[14:37:17.305] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You would never...😆","created_at":1759430231,"id":"f3c8c6a258b0f77c6f265e5426b8a52b25893999a6ce8eb1ec25581dc004598a","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"e3939dcfb7f4cdc2735490db7a2b8eeeb36e59634cec4f0bcc57c9cabf2f9bc6a2a7b79cd0c96b798db12f45f827e9b20316c4487ae1356f98122f913c592c5c","tags":[["alt","A short note: You would never...😆"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","58432f623b56e9ff13c987c41f2f9d495c489b81a122441f2253ee34c7496aad","wss://relay.damus.io/","reply","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af","wss://relay.damus.io/"]]}] +[14:37:17.366] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"‍CME Group to Launch 24/7 Crypto Derivatives Trading in 2026\n\nCME Group plans to introduce continuous trading for crypto futures and options by early 2026, pending regulatory approval from the CFTC. This move addresses growing demand for round-the-clock risk management in digital asset markets.\n\nThe global crypto derivatives market boasts significant open interest, with CME Group holding substantial volume. However, a US government shutdown is currently delaying the CFTC's review process, creating an uncertain timeline for the initiative.\n\nhttps://cryptovka.ru/en/news/5381/cme-group-unveils-always-on-crypto-derivatives-trading-for-2026","created_at":1759430227,"id":"f1f6a70ae0078ed441717a57cbda3a2190c654aab6deca473b0aed581f5e2cfd","kind":1,"pubkey":"b63581fed371e76c0e77ca94a868b56f191c3b06240c0205bf1e9098d2cccc49","sig":"dbcfb5aad6c5636c592cc6bed73c6ad43560f314f35a71d61c2c160abd9ff9f17ce59db4ef479ee3c3e27f09d143984880553e107ff97c75f513f390dccf3acd","tags":[]}] +[14:37:17.426] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for BSQ\nPrice: 2050sat\nBTC: 0.001 - 0.0041\nBSQ: 48.78 - 200.00\nMethod: BSQ Swap\nCreated: 2025-10-02T18:36:01Z","created_at":1759430222,"id":"e65a8d6874310099a7f4d3a2261fbc090c9e6e803f9da4755dbe2c0a33fe64f3","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"9893bc11f678c469b6304167d29643f6ea96ae6a8a99b69b44fe161561f7f2b8279172f05844eba4a065934d0627cf0f1389cea2a7af72fd56bff1f37ba05332","tags":[]}] +[14:37:17.487] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1番はオレのだからわかってるよ","created_at":1759430217,"id":"f7ba0bd1d12dc18191566aaf004fdcba79659dd0dbfee373ef5638b83f2cf17b","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"b2bce96785f0e5bae95c08a8573cea5920215293dfc29115029c905e3a5cdb76beab5844a429be3356a67f2d9ad644143f2b7eba2aba4392f810965becfd0055","tags":[["e","84b930a2284f33908864bd5712e0d9a935e9998db11eac96ce753fb523876cd0",""],["e","fd0946c084daa5bd1ff002c28f2b997eb2f2c399612a0504979926df38d542a5","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:37:17.547] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fr fr ","created_at":1759430204,"id":"e5d268031fb7e8e68e838e2dffc5ff38c24f5de427f1da257f1a9e697ff1a209","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"ca02b1e582d68e8e06cf3d1a0304bbc7855d47419b9b8312db1a9a6a63f18dfc445c10316efd4ccd3c87e7552038847e45876971a66cd724cf08e93d456e4e87","tags":[["alt","A short note: Fr fr "],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","wss://relay.coinos.io/","","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","wss://nos.lol/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:37:17.608] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"probably needs the loan to fix a coolant leak #expensivecarsatthepaydayloan https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg ","created_at":1759430203,"id":"be5ff464d0b3ce294972c644513496d7f78f9f388762613c6025d349f11938e3","kind":1,"pubkey":"341db5a7e3a931f49095d82a4acc939cf8a67293b1e4179fd4b5c0544c4fc2ef","sig":"e9be924d461d395a8f1446fba07fd212198245ff450bb9ff8abfbe72d1a9686d0aa71c109e04dbcbee3edb0df6350feda5524faa2e82bb053b373d754a14031c","tags":[["alt","A short note: probably needs the loan to fix a coolant leak #exp..."],["t","expensivecarsatthepaydayloan"],["r","https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg"],["imeta","url https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg","x e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","size 198715","m image/jpeg","dim 1407x1061","blurhash #JEyratS-.M|aJM{t6j]ofO]xuV?M|RjNGfPj[t7$~V?R+x]bbt6j[xuofE2o#xux]ofn#t8t7of?w%MNGtRV@RiozWBWW%$NGofj[Rij[ayWBofSit6WYWCn~j]WBbIfk","ox e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","alt "]]}] +[14:37:17.856] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"parks & rec is on now","created_at":1759430197,"id":"d5ff5008509180c8456467fe8d0376545c5c83554e1e94acc9afd447710e7a24","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"506bf73a8318ddea48bd41a839b4ebb13689e127840cd41710c6bb60326e647a16e1576aba81af6e0205735ab0360a1a29ed38365bcf4d20acde9630cbf7d2ee","tags":[["e","72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","","root"]]}] +[14:37:17.916] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like think about it… just satirically riffing here\n\nWhat if we found out that Sydney Sweeney had been identified in her childhood as a technological genius (in the GATE program) so she was covertly trained throughout her life (by her parents who were deeply radicalized) until her teens when she’s displaced onto the streets post 2008 housing crash \n\nAnd then maybe like add in the former military took her in and obfuscated her identity so that she could live a free life once her assignment was complete\n\nWhile under military care she cooks up bitcoin \n\nI think I might write this alt universe next \nnostr:nevent1qqs2vrzxl8a85umcyl5xeyzmkmxj5vd4tllh9gq84qq9j4zmm0m846cpndmhxue69uhkummn9ekx7mp0y5erqamnwvaz7tmwdaehgu3wd3skuep0y5erqffjxpshvct5v9ez2v3swaehxw309ahx7um5wgh8w6twv5hj2v3sy5erqctkv96xzu39xgc8wumn8ghj7ur4wfcxcetjv4kxz7fwvdhk6te9xgc8wumn8ghj7un9d3shjtnyv9kh2uewd9hj7ffjxpmhxue69uhhyetvv9ujuumwdae8gtnnda3kjctv9uz3evne","created_at":1759430195,"id":"e5f94e543baa12eb3c0b7703d8c0ecc98962d44fc113fbbb45b63304833314a5","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"11d9fda3dfd3a9e785c2feb30e7cff30e9eca4870750baae97d3d732862ca7a530104744b019be706261d0299bd8331c0c15a563bec30bfed84647921cb3233c","tags":[["e","a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","mention"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","","mention"]]}] +[14:37:17.977] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Niicceeee","created_at":1759430173,"id":"e0f89ee69e0a0e51ff93d359c5eb0867262db02076acf9291a57e7b7283036f1","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"6d56072afa69775cca9cb7d49e2f9e0cc2eac4d0f143cf57d3684a98cf5a5b31e1dbaf73948521b0c97e73aeb27d699bcbd9c3224af4e5dfa8250c441c698632","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["e","7495a7cf20983223a43dc8d34b26bb0613bcdb26c50d8b3323a0fe4680bc9c99","","reply"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"]]}] +[14:37:18.037] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:37:18.098] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:37:18.123] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:18.184] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:18.244] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:18.305] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:18.365] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:18.426] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:37:18.486] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:18.547] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:18.608] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:18.668] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:37:19.031] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:37:19.272] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:37:20.299] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:37:20.782] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:37:21.024] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:37:21.507] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:37:21.748] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:37:22.207] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:37:22.750] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:37:23.052] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:37:23.873] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:37:23.874] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:37:23.874] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:37:23.874] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:37:24.025] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I wrote a little story last night just before Starbucks closed. \nWhat do you think? \nnostr:nevent1qqs0f6en3exeugswlrnp6cp7m8p42hqhugpj3xlng4t8zj9ugw4dqkgpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczypec77rn4skxedmsrcc4qct2ljpyx7d3x26x0wj6ss5at9j27xcnvqcyqqqqqqgelq2lz","created_at":1759430234,"id":"076ef37c04ecfc3b6138f4bc85ac1b2b6ee7daad33c2984d12fd40251bf9f927","kind":1,"pubkey":"738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","sig":"9f6bac1e08b2a37d7a54a583021b28af73156bca6379c5bf1bdd318556507dff9a9e08c1fc622729e34c8147c2b2560c60b5c6cd199b3e0dbb8792e9df3ac0aa","tags":[["alt","A short note: I wrote a little story last night just before Star..."],["p","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","wss://relay.primal.net/"],["q","f4eb338e4d9e220ef8e61d603ed9c3555c17e203289bf345567148bc43aad059","wss://relay.primal.net/","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136"]]}] +[14:37:24.196] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You would never...😆","created_at":1759430231,"id":"f3c8c6a258b0f77c6f265e5426b8a52b25893999a6ce8eb1ec25581dc004598a","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"e3939dcfb7f4cdc2735490db7a2b8eeeb36e59634cec4f0bcc57c9cabf2f9bc6a2a7b79cd0c96b798db12f45f827e9b20316c4487ae1356f98122f913c592c5c","tags":[["alt","A short note: You would never...😆"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","58432f623b56e9ff13c987c41f2f9d495c489b81a122441f2253ee34c7496aad","wss://relay.damus.io/","reply","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af","wss://relay.damus.io/"]]}] +[14:37:24.257] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"‍CME Group to Launch 24/7 Crypto Derivatives Trading in 2026\n\nCME Group plans to introduce continuous trading for crypto futures and options by early 2026, pending regulatory approval from the CFTC. This move addresses growing demand for round-the-clock risk management in digital asset markets.\n\nThe global crypto derivatives market boasts significant open interest, with CME Group holding substantial volume. However, a US government shutdown is currently delaying the CFTC's review process, creating an uncertain timeline for the initiative.\n\nhttps://cryptovka.ru/en/news/5381/cme-group-unveils-always-on-crypto-derivatives-trading-for-2026","created_at":1759430227,"id":"f1f6a70ae0078ed441717a57cbda3a2190c654aab6deca473b0aed581f5e2cfd","kind":1,"pubkey":"b63581fed371e76c0e77ca94a868b56f191c3b06240c0205bf1e9098d2cccc49","sig":"dbcfb5aad6c5636c592cc6bed73c6ad43560f314f35a71d61c2c160abd9ff9f17ce59db4ef479ee3c3e27f09d143984880553e107ff97c75f513f390dccf3acd","tags":[]}] +[14:37:24.317] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapathon https://i.imgur.com/WDZlUOV.gif\nnostr:nevent1qqstnsupncdts4ey97vchjawkaap06c949qvhmqhsffct09tm7pkwsqzypay44dc3s2hfr9hta386ltlmtd4uj6c300pqxqrcunszp7akadc6qcyqqqqqqgq85sme","created_at":1759430226,"id":"15ce871c058214859e1fe3b86b16cf0ec274e59e08e4427dcad3ec91ffb76225","kind":1,"pubkey":"aa746c026c3b37de2c9a721fbf8e110235ffbb35f99620002d9ff60edebe9986","sig":"2eecccf043c7764c2281ce2eb8863774f4ebe39dc41cff132675f54db0acc9de6911a6604d029a40b4b9df1cf622d823e12ad5bb034e7c9a5172953ddf7bb093","tags":[["q","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["t","zapathon"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:37:24.378] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for BSQ\nPrice: 2050sat\nBTC: 0.001 - 0.0041\nBSQ: 48.78 - 200.00\nMethod: BSQ Swap\nCreated: 2025-10-02T18:36:01Z","created_at":1759430222,"id":"e65a8d6874310099a7f4d3a2261fbc090c9e6e803f9da4755dbe2c0a33fe64f3","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"9893bc11f678c469b6304167d29643f6ea96ae6a8a99b69b44fe161561f7f2b8279172f05844eba4a065934d0627cf0f1389cea2a7af72fd56bff1f37ba05332","tags":[]}] +[14:37:24.438] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1番はオレのだからわかってるよ","created_at":1759430217,"id":"f7ba0bd1d12dc18191566aaf004fdcba79659dd0dbfee373ef5638b83f2cf17b","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"b2bce96785f0e5bae95c08a8573cea5920215293dfc29115029c905e3a5cdb76beab5844a429be3356a67f2d9ad644143f2b7eba2aba4392f810965becfd0055","tags":[["e","84b930a2284f33908864bd5712e0d9a935e9998db11eac96ce753fb523876cd0",""],["e","fd0946c084daa5bd1ff002c28f2b997eb2f2c399612a0504979926df38d542a5","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:37:24.499] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fr fr ","created_at":1759430204,"id":"e5d268031fb7e8e68e838e2dffc5ff38c24f5de427f1da257f1a9e697ff1a209","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"ca02b1e582d68e8e06cf3d1a0304bbc7855d47419b9b8312db1a9a6a63f18dfc445c10316efd4ccd3c87e7552038847e45876971a66cd724cf08e93d456e4e87","tags":[["alt","A short note: Fr fr "],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","wss://relay.coinos.io/","","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","wss://nos.lol/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:37:24.559] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"probably needs the loan to fix a coolant leak #expensivecarsatthepaydayloan https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg ","created_at":1759430203,"id":"be5ff464d0b3ce294972c644513496d7f78f9f388762613c6025d349f11938e3","kind":1,"pubkey":"341db5a7e3a931f49095d82a4acc939cf8a67293b1e4179fd4b5c0544c4fc2ef","sig":"e9be924d461d395a8f1446fba07fd212198245ff450bb9ff8abfbe72d1a9686d0aa71c109e04dbcbee3edb0df6350feda5524faa2e82bb053b373d754a14031c","tags":[["alt","A short note: probably needs the loan to fix a coolant leak #exp..."],["t","expensivecarsatthepaydayloan"],["r","https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg"],["imeta","url https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg","x e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","size 198715","m image/jpeg","dim 1407x1061","blurhash #JEyratS-.M|aJM{t6j]ofO]xuV?M|RjNGfPj[t7$~V?R+x]bbt6j[xuofE2o#xux]ofn#t8t7of?w%MNGtRV@RiozWBWW%$NGofj[Rij[ayWBofSit6WYWCn~j]WBbIfk","ox e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","alt "]]}] +[14:37:24.620] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"parks & rec is on now","created_at":1759430197,"id":"d5ff5008509180c8456467fe8d0376545c5c83554e1e94acc9afd447710e7a24","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"506bf73a8318ddea48bd41a839b4ebb13689e127840cd41710c6bb60326e647a16e1576aba81af6e0205735ab0360a1a29ed38365bcf4d20acde9630cbf7d2ee","tags":[["e","72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","","root"]]}] +[14:37:24.680] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like think about it… just satirically riffing here\n\nWhat if we found out that Sydney Sweeney had been identified in her childhood as a technological genius (in the GATE program) so she was covertly trained throughout her life (by her parents who were deeply radicalized) until her teens when she’s displaced onto the streets post 2008 housing crash \n\nAnd then maybe like add in the former military took her in and obfuscated her identity so that she could live a free life once her assignment was complete\n\nWhile under military care she cooks up bitcoin \n\nI think I might write this alt universe next \nnostr:nevent1qqs2vrzxl8a85umcyl5xeyzmkmxj5vd4tllh9gq84qq9j4zmm0m846cpndmhxue69uhkummn9ekx7mp0y5erqamnwvaz7tmwdaehgu3wd3skuep0y5erqffjxpshvct5v9ez2v3swaehxw309ahx7um5wgh8w6twv5hj2v3sy5erqctkv96xzu39xgc8wumn8ghj7ur4wfcxcetjv4kxz7fwvdhk6te9xgc8wumn8ghj7un9d3shjtnyv9kh2uewd9hj7ffjxpmhxue69uhhyetvv9ujuumwdae8gtnnda3kjctv9uz3evne","created_at":1759430195,"id":"e5f94e543baa12eb3c0b7703d8c0ecc98962d44fc113fbbb45b63304833314a5","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"11d9fda3dfd3a9e785c2feb30e7cff30e9eca4870750baae97d3d732862ca7a530104744b019be706261d0299bd8331c0c15a563bec30bfed84647921cb3233c","tags":[["e","a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","mention"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","","mention"]]}] +[14:37:24.741] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:37:24.801] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:37:24.862] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:24.923] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:24.983] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:25.044] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:25.105] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:25.165] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:37:25.226] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:25.286] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:25.347] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:25.407] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:37:25.770] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:37:26.012] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:37:27.039] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:37:27.523] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:37:27.765] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:37:28.213] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:37:28.455] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:37:28.878] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:37:29.422] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:37:29.724] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:37:30.577] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:37:30.577] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:37:30.577] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:37:30.577] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:37:30.728] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://youtu.be/Z9LAzNMn8Ow?si=divIoOjE9Vz-emR8 \n\n","created_at":1759430248,"id":"dcce9c5b14500e101ef36eec375405f34b708b5a63df0158d515d031c37d5614","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"23e4dd3ea7481448efdf4cb539e592a5326b11722998f8d19b61af21759cc36ea95ee3eee66b88bb3706feb77238c5326abd4f8c0f4b21eff7b4b9441851e065","tags":[["p","045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win"],["e","1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root","045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057"]]}] +[14:37:30.789] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Goes with any look. Dead battery though. \n#zapsnag for 150,000 sats shipped.\nComes in original box with links and pins.\nhttps://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg","created_at":1759430245,"id":"6be29a060a64c755ce6b8ab903c83a1e179b3aa33ea26ef944658bb7e404ae70","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"f7e266d5e371cc6ff138b23ed6b6de212af8dc6cea95a178cc3b5f89d5bfd391fc8d351323ffece3f14cf31edd860e4a2189c527dc56ec5197d766c2f06e6345","tags":[["alt","A short note: Goes with any look. Dead battery though. \n#zapsnag..."],["t","zapsnag"],["r","https://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg"],["imeta","url https://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg","x 961b49913a68386de7ee679ae01840ea4947822d1a509b7b72934fdbf706311f","size 131555","m image/jpeg","dim 1500x2000","blurhash _AIN{szp#r$*ELR*s:.lcXXSV@V@s:oy.7xuD%Sz%MxaRkV@i{xax[bbNGM|9Zbb%LV@IoR*aysoWBRkRPaLsoxZxZoLIUaKofoft7-:V[oLxut7t7W:R+kCx[bvWDV[Rj","ox 961b49913a68386de7ee679ae01840ea4947822d1a509b7b72934fdbf706311f","alt "]]}] +[14:37:30.850] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I wrote a little story last night just before Starbucks closed. \nWhat do you think? \nnostr:nevent1qqs0f6en3exeugswlrnp6cp7m8p42hqhugpj3xlng4t8zj9ugw4dqkgpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczypec77rn4skxedmsrcc4qct2ljpyx7d3x26x0wj6ss5at9j27xcnvqcyqqqqqqgelq2lz","created_at":1759430234,"id":"076ef37c04ecfc3b6138f4bc85ac1b2b6ee7daad33c2984d12fd40251bf9f927","kind":1,"pubkey":"738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","sig":"9f6bac1e08b2a37d7a54a583021b28af73156bca6379c5bf1bdd318556507dff9a9e08c1fc622729e34c8147c2b2560c60b5c6cd199b3e0dbb8792e9df3ac0aa","tags":[["alt","A short note: I wrote a little story last night just before Star..."],["p","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","wss://relay.primal.net/"],["q","f4eb338e4d9e220ef8e61d603ed9c3555c17e203289bf345567148bc43aad059","wss://relay.primal.net/","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136"]]}] +[14:37:30.911] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You would never...😆","created_at":1759430231,"id":"f3c8c6a258b0f77c6f265e5426b8a52b25893999a6ce8eb1ec25581dc004598a","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"e3939dcfb7f4cdc2735490db7a2b8eeeb36e59634cec4f0bcc57c9cabf2f9bc6a2a7b79cd0c96b798db12f45f827e9b20316c4487ae1356f98122f913c592c5c","tags":[["alt","A short note: You would never...😆"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","58432f623b56e9ff13c987c41f2f9d495c489b81a122441f2253ee34c7496aad","wss://relay.damus.io/","reply","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af","wss://relay.damus.io/"]]}] +[14:37:30.971] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"‍CME Group to Launch 24/7 Crypto Derivatives Trading in 2026\n\nCME Group plans to introduce continuous trading for crypto futures and options by early 2026, pending regulatory approval from the CFTC. This move addresses growing demand for round-the-clock risk management in digital asset markets.\n\nThe global crypto derivatives market boasts significant open interest, with CME Group holding substantial volume. However, a US government shutdown is currently delaying the CFTC's review process, creating an uncertain timeline for the initiative.\n\nhttps://cryptovka.ru/en/news/5381/cme-group-unveils-always-on-crypto-derivatives-trading-for-2026","created_at":1759430227,"id":"f1f6a70ae0078ed441717a57cbda3a2190c654aab6deca473b0aed581f5e2cfd","kind":1,"pubkey":"b63581fed371e76c0e77ca94a868b56f191c3b06240c0205bf1e9098d2cccc49","sig":"dbcfb5aad6c5636c592cc6bed73c6ad43560f314f35a71d61c2c160abd9ff9f17ce59db4ef479ee3c3e27f09d143984880553e107ff97c75f513f390dccf3acd","tags":[]}] +[14:37:31.032] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapathon https://i.imgur.com/WDZlUOV.gif\nnostr:nevent1qqstnsupncdts4ey97vchjawkaap06c949qvhmqhsffct09tm7pkwsqzypay44dc3s2hfr9hta386ltlmtd4uj6c300pqxqrcunszp7akadc6qcyqqqqqqgq85sme","created_at":1759430226,"id":"15ce871c058214859e1fe3b86b16cf0ec274e59e08e4427dcad3ec91ffb76225","kind":1,"pubkey":"aa746c026c3b37de2c9a721fbf8e110235ffbb35f99620002d9ff60edebe9986","sig":"2eecccf043c7764c2281ce2eb8863774f4ebe39dc41cff132675f54db0acc9de6911a6604d029a40b4b9df1cf622d823e12ad5bb034e7c9a5172953ddf7bb093","tags":[["q","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["t","zapathon"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:37:31.092] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for BSQ\nPrice: 2050sat\nBTC: 0.001 - 0.0041\nBSQ: 48.78 - 200.00\nMethod: BSQ Swap\nCreated: 2025-10-02T18:36:01Z","created_at":1759430222,"id":"e65a8d6874310099a7f4d3a2261fbc090c9e6e803f9da4755dbe2c0a33fe64f3","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"9893bc11f678c469b6304167d29643f6ea96ae6a8a99b69b44fe161561f7f2b8279172f05844eba4a065934d0627cf0f1389cea2a7af72fd56bff1f37ba05332","tags":[]}] +[14:37:31.153] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1番はオレのだからわかってるよ","created_at":1759430217,"id":"f7ba0bd1d12dc18191566aaf004fdcba79659dd0dbfee373ef5638b83f2cf17b","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"b2bce96785f0e5bae95c08a8573cea5920215293dfc29115029c905e3a5cdb76beab5844a429be3356a67f2d9ad644143f2b7eba2aba4392f810965becfd0055","tags":[["e","84b930a2284f33908864bd5712e0d9a935e9998db11eac96ce753fb523876cd0",""],["e","fd0946c084daa5bd1ff002c28f2b997eb2f2c399612a0504979926df38d542a5","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:37:31.213] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fr fr ","created_at":1759430204,"id":"e5d268031fb7e8e68e838e2dffc5ff38c24f5de427f1da257f1a9e697ff1a209","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"ca02b1e582d68e8e06cf3d1a0304bbc7855d47419b9b8312db1a9a6a63f18dfc445c10316efd4ccd3c87e7552038847e45876971a66cd724cf08e93d456e4e87","tags":[["alt","A short note: Fr fr "],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","wss://relay.coinos.io/","","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","wss://nos.lol/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:37:31.274] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"probably needs the loan to fix a coolant leak #expensivecarsatthepaydayloan https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg ","created_at":1759430203,"id":"be5ff464d0b3ce294972c644513496d7f78f9f388762613c6025d349f11938e3","kind":1,"pubkey":"341db5a7e3a931f49095d82a4acc939cf8a67293b1e4179fd4b5c0544c4fc2ef","sig":"e9be924d461d395a8f1446fba07fd212198245ff450bb9ff8abfbe72d1a9686d0aa71c109e04dbcbee3edb0df6350feda5524faa2e82bb053b373d754a14031c","tags":[["alt","A short note: probably needs the loan to fix a coolant leak #exp..."],["t","expensivecarsatthepaydayloan"],["r","https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg"],["imeta","url https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg","x e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","size 198715","m image/jpeg","dim 1407x1061","blurhash #JEyratS-.M|aJM{t6j]ofO]xuV?M|RjNGfPj[t7$~V?R+x]bbt6j[xuofE2o#xux]ofn#t8t7of?w%MNGtRV@RiozWBWW%$NGofj[Rij[ayWBofSit6WYWCn~j]WBbIfk","ox e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","alt "]]}] +[14:37:31.335] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:37:31.395] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:37:31.456] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:31.516] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:31.577] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:31.638] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:31.699] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:31.759] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:37:31.820] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:31.880] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:31.941] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:32.001] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:37:32.364] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:37:32.606] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:37:33.598] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:37:34.082] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:37:34.324] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:37:34.807] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:37:35.049] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:37:35.472] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:37:36.015] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:37:36.318] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:37:37.171] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:37:37.171] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:37:37.171] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:37:37.171] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:37:37.322] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://youtu.be/Z9LAzNMn8Ow?si=divIoOjE9Vz-emR8 \n\n","created_at":1759430248,"id":"dcce9c5b14500e101ef36eec375405f34b708b5a63df0158d515d031c37d5614","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"23e4dd3ea7481448efdf4cb539e592a5326b11722998f8d19b61af21759cc36ea95ee3eee66b88bb3706feb77238c5326abd4f8c0f4b21eff7b4b9441851e065","tags":[["p","045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win"],["e","1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root","045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057"]]}] +[14:37:37.383] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Goes with any look. Dead battery though. \n#zapsnag for 150,000 sats shipped.\nComes in original box with links and pins.\nhttps://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg","created_at":1759430245,"id":"6be29a060a64c755ce6b8ab903c83a1e179b3aa33ea26ef944658bb7e404ae70","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"f7e266d5e371cc6ff138b23ed6b6de212af8dc6cea95a178cc3b5f89d5bfd391fc8d351323ffece3f14cf31edd860e4a2189c527dc56ec5197d766c2f06e6345","tags":[["alt","A short note: Goes with any look. Dead battery though. \n#zapsnag..."],["t","zapsnag"],["r","https://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg"],["imeta","url https://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg","x 961b49913a68386de7ee679ae01840ea4947822d1a509b7b72934fdbf706311f","size 131555","m image/jpeg","dim 1500x2000","blurhash _AIN{szp#r$*ELR*s:.lcXXSV@V@s:oy.7xuD%Sz%MxaRkV@i{xax[bbNGM|9Zbb%LV@IoR*aysoWBRkRPaLsoxZxZoLIUaKofoft7-:V[oLxut7t7W:R+kCx[bvWDV[Rj","ox 961b49913a68386de7ee679ae01840ea4947822d1a509b7b72934fdbf706311f","alt "]]}] +[14:37:37.443] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I wrote a little story last night just before Starbucks closed. \nWhat do you think? \nnostr:nevent1qqs0f6en3exeugswlrnp6cp7m8p42hqhugpj3xlng4t8zj9ugw4dqkgpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczypec77rn4skxedmsrcc4qct2ljpyx7d3x26x0wj6ss5at9j27xcnvqcyqqqqqqgelq2lz","created_at":1759430234,"id":"076ef37c04ecfc3b6138f4bc85ac1b2b6ee7daad33c2984d12fd40251bf9f927","kind":1,"pubkey":"738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","sig":"9f6bac1e08b2a37d7a54a583021b28af73156bca6379c5bf1bdd318556507dff9a9e08c1fc622729e34c8147c2b2560c60b5c6cd199b3e0dbb8792e9df3ac0aa","tags":[["alt","A short note: I wrote a little story last night just before Star..."],["p","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","wss://relay.primal.net/"],["q","f4eb338e4d9e220ef8e61d603ed9c3555c17e203289bf345567148bc43aad059","wss://relay.primal.net/","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136"]]}] +[14:37:37.504] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You would never...😆","created_at":1759430231,"id":"f3c8c6a258b0f77c6f265e5426b8a52b25893999a6ce8eb1ec25581dc004598a","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"e3939dcfb7f4cdc2735490db7a2b8eeeb36e59634cec4f0bcc57c9cabf2f9bc6a2a7b79cd0c96b798db12f45f827e9b20316c4487ae1356f98122f913c592c5c","tags":[["alt","A short note: You would never...😆"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","58432f623b56e9ff13c987c41f2f9d495c489b81a122441f2253ee34c7496aad","wss://relay.damus.io/","reply","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af","wss://relay.damus.io/"]]}] +[14:37:37.565] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"‍CME Group to Launch 24/7 Crypto Derivatives Trading in 2026\n\nCME Group plans to introduce continuous trading for crypto futures and options by early 2026, pending regulatory approval from the CFTC. This move addresses growing demand for round-the-clock risk management in digital asset markets.\n\nThe global crypto derivatives market boasts significant open interest, with CME Group holding substantial volume. However, a US government shutdown is currently delaying the CFTC's review process, creating an uncertain timeline for the initiative.\n\nhttps://cryptovka.ru/en/news/5381/cme-group-unveils-always-on-crypto-derivatives-trading-for-2026","created_at":1759430227,"id":"f1f6a70ae0078ed441717a57cbda3a2190c654aab6deca473b0aed581f5e2cfd","kind":1,"pubkey":"b63581fed371e76c0e77ca94a868b56f191c3b06240c0205bf1e9098d2cccc49","sig":"dbcfb5aad6c5636c592cc6bed73c6ad43560f314f35a71d61c2c160abd9ff9f17ce59db4ef479ee3c3e27f09d143984880553e107ff97c75f513f390dccf3acd","tags":[]}] +[14:37:37.625] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapathon https://i.imgur.com/WDZlUOV.gif\nnostr:nevent1qqstnsupncdts4ey97vchjawkaap06c949qvhmqhsffct09tm7pkwsqzypay44dc3s2hfr9hta386ltlmtd4uj6c300pqxqrcunszp7akadc6qcyqqqqqqgq85sme","created_at":1759430226,"id":"15ce871c058214859e1fe3b86b16cf0ec274e59e08e4427dcad3ec91ffb76225","kind":1,"pubkey":"aa746c026c3b37de2c9a721fbf8e110235ffbb35f99620002d9ff60edebe9986","sig":"2eecccf043c7764c2281ce2eb8863774f4ebe39dc41cff132675f54db0acc9de6911a6604d029a40b4b9df1cf622d823e12ad5bb034e7c9a5172953ddf7bb093","tags":[["q","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["t","zapathon"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:37:37.686] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for BSQ\nPrice: 2050sat\nBTC: 0.001 - 0.0041\nBSQ: 48.78 - 200.00\nMethod: BSQ Swap\nCreated: 2025-10-02T18:36:01Z","created_at":1759430222,"id":"e65a8d6874310099a7f4d3a2261fbc090c9e6e803f9da4755dbe2c0a33fe64f3","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"9893bc11f678c469b6304167d29643f6ea96ae6a8a99b69b44fe161561f7f2b8279172f05844eba4a065934d0627cf0f1389cea2a7af72fd56bff1f37ba05332","tags":[]}] +[14:37:37.746] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1番はオレのだからわかってるよ","created_at":1759430217,"id":"f7ba0bd1d12dc18191566aaf004fdcba79659dd0dbfee373ef5638b83f2cf17b","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"b2bce96785f0e5bae95c08a8573cea5920215293dfc29115029c905e3a5cdb76beab5844a429be3356a67f2d9ad644143f2b7eba2aba4392f810965becfd0055","tags":[["e","84b930a2284f33908864bd5712e0d9a935e9998db11eac96ce753fb523876cd0",""],["e","fd0946c084daa5bd1ff002c28f2b997eb2f2c399612a0504979926df38d542a5","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:37:37.807] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fr fr ","created_at":1759430204,"id":"e5d268031fb7e8e68e838e2dffc5ff38c24f5de427f1da257f1a9e697ff1a209","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"ca02b1e582d68e8e06cf3d1a0304bbc7855d47419b9b8312db1a9a6a63f18dfc445c10316efd4ccd3c87e7552038847e45876971a66cd724cf08e93d456e4e87","tags":[["alt","A short note: Fr fr "],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","wss://relay.coinos.io/","","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","wss://nos.lol/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:37:37.868] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"probably needs the loan to fix a coolant leak #expensivecarsatthepaydayloan https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg ","created_at":1759430203,"id":"be5ff464d0b3ce294972c644513496d7f78f9f388762613c6025d349f11938e3","kind":1,"pubkey":"341db5a7e3a931f49095d82a4acc939cf8a67293b1e4179fd4b5c0544c4fc2ef","sig":"e9be924d461d395a8f1446fba07fd212198245ff450bb9ff8abfbe72d1a9686d0aa71c109e04dbcbee3edb0df6350feda5524faa2e82bb053b373d754a14031c","tags":[["alt","A short note: probably needs the loan to fix a coolant leak #exp..."],["t","expensivecarsatthepaydayloan"],["r","https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg"],["imeta","url https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg","x e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","size 198715","m image/jpeg","dim 1407x1061","blurhash #JEyratS-.M|aJM{t6j]ofO]xuV?M|RjNGfPj[t7$~V?R+x]bbt6j[xuofE2o#xux]ofn#t8t7of?w%MNGtRV@RiozWBWW%$NGofj[Rij[ayWBofSit6WYWCn~j]WBbIfk","ox e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","alt "]]}] +[14:37:37.928] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:37:37.989] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:37:38.049] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:38.110] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:38.135] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:38.196] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:38.256] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:38.317] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:37:38.377] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:38.438] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:38.499] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:38.559] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:37:38.922] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:37:39.164] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:37:40.190] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:37:40.674] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:37:40.915] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:37:41.399] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:37:41.640] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:37:42.063] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:37:42.606] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:37:42.908] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:37:43.921] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:37:43.921] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:37:43.921] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:37:43.921] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:37:44.073] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:29Z","created_at":1759430260,"id":"199fd14e7b9708a3126c1be4d4a08bc11e74a7fc766f1a172710a19ea973503f","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"62816d48b077030087484b0dc4af5e7b3bf650804bf8382217f1e8cbc618c519f9f80418ea1faa06f0cfff9856960e96a64be76c41eabbc04163a9700a9a8ce1","tags":[]}] +[14:37:44.134] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is why we do what we do!\n\nPick your own app here.\n\nhttps://pod.link/aHR0cHM6Ly9tdXNpYy5iZWhpbmR0aGVzY2gzbTNzLmNvbS93cC1jb250ZW50L3VwbG9hZHMvU2F0X1NraXJtaXNoL3Nwcm91dGluZ3N5bXBob25pZXMvcnNzL3NhdHNwb3RsaWdodHN5bXBob255LnhtbA","created_at":1759430260,"id":"04ec48345b5fcc8b5c9f4237bfac5585be15868b7178d67d9b97f16e3f10e274","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"b86409b8ef91f30dc99c2bf8f3b85768a18bb6b52f9b2255ed92d22f9f1bfdae993374f7173c7da4b4a3cecd82813f7bdf1a5585fbd124ddbff3ca2943fccbc0","tags":[["e","baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","wss://relay.damus.io/","root","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["e","baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","wss://relay.damus.io/","reply","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["p","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:37:44.194] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://youtu.be/Z9LAzNMn8Ow?si=divIoOjE9Vz-emR8 \n\n","created_at":1759430248,"id":"dcce9c5b14500e101ef36eec375405f34b708b5a63df0158d515d031c37d5614","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"23e4dd3ea7481448efdf4cb539e592a5326b11722998f8d19b61af21759cc36ea95ee3eee66b88bb3706feb77238c5326abd4f8c0f4b21eff7b4b9441851e065","tags":[["p","045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win"],["e","1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root","045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057"]]}] +[14:37:44.255] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Goes with any look. Dead battery though. \n#zapsnag for 150,000 sats shipped.\nComes in original box with links and pins.\nhttps://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg","created_at":1759430245,"id":"6be29a060a64c755ce6b8ab903c83a1e179b3aa33ea26ef944658bb7e404ae70","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"f7e266d5e371cc6ff138b23ed6b6de212af8dc6cea95a178cc3b5f89d5bfd391fc8d351323ffece3f14cf31edd860e4a2189c527dc56ec5197d766c2f06e6345","tags":[["alt","A short note: Goes with any look. Dead battery though. \n#zapsnag..."],["t","zapsnag"],["r","https://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg"],["imeta","url https://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg","x 961b49913a68386de7ee679ae01840ea4947822d1a509b7b72934fdbf706311f","size 131555","m image/jpeg","dim 1500x2000","blurhash _AIN{szp#r$*ELR*s:.lcXXSV@V@s:oy.7xuD%Sz%MxaRkV@i{xax[bbNGM|9Zbb%LV@IoR*aysoWBRkRPaLsoxZxZoLIUaKofoft7-:V[oLxut7t7W:R+kCx[bvWDV[Rj","ox 961b49913a68386de7ee679ae01840ea4947822d1a509b7b72934fdbf706311f","alt "]]}] +[14:37:44.315] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I wrote a little story last night just before Starbucks closed. \nWhat do you think? \nnostr:nevent1qqs0f6en3exeugswlrnp6cp7m8p42hqhugpj3xlng4t8zj9ugw4dqkgpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczypec77rn4skxedmsrcc4qct2ljpyx7d3x26x0wj6ss5at9j27xcnvqcyqqqqqqgelq2lz","created_at":1759430234,"id":"076ef37c04ecfc3b6138f4bc85ac1b2b6ee7daad33c2984d12fd40251bf9f927","kind":1,"pubkey":"738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","sig":"9f6bac1e08b2a37d7a54a583021b28af73156bca6379c5bf1bdd318556507dff9a9e08c1fc622729e34c8147c2b2560c60b5c6cd199b3e0dbb8792e9df3ac0aa","tags":[["alt","A short note: I wrote a little story last night just before Star..."],["p","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","wss://relay.primal.net/"],["q","f4eb338e4d9e220ef8e61d603ed9c3555c17e203289bf345567148bc43aad059","wss://relay.primal.net/","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136"]]}] +[14:37:44.376] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You would never...😆","created_at":1759430231,"id":"f3c8c6a258b0f77c6f265e5426b8a52b25893999a6ce8eb1ec25581dc004598a","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"e3939dcfb7f4cdc2735490db7a2b8eeeb36e59634cec4f0bcc57c9cabf2f9bc6a2a7b79cd0c96b798db12f45f827e9b20316c4487ae1356f98122f913c592c5c","tags":[["alt","A short note: You would never...😆"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","58432f623b56e9ff13c987c41f2f9d495c489b81a122441f2253ee34c7496aad","wss://relay.damus.io/","reply","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af","wss://relay.damus.io/"]]}] +[14:37:44.436] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"‍CME Group to Launch 24/7 Crypto Derivatives Trading in 2026\n\nCME Group plans to introduce continuous trading for crypto futures and options by early 2026, pending regulatory approval from the CFTC. This move addresses growing demand for round-the-clock risk management in digital asset markets.\n\nThe global crypto derivatives market boasts significant open interest, with CME Group holding substantial volume. However, a US government shutdown is currently delaying the CFTC's review process, creating an uncertain timeline for the initiative.\n\nhttps://cryptovka.ru/en/news/5381/cme-group-unveils-always-on-crypto-derivatives-trading-for-2026","created_at":1759430227,"id":"f1f6a70ae0078ed441717a57cbda3a2190c654aab6deca473b0aed581f5e2cfd","kind":1,"pubkey":"b63581fed371e76c0e77ca94a868b56f191c3b06240c0205bf1e9098d2cccc49","sig":"dbcfb5aad6c5636c592cc6bed73c6ad43560f314f35a71d61c2c160abd9ff9f17ce59db4ef479ee3c3e27f09d143984880553e107ff97c75f513f390dccf3acd","tags":[]}] +[14:37:44.497] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapathon https://i.imgur.com/WDZlUOV.gif\nnostr:nevent1qqstnsupncdts4ey97vchjawkaap06c949qvhmqhsffct09tm7pkwsqzypay44dc3s2hfr9hta386ltlmtd4uj6c300pqxqrcunszp7akadc6qcyqqqqqqgq85sme","created_at":1759430226,"id":"15ce871c058214859e1fe3b86b16cf0ec274e59e08e4427dcad3ec91ffb76225","kind":1,"pubkey":"aa746c026c3b37de2c9a721fbf8e110235ffbb35f99620002d9ff60edebe9986","sig":"2eecccf043c7764c2281ce2eb8863774f4ebe39dc41cff132675f54db0acc9de6911a6604d029a40b4b9df1cf622d823e12ad5bb034e7c9a5172953ddf7bb093","tags":[["q","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["t","zapathon"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:37:44.557] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for BSQ\nPrice: 2050sat\nBTC: 0.001 - 0.0041\nBSQ: 48.78 - 200.00\nMethod: BSQ Swap\nCreated: 2025-10-02T18:36:01Z","created_at":1759430222,"id":"e65a8d6874310099a7f4d3a2261fbc090c9e6e803f9da4755dbe2c0a33fe64f3","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"9893bc11f678c469b6304167d29643f6ea96ae6a8a99b69b44fe161561f7f2b8279172f05844eba4a065934d0627cf0f1389cea2a7af72fd56bff1f37ba05332","tags":[]}] +[14:37:44.618] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1番はオレのだからわかってるよ","created_at":1759430217,"id":"f7ba0bd1d12dc18191566aaf004fdcba79659dd0dbfee373ef5638b83f2cf17b","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"b2bce96785f0e5bae95c08a8573cea5920215293dfc29115029c905e3a5cdb76beab5844a429be3356a67f2d9ad644143f2b7eba2aba4392f810965becfd0055","tags":[["e","84b930a2284f33908864bd5712e0d9a935e9998db11eac96ce753fb523876cd0",""],["e","fd0946c084daa5bd1ff002c28f2b997eb2f2c399612a0504979926df38d542a5","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:37:44.679] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:37:44.739] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Dan the 3D Printing Dad\",\"about\":\"Christian, dedicated husband & father, programmer, creative guy, and full-time geek. My posts are my own and not representative of my employer.\\n\\nALT: profile picture is an abstract, line-art representation of the account owner's head.\\n\\nProfile banner is a photograph of a 3D printed cartoon-styled raccoon positioned next to a pear.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/108/198/016/866/489/837/original/f89777bbfb30b4a6.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/108/198/016/866/489/837/original/ae55daa2eccb45ac.jpeg\",\"nip05\":\"3DPrintingDad@fosstodon-org.mostr.pub\",\"fields\":[[\"Twitter\",\"https://twitter.com/MrCarefulGamer\"],[\"Printables.com\",\"https://www.printables.com/@Danthe3DPrintingDad\"],[\"Plushie parent of\",\"@SnowballTheBun@plushies.social\"],[\"Twitch\",\"https://www.twitch.tv/twitchplacidcat\"]]}","created_at":1759430260,"id":"ad25cd8582e8b60cc42e4c6c447e151660b6fd2aa732df4ba3ad9f8a9134c7c5","kind":0,"pubkey":"1b3dcd948ebf062fd0ae7c64d0775e724e336a3bf6ce2583f53043cb16979a4a","sig":"cc4cbf3e8d31d8a1d24f918303871407905ff73e0badb8e9d3d1d4193e8ba2e21185aaa56f812bf5c0d7398343b8f6fb07f6e9a73b7bc64366a5799f5da3b4bc","tags":[["proxy","https://fosstodon.org/users/3DPrintingDad","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:44.800] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:37:44.860] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:44.921] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:44.981] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:45.042] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:45.102] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:45.163] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:37:45.223] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:45.284] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:45.344] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:37:45.707] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:37:45.949] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:37:46.975] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:37:47.459] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:37:47.700] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:37:48.148] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:37:48.390] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:37:48.812] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:37:49.355] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:37:49.657] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:37:50.513] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:37:50.513] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:37:50.513] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:37:50.513] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:37:50.665] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:37:20Z","created_at":1759430267,"id":"a084ecbfc3988c0579b9d13aad886c03324ed78a8e11658a143f93401cbd85d4","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"5e9a90d95201b54a4471d93becfb1f39c94c16885761a607845c07e7b7ee18a58a1d12087b3c5dae0e63252cd11ca568e6736a8e1a1311267789d35b711becb7","tags":[]}] +[14:37:50.725] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yes the tranny has a point\n\nI bet you a fair number of right wing men who are obsessed with trannies (the ones that supposedly hate them) secretly have a kink for them and would be easily seduced by this piece","created_at":1759430265,"id":"a7ee05b2119d3a2289cf9d7cecaa8d51d941ffef9d13a89f1af2f544c169ade6","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"822c1a163acb0fbdffee7e3d381403911a9d6d0826218af648c9f63d2d22d14eeed8763cf35c0cd14e1d3a7aa55ff809bf202f7126bbef5810505387cd6de224","tags":[["e","447811c2992f86177c7e4ffcd12c81a306b70ab5b3b2ffcf7e682247aa002d08","wss://nos.lol","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:37:50.786] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:29Z","created_at":1759430260,"id":"199fd14e7b9708a3126c1be4d4a08bc11e74a7fc766f1a172710a19ea973503f","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"62816d48b077030087484b0dc4af5e7b3bf650804bf8382217f1e8cbc618c519f9f80418ea1faa06f0cfff9856960e96a64be76c41eabbc04163a9700a9a8ce1","tags":[]}] +[14:37:50.846] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is why we do what we do!\n\nPick your own app here.\n\nhttps://pod.link/aHR0cHM6Ly9tdXNpYy5iZWhpbmR0aGVzY2gzbTNzLmNvbS93cC1jb250ZW50L3VwbG9hZHMvU2F0X1NraXJtaXNoL3Nwcm91dGluZ3N5bXBob25pZXMvcnNzL3NhdHNwb3RsaWdodHN5bXBob255LnhtbA","created_at":1759430260,"id":"04ec48345b5fcc8b5c9f4237bfac5585be15868b7178d67d9b97f16e3f10e274","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"b86409b8ef91f30dc99c2bf8f3b85768a18bb6b52f9b2255ed92d22f9f1bfdae993374f7173c7da4b4a3cecd82813f7bdf1a5585fbd124ddbff3ca2943fccbc0","tags":[["e","baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","wss://relay.damus.io/","root","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["e","baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","wss://relay.damus.io/","reply","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["p","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:37:50.907] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://youtu.be/Z9LAzNMn8Ow?si=divIoOjE9Vz-emR8 \n\n","created_at":1759430248,"id":"dcce9c5b14500e101ef36eec375405f34b708b5a63df0158d515d031c37d5614","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"23e4dd3ea7481448efdf4cb539e592a5326b11722998f8d19b61af21759cc36ea95ee3eee66b88bb3706feb77238c5326abd4f8c0f4b21eff7b4b9441851e065","tags":[["p","045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win"],["e","1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root","045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057"]]}] +[14:37:50.967] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Goes with any look. Dead battery though. \n#zapsnag for 150,000 sats shipped.\nComes in original box with links and pins.\nhttps://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg","created_at":1759430245,"id":"6be29a060a64c755ce6b8ab903c83a1e179b3aa33ea26ef944658bb7e404ae70","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"f7e266d5e371cc6ff138b23ed6b6de212af8dc6cea95a178cc3b5f89d5bfd391fc8d351323ffece3f14cf31edd860e4a2189c527dc56ec5197d766c2f06e6345","tags":[["alt","A short note: Goes with any look. Dead battery though. \n#zapsnag..."],["t","zapsnag"],["r","https://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg"],["imeta","url https://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg","x 961b49913a68386de7ee679ae01840ea4947822d1a509b7b72934fdbf706311f","size 131555","m image/jpeg","dim 1500x2000","blurhash _AIN{szp#r$*ELR*s:.lcXXSV@V@s:oy.7xuD%Sz%MxaRkV@i{xax[bbNGM|9Zbb%LV@IoR*aysoWBRkRPaLsoxZxZoLIUaKofoft7-:V[oLxut7t7W:R+kCx[bvWDV[Rj","ox 961b49913a68386de7ee679ae01840ea4947822d1a509b7b72934fdbf706311f","alt "]]}] +[14:37:51.028] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I wrote a little story last night just before Starbucks closed. \nWhat do you think? \nnostr:nevent1qqs0f6en3exeugswlrnp6cp7m8p42hqhugpj3xlng4t8zj9ugw4dqkgpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczypec77rn4skxedmsrcc4qct2ljpyx7d3x26x0wj6ss5at9j27xcnvqcyqqqqqqgelq2lz","created_at":1759430234,"id":"076ef37c04ecfc3b6138f4bc85ac1b2b6ee7daad33c2984d12fd40251bf9f927","kind":1,"pubkey":"738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","sig":"9f6bac1e08b2a37d7a54a583021b28af73156bca6379c5bf1bdd318556507dff9a9e08c1fc622729e34c8147c2b2560c60b5c6cd199b3e0dbb8792e9df3ac0aa","tags":[["alt","A short note: I wrote a little story last night just before Star..."],["p","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","wss://relay.primal.net/"],["q","f4eb338e4d9e220ef8e61d603ed9c3555c17e203289bf345567148bc43aad059","wss://relay.primal.net/","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136"]]}] +[14:37:51.088] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You would never...😆","created_at":1759430231,"id":"f3c8c6a258b0f77c6f265e5426b8a52b25893999a6ce8eb1ec25581dc004598a","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"e3939dcfb7f4cdc2735490db7a2b8eeeb36e59634cec4f0bcc57c9cabf2f9bc6a2a7b79cd0c96b798db12f45f827e9b20316c4487ae1356f98122f913c592c5c","tags":[["alt","A short note: You would never...😆"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","58432f623b56e9ff13c987c41f2f9d495c489b81a122441f2253ee34c7496aad","wss://relay.damus.io/","reply","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af","wss://relay.damus.io/"]]}] +[14:37:51.149] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"‍CME Group to Launch 24/7 Crypto Derivatives Trading in 2026\n\nCME Group plans to introduce continuous trading for crypto futures and options by early 2026, pending regulatory approval from the CFTC. This move addresses growing demand for round-the-clock risk management in digital asset markets.\n\nThe global crypto derivatives market boasts significant open interest, with CME Group holding substantial volume. However, a US government shutdown is currently delaying the CFTC's review process, creating an uncertain timeline for the initiative.\n\nhttps://cryptovka.ru/en/news/5381/cme-group-unveils-always-on-crypto-derivatives-trading-for-2026","created_at":1759430227,"id":"f1f6a70ae0078ed441717a57cbda3a2190c654aab6deca473b0aed581f5e2cfd","kind":1,"pubkey":"b63581fed371e76c0e77ca94a868b56f191c3b06240c0205bf1e9098d2cccc49","sig":"dbcfb5aad6c5636c592cc6bed73c6ad43560f314f35a71d61c2c160abd9ff9f17ce59db4ef479ee3c3e27f09d143984880553e107ff97c75f513f390dccf3acd","tags":[]}] +[14:37:51.210] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapathon https://i.imgur.com/WDZlUOV.gif\nnostr:nevent1qqstnsupncdts4ey97vchjawkaap06c949qvhmqhsffct09tm7pkwsqzypay44dc3s2hfr9hta386ltlmtd4uj6c300pqxqrcunszp7akadc6qcyqqqqqqgq85sme","created_at":1759430226,"id":"15ce871c058214859e1fe3b86b16cf0ec274e59e08e4427dcad3ec91ffb76225","kind":1,"pubkey":"aa746c026c3b37de2c9a721fbf8e110235ffbb35f99620002d9ff60edebe9986","sig":"2eecccf043c7764c2281ce2eb8863774f4ebe39dc41cff132675f54db0acc9de6911a6604d029a40b4b9df1cf622d823e12ad5bb034e7c9a5172953ddf7bb093","tags":[["q","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["t","zapathon"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:37:51.270] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:37:51.331] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Dan the 3D Printing Dad\",\"about\":\"Christian, dedicated husband & father, programmer, creative guy, and full-time geek. My posts are my own and not representative of my employer.\\n\\nALT: profile picture is an abstract, line-art representation of the account owner's head.\\n\\nProfile banner is a photograph of a 3D printed cartoon-styled raccoon positioned next to a pear.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/108/198/016/866/489/837/original/f89777bbfb30b4a6.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/108/198/016/866/489/837/original/ae55daa2eccb45ac.jpeg\",\"nip05\":\"3DPrintingDad@fosstodon-org.mostr.pub\",\"fields\":[[\"Twitter\",\"https://twitter.com/MrCarefulGamer\"],[\"Printables.com\",\"https://www.printables.com/@Danthe3DPrintingDad\"],[\"Plushie parent of\",\"@SnowballTheBun@plushies.social\"],[\"Twitch\",\"https://www.twitch.tv/twitchplacidcat\"]]}","created_at":1759430260,"id":"ad25cd8582e8b60cc42e4c6c447e151660b6fd2aa732df4ba3ad9f8a9134c7c5","kind":0,"pubkey":"1b3dcd948ebf062fd0ae7c64d0775e724e336a3bf6ce2583f53043cb16979a4a","sig":"cc4cbf3e8d31d8a1d24f918303871407905ff73e0badb8e9d3d1d4193e8ba2e21185aaa56f812bf5c0d7398343b8f6fb07f6e9a73b7bc64366a5799f5da3b4bc","tags":[["proxy","https://fosstodon.org/users/3DPrintingDad","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:51.391] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:37:51.452] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:51.512] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:53.093] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:37:53.093] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:37:53.093] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:37:53.093] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:37:53.245] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:05Z","created_at":1759430270,"id":"8ebe4700110b042ed95adf28e8c37eb132d4b365aa8884cf5baf41d7efd49f58","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1f3ff2871f7c4dd2a4a292294366ee334aa905527353fe6b80743ad93d547d82292f92487819a42bec2c8309c1724d57c7a07000d18800eca6679b57f83be06e","tags":[]}] +[14:37:53.255] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:37:20Z","created_at":1759430267,"id":"a084ecbfc3988c0579b9d13aad886c03324ed78a8e11658a143f93401cbd85d4","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"5e9a90d95201b54a4471d93becfb1f39c94c16885761a607845c07e7b7ee18a58a1d12087b3c5dae0e63252cd11ca568e6736a8e1a1311267789d35b711becb7","tags":[]}] +[14:37:53.316] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yes the tranny has a point\n\nI bet you a fair number of right wing men who are obsessed with trannies (the ones that supposedly hate them) secretly have a kink for them and would be easily seduced by this piece","created_at":1759430265,"id":"a7ee05b2119d3a2289cf9d7cecaa8d51d941ffef9d13a89f1af2f544c169ade6","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"822c1a163acb0fbdffee7e3d381403911a9d6d0826218af648c9f63d2d22d14eeed8763cf35c0cd14e1d3a7aa55ff809bf202f7126bbef5810505387cd6de224","tags":[["e","447811c2992f86177c7e4ffcd12c81a306b70ab5b3b2ffcf7e682247aa002d08","wss://nos.lol","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:37:53.376] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:29Z","created_at":1759430260,"id":"199fd14e7b9708a3126c1be4d4a08bc11e74a7fc766f1a172710a19ea973503f","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"62816d48b077030087484b0dc4af5e7b3bf650804bf8382217f1e8cbc618c519f9f80418ea1faa06f0cfff9856960e96a64be76c41eabbc04163a9700a9a8ce1","tags":[]}] +[14:37:53.437] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is why we do what we do!\n\nPick your own app here.\n\nhttps://pod.link/aHR0cHM6Ly9tdXNpYy5iZWhpbmR0aGVzY2gzbTNzLmNvbS93cC1jb250ZW50L3VwbG9hZHMvU2F0X1NraXJtaXNoL3Nwcm91dGluZ3N5bXBob25pZXMvcnNzL3NhdHNwb3RsaWdodHN5bXBob255LnhtbA","created_at":1759430260,"id":"04ec48345b5fcc8b5c9f4237bfac5585be15868b7178d67d9b97f16e3f10e274","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"b86409b8ef91f30dc99c2bf8f3b85768a18bb6b52f9b2255ed92d22f9f1bfdae993374f7173c7da4b4a3cecd82813f7bdf1a5585fbd124ddbff3ca2943fccbc0","tags":[["e","baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","wss://relay.damus.io/","root","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["e","baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","wss://relay.damus.io/","reply","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["p","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:37:53.497] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://youtu.be/Z9LAzNMn8Ow?si=divIoOjE9Vz-emR8 \n\n","created_at":1759430248,"id":"dcce9c5b14500e101ef36eec375405f34b708b5a63df0158d515d031c37d5614","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"23e4dd3ea7481448efdf4cb539e592a5326b11722998f8d19b61af21759cc36ea95ee3eee66b88bb3706feb77238c5326abd4f8c0f4b21eff7b4b9441851e065","tags":[["p","045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win"],["e","1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root","045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057"]]}] +[14:37:53.558] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Goes with any look. Dead battery though. \n#zapsnag for 150,000 sats shipped.\nComes in original box with links and pins.\nhttps://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg","created_at":1759430245,"id":"6be29a060a64c755ce6b8ab903c83a1e179b3aa33ea26ef944658bb7e404ae70","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"f7e266d5e371cc6ff138b23ed6b6de212af8dc6cea95a178cc3b5f89d5bfd391fc8d351323ffece3f14cf31edd860e4a2189c527dc56ec5197d766c2f06e6345","tags":[["alt","A short note: Goes with any look. Dead battery though. \n#zapsnag..."],["t","zapsnag"],["r","https://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg"],["imeta","url https://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg","x 961b49913a68386de7ee679ae01840ea4947822d1a509b7b72934fdbf706311f","size 131555","m image/jpeg","dim 1500x2000","blurhash _AIN{szp#r$*ELR*s:.lcXXSV@V@s:oy.7xuD%Sz%MxaRkV@i{xax[bbNGM|9Zbb%LV@IoR*aysoWBRkRPaLsoxZxZoLIUaKofoft7-:V[oLxut7t7W:R+kCx[bvWDV[Rj","ox 961b49913a68386de7ee679ae01840ea4947822d1a509b7b72934fdbf706311f","alt "]]}] +[14:37:53.618] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I wrote a little story last night just before Starbucks closed. \nWhat do you think? \nnostr:nevent1qqs0f6en3exeugswlrnp6cp7m8p42hqhugpj3xlng4t8zj9ugw4dqkgpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczypec77rn4skxedmsrcc4qct2ljpyx7d3x26x0wj6ss5at9j27xcnvqcyqqqqqqgelq2lz","created_at":1759430234,"id":"076ef37c04ecfc3b6138f4bc85ac1b2b6ee7daad33c2984d12fd40251bf9f927","kind":1,"pubkey":"738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","sig":"9f6bac1e08b2a37d7a54a583021b28af73156bca6379c5bf1bdd318556507dff9a9e08c1fc622729e34c8147c2b2560c60b5c6cd199b3e0dbb8792e9df3ac0aa","tags":[["alt","A short note: I wrote a little story last night just before Star..."],["p","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","wss://relay.primal.net/"],["q","f4eb338e4d9e220ef8e61d603ed9c3555c17e203289bf345567148bc43aad059","wss://relay.primal.net/","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136"]]}] +[14:37:53.679] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You would never...😆","created_at":1759430231,"id":"f3c8c6a258b0f77c6f265e5426b8a52b25893999a6ce8eb1ec25581dc004598a","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"e3939dcfb7f4cdc2735490db7a2b8eeeb36e59634cec4f0bcc57c9cabf2f9bc6a2a7b79cd0c96b798db12f45f827e9b20316c4487ae1356f98122f913c592c5c","tags":[["alt","A short note: You would never...😆"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","58432f623b56e9ff13c987c41f2f9d495c489b81a122441f2253ee34c7496aad","wss://relay.damus.io/","reply","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af","wss://relay.damus.io/"]]}] +[14:37:53.739] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"‍CME Group to Launch 24/7 Crypto Derivatives Trading in 2026\n\nCME Group plans to introduce continuous trading for crypto futures and options by early 2026, pending regulatory approval from the CFTC. This move addresses growing demand for round-the-clock risk management in digital asset markets.\n\nThe global crypto derivatives market boasts significant open interest, with CME Group holding substantial volume. However, a US government shutdown is currently delaying the CFTC's review process, creating an uncertain timeline for the initiative.\n\nhttps://cryptovka.ru/en/news/5381/cme-group-unveils-always-on-crypto-derivatives-trading-for-2026","created_at":1759430227,"id":"f1f6a70ae0078ed441717a57cbda3a2190c654aab6deca473b0aed581f5e2cfd","kind":1,"pubkey":"b63581fed371e76c0e77ca94a868b56f191c3b06240c0205bf1e9098d2cccc49","sig":"dbcfb5aad6c5636c592cc6bed73c6ad43560f314f35a71d61c2c160abd9ff9f17ce59db4ef479ee3c3e27f09d143984880553e107ff97c75f513f390dccf3acd","tags":[]}] +[14:37:53.800] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:37:53.860] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Dan the 3D Printing Dad\",\"about\":\"Christian, dedicated husband & father, programmer, creative guy, and full-time geek. My posts are my own and not representative of my employer.\\n\\nALT: profile picture is an abstract, line-art representation of the account owner's head.\\n\\nProfile banner is a photograph of a 3D printed cartoon-styled raccoon positioned next to a pear.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/108/198/016/866/489/837/original/f89777bbfb30b4a6.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/108/198/016/866/489/837/original/ae55daa2eccb45ac.jpeg\",\"nip05\":\"3DPrintingDad@fosstodon-org.mostr.pub\",\"fields\":[[\"Twitter\",\"https://twitter.com/MrCarefulGamer\"],[\"Printables.com\",\"https://www.printables.com/@Danthe3DPrintingDad\"],[\"Plushie parent of\",\"@SnowballTheBun@plushies.social\"],[\"Twitch\",\"https://www.twitch.tv/twitchplacidcat\"]]}","created_at":1759430260,"id":"ad25cd8582e8b60cc42e4c6c447e151660b6fd2aa732df4ba3ad9f8a9134c7c5","kind":0,"pubkey":"1b3dcd948ebf062fd0ae7c64d0775e724e336a3bf6ce2583f53043cb16979a4a","sig":"cc4cbf3e8d31d8a1d24f918303871407905ff73e0badb8e9d3d1d4193e8ba2e21185aaa56f812bf5c0d7398343b8f6fb07f6e9a73b7bc64366a5799f5da3b4bc","tags":[["proxy","https://fosstodon.org/users/3DPrintingDad","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:53.921] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:37:53.981] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:54.042] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:55.622] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:37:55.622] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:37:55.622] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:37:55.622] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:37:55.773] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"congrats auntie 💜🫂","created_at":1759430273,"id":"5369e72e6e21eeffb27f56b4c1ddeb48035f6d716a0b1955202d3b2b6aaa3beb","kind":1,"pubkey":"d60397e8a390b41dd17551b04be27ad26831beb6d55a98a1f14d94ec2fe3fde0","sig":"11bb3ee271e3ebe1ee959d6d6c2678b32c8a47fb27f86f102e5ada5e2f3568185e928e6efcc44cb7143806cbd5a0559e9291648a9eb87af341c114bed8eae0a3","tags":[["e","49fc8dc3c774e76e111b9d48ae4dac827fcc0413d25a6330133d04d733fefe73","","root"],["p","9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7"]]}] +[14:37:55.834] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:36:56Z","created_at":1759430273,"id":"40f337fc272c39bef0ba802ff85c4ebf811197e9b5a57c9c8fbb4d4d20f77974","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"df5fdb65d1ca765ce739e3f0b71126a6db1c3e8cb3b09c41fdb4fb6a5dff7fd5de7348432a3ad7c38b2ed47fb89e2c73ad92ceffd916e07999b9e12a406f0c36","tags":[]}] +[14:37:55.895] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:05Z","created_at":1759430270,"id":"8ebe4700110b042ed95adf28e8c37eb132d4b365aa8884cf5baf41d7efd49f58","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1f3ff2871f7c4dd2a4a292294366ee334aa905527353fe6b80743ad93d547d82292f92487819a42bec2c8309c1724d57c7a07000d18800eca6679b57f83be06e","tags":[]}] +[14:37:55.955] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:37:20Z","created_at":1759430267,"id":"a084ecbfc3988c0579b9d13aad886c03324ed78a8e11658a143f93401cbd85d4","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"5e9a90d95201b54a4471d93becfb1f39c94c16885761a607845c07e7b7ee18a58a1d12087b3c5dae0e63252cd11ca568e6736a8e1a1311267789d35b711becb7","tags":[]}] +[14:37:56.016] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yes the tranny has a point\n\nI bet you a fair number of right wing men who are obsessed with trannies (the ones that supposedly hate them) secretly have a kink for them and would be easily seduced by this piece","created_at":1759430265,"id":"a7ee05b2119d3a2289cf9d7cecaa8d51d941ffef9d13a89f1af2f544c169ade6","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"822c1a163acb0fbdffee7e3d381403911a9d6d0826218af648c9f63d2d22d14eeed8763cf35c0cd14e1d3a7aa55ff809bf202f7126bbef5810505387cd6de224","tags":[["e","447811c2992f86177c7e4ffcd12c81a306b70ab5b3b2ffcf7e682247aa002d08","wss://nos.lol","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:37:56.076] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:29Z","created_at":1759430260,"id":"199fd14e7b9708a3126c1be4d4a08bc11e74a7fc766f1a172710a19ea973503f","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"62816d48b077030087484b0dc4af5e7b3bf650804bf8382217f1e8cbc618c519f9f80418ea1faa06f0cfff9856960e96a64be76c41eabbc04163a9700a9a8ce1","tags":[]}] +[14:37:56.137] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is why we do what we do!\n\nPick your own app here.\n\nhttps://pod.link/aHR0cHM6Ly9tdXNpYy5iZWhpbmR0aGVzY2gzbTNzLmNvbS93cC1jb250ZW50L3VwbG9hZHMvU2F0X1NraXJtaXNoL3Nwcm91dGluZ3N5bXBob25pZXMvcnNzL3NhdHNwb3RsaWdodHN5bXBob255LnhtbA","created_at":1759430260,"id":"04ec48345b5fcc8b5c9f4237bfac5585be15868b7178d67d9b97f16e3f10e274","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"b86409b8ef91f30dc99c2bf8f3b85768a18bb6b52f9b2255ed92d22f9f1bfdae993374f7173c7da4b4a3cecd82813f7bdf1a5585fbd124ddbff3ca2943fccbc0","tags":[["e","baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","wss://relay.damus.io/","root","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["e","baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","wss://relay.damus.io/","reply","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["p","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:37:56.197] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://youtu.be/Z9LAzNMn8Ow?si=divIoOjE9Vz-emR8 \n\n","created_at":1759430248,"id":"dcce9c5b14500e101ef36eec375405f34b708b5a63df0158d515d031c37d5614","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"23e4dd3ea7481448efdf4cb539e592a5326b11722998f8d19b61af21759cc36ea95ee3eee66b88bb3706feb77238c5326abd4f8c0f4b21eff7b4b9441851e065","tags":[["p","045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win"],["e","1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root","045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057"]]}] +[14:37:56.258] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Goes with any look. Dead battery though. \n#zapsnag for 150,000 sats shipped.\nComes in original box with links and pins.\nhttps://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg","created_at":1759430245,"id":"6be29a060a64c755ce6b8ab903c83a1e179b3aa33ea26ef944658bb7e404ae70","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"f7e266d5e371cc6ff138b23ed6b6de212af8dc6cea95a178cc3b5f89d5bfd391fc8d351323ffece3f14cf31edd860e4a2189c527dc56ec5197d766c2f06e6345","tags":[["alt","A short note: Goes with any look. Dead battery though. \n#zapsnag..."],["t","zapsnag"],["r","https://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg"],["imeta","url https://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg","x 961b49913a68386de7ee679ae01840ea4947822d1a509b7b72934fdbf706311f","size 131555","m image/jpeg","dim 1500x2000","blurhash _AIN{szp#r$*ELR*s:.lcXXSV@V@s:oy.7xuD%Sz%MxaRkV@i{xax[bbNGM|9Zbb%LV@IoR*aysoWBRkRPaLsoxZxZoLIUaKofoft7-:V[oLxut7t7W:R+kCx[bvWDV[Rj","ox 961b49913a68386de7ee679ae01840ea4947822d1a509b7b72934fdbf706311f","alt "]]}] +[14:37:56.318] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I wrote a little story last night just before Starbucks closed. \nWhat do you think? \nnostr:nevent1qqs0f6en3exeugswlrnp6cp7m8p42hqhugpj3xlng4t8zj9ugw4dqkgpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczypec77rn4skxedmsrcc4qct2ljpyx7d3x26x0wj6ss5at9j27xcnvqcyqqqqqqgelq2lz","created_at":1759430234,"id":"076ef37c04ecfc3b6138f4bc85ac1b2b6ee7daad33c2984d12fd40251bf9f927","kind":1,"pubkey":"738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","sig":"9f6bac1e08b2a37d7a54a583021b28af73156bca6379c5bf1bdd318556507dff9a9e08c1fc622729e34c8147c2b2560c60b5c6cd199b3e0dbb8792e9df3ac0aa","tags":[["alt","A short note: I wrote a little story last night just before Star..."],["p","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","wss://relay.primal.net/"],["q","f4eb338e4d9e220ef8e61d603ed9c3555c17e203289bf345567148bc43aad059","wss://relay.primal.net/","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136"]]}] +[14:37:56.379] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:37:56.440] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Dan the 3D Printing Dad\",\"about\":\"Christian, dedicated husband & father, programmer, creative guy, and full-time geek. My posts are my own and not representative of my employer.\\n\\nALT: profile picture is an abstract, line-art representation of the account owner's head.\\n\\nProfile banner is a photograph of a 3D printed cartoon-styled raccoon positioned next to a pear.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/108/198/016/866/489/837/original/f89777bbfb30b4a6.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/108/198/016/866/489/837/original/ae55daa2eccb45ac.jpeg\",\"nip05\":\"3DPrintingDad@fosstodon-org.mostr.pub\",\"fields\":[[\"Twitter\",\"https://twitter.com/MrCarefulGamer\"],[\"Printables.com\",\"https://www.printables.com/@Danthe3DPrintingDad\"],[\"Plushie parent of\",\"@SnowballTheBun@plushies.social\"],[\"Twitch\",\"https://www.twitch.tv/twitchplacidcat\"]]}","created_at":1759430260,"id":"ad25cd8582e8b60cc42e4c6c447e151660b6fd2aa732df4ba3ad9f8a9134c7c5","kind":0,"pubkey":"1b3dcd948ebf062fd0ae7c64d0775e724e336a3bf6ce2583f53043cb16979a4a","sig":"cc4cbf3e8d31d8a1d24f918303871407905ff73e0badb8e9d3d1d4193e8ba2e21185aaa56f812bf5c0d7398343b8f6fb07f6e9a73b7bc64366a5799f5da3b4bc","tags":[["proxy","https://fosstodon.org/users/3DPrintingDad","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:56.500] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:37:56.561] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:56.622] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:56.682] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:56.743] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:56.803] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:56.864] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:37:56.924] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:56.985] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:57.046] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:37:57.409] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:37:57.651] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:37:58.644] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:37:59.127] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:37:59.369] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:37:59.853] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:38:00.094] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:38:00.517] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:38:01.061] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:38:01.363] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:38:02.219] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:38:02.219] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:38:02.219] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:38:02.219] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:38:02.371] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I dont own a guardians hat.\nGo tribe! Bring back chief wahoo\nhttps://i.nostr.build/Qe412WCHeCYCvDgG.jpg","created_at":1759430280,"id":"442ca5441f236c6406e950ea69f2d429a0cc7e8e9465f12e2a738fe715a6112d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"a3b1bbb3edbf6ee161d27f64d594b2eb279d9334074f30432e46282c5ec517a5260d5161b80ec21a5146ac1d1db44f88e1a49736961a96421a778358ed4a96e3","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["e","f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23"],["e","2f6c4eb99edb947ceb1943498a5ef5350b1fae65b2330e2457d8179271f35a4c","","reply"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://i.nostr.build/Qe412WCHeCYCvDgG.jpg"],["imeta","url https://i.nostr.build/Qe412WCHeCYCvDgG.jpg","x 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","size 49911","m image/jpeg","dim 783x1174","blurhash ^UD]PQIUx]xaxabb_NWBs.t7j[oL?bNGS2RjR*WBtRaejFRjWBWBaexuRQofWBofjsf+R+WBs:oeRjj[ayV[ofayV@j@oLjZa|oekCRjt7j[aykB","ox 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","alt "]]}] +[14:38:02.432] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:36:59Z","created_at":1759430280,"id":"3d802deb8aff6cda2c2d07ce8bb7f7d3dee1aeddd50ca63dcb17d4f7d98b4b95","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"a7b70707d09675ec486d7082fa9a954d161fbc96fe99079947df67926b36c50ab4b6e1498fd90341ca646bd077d9be7509bd3e127c5a714630766ac38c6b1439","tags":[]}] +[14:38:02.492] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:37:26Z","created_at":1759430276,"id":"6a319cbf8521899b99b2f0aba509c2d84f0b779008b8ec1b69057cf723fad119","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"ba3035313500ef2325cc0b2562f4ea19c9d07cebd8edf61a7576ee02aca2a6a788a7a0260f0972d5d589f7a77257548bbbdb9b91b65ae85ce740d6abcd960333","tags":[]}] +[14:38:02.553] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"congrats auntie 💜🫂","created_at":1759430273,"id":"5369e72e6e21eeffb27f56b4c1ddeb48035f6d716a0b1955202d3b2b6aaa3beb","kind":1,"pubkey":"d60397e8a390b41dd17551b04be27ad26831beb6d55a98a1f14d94ec2fe3fde0","sig":"11bb3ee271e3ebe1ee959d6d6c2678b32c8a47fb27f86f102e5ada5e2f3568185e928e6efcc44cb7143806cbd5a0559e9291648a9eb87af341c114bed8eae0a3","tags":[["e","49fc8dc3c774e76e111b9d48ae4dac827fcc0413d25a6330133d04d733fefe73","","root"],["p","9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7"]]}] +[14:38:02.613] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:36:56Z","created_at":1759430273,"id":"40f337fc272c39bef0ba802ff85c4ebf811197e9b5a57c9c8fbb4d4d20f77974","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"df5fdb65d1ca765ce739e3f0b71126a6db1c3e8cb3b09c41fdb4fb6a5dff7fd5de7348432a3ad7c38b2ed47fb89e2c73ad92ceffd916e07999b9e12a406f0c36","tags":[]}] +[14:38:02.674] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:05Z","created_at":1759430270,"id":"8ebe4700110b042ed95adf28e8c37eb132d4b365aa8884cf5baf41d7efd49f58","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1f3ff2871f7c4dd2a4a292294366ee334aa905527353fe6b80743ad93d547d82292f92487819a42bec2c8309c1724d57c7a07000d18800eca6679b57f83be06e","tags":[]}] +[14:38:02.735] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:37:20Z","created_at":1759430267,"id":"a084ecbfc3988c0579b9d13aad886c03324ed78a8e11658a143f93401cbd85d4","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"5e9a90d95201b54a4471d93becfb1f39c94c16885761a607845c07e7b7ee18a58a1d12087b3c5dae0e63252cd11ca568e6736a8e1a1311267789d35b711becb7","tags":[]}] +[14:38:02.795] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yes the tranny has a point\n\nI bet you a fair number of right wing men who are obsessed with trannies (the ones that supposedly hate them) secretly have a kink for them and would be easily seduced by this piece","created_at":1759430265,"id":"a7ee05b2119d3a2289cf9d7cecaa8d51d941ffef9d13a89f1af2f544c169ade6","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"822c1a163acb0fbdffee7e3d381403911a9d6d0826218af648c9f63d2d22d14eeed8763cf35c0cd14e1d3a7aa55ff809bf202f7126bbef5810505387cd6de224","tags":[["e","447811c2992f86177c7e4ffcd12c81a306b70ab5b3b2ffcf7e682247aa002d08","wss://nos.lol","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:38:02.855] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:29Z","created_at":1759430260,"id":"199fd14e7b9708a3126c1be4d4a08bc11e74a7fc766f1a172710a19ea973503f","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"62816d48b077030087484b0dc4af5e7b3bf650804bf8382217f1e8cbc618c519f9f80418ea1faa06f0cfff9856960e96a64be76c41eabbc04163a9700a9a8ce1","tags":[]}] +[14:38:02.916] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is why we do what we do!\n\nPick your own app here.\n\nhttps://pod.link/aHR0cHM6Ly9tdXNpYy5iZWhpbmR0aGVzY2gzbTNzLmNvbS93cC1jb250ZW50L3VwbG9hZHMvU2F0X1NraXJtaXNoL3Nwcm91dGluZ3N5bXBob25pZXMvcnNzL3NhdHNwb3RsaWdodHN5bXBob255LnhtbA","created_at":1759430260,"id":"04ec48345b5fcc8b5c9f4237bfac5585be15868b7178d67d9b97f16e3f10e274","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"b86409b8ef91f30dc99c2bf8f3b85768a18bb6b52f9b2255ed92d22f9f1bfdae993374f7173c7da4b4a3cecd82813f7bdf1a5585fbd124ddbff3ca2943fccbc0","tags":[["e","baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","wss://relay.damus.io/","root","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["e","baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","wss://relay.damus.io/","reply","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["p","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:38:02.976] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:38:03.037] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Dan the 3D Printing Dad\",\"about\":\"Christian, dedicated husband & father, programmer, creative guy, and full-time geek. My posts are my own and not representative of my employer.\\n\\nALT: profile picture is an abstract, line-art representation of the account owner's head.\\n\\nProfile banner is a photograph of a 3D printed cartoon-styled raccoon positioned next to a pear.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/108/198/016/866/489/837/original/f89777bbfb30b4a6.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/108/198/016/866/489/837/original/ae55daa2eccb45ac.jpeg\",\"nip05\":\"3DPrintingDad@fosstodon-org.mostr.pub\",\"fields\":[[\"Twitter\",\"https://twitter.com/MrCarefulGamer\"],[\"Printables.com\",\"https://www.printables.com/@Danthe3DPrintingDad\"],[\"Plushie parent of\",\"@SnowballTheBun@plushies.social\"],[\"Twitch\",\"https://www.twitch.tv/twitchplacidcat\"]]}","created_at":1759430260,"id":"ad25cd8582e8b60cc42e4c6c447e151660b6fd2aa732df4ba3ad9f8a9134c7c5","kind":0,"pubkey":"1b3dcd948ebf062fd0ae7c64d0775e724e336a3bf6ce2583f53043cb16979a4a","sig":"cc4cbf3e8d31d8a1d24f918303871407905ff73e0badb8e9d3d1d4193e8ba2e21185aaa56f812bf5c0d7398343b8f6fb07f6e9a73b7bc64366a5799f5da3b4bc","tags":[["proxy","https://fosstodon.org/users/3DPrintingDad","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:03.098] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:38:03.123] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:03.183] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:04.763] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:38:04.763] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:38:04.763] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:38:04.763] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:38:04.915] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I dont own a guardians hat.\nGo tribe! Bring back chief wahoo\nhttps://i.nostr.build/Qe412WCHeCYCvDgG.jpg","created_at":1759430280,"id":"442ca5441f236c6406e950ea69f2d429a0cc7e8e9465f12e2a738fe715a6112d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"a3b1bbb3edbf6ee161d27f64d594b2eb279d9334074f30432e46282c5ec517a5260d5161b80ec21a5146ac1d1db44f88e1a49736961a96421a778358ed4a96e3","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["e","f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23"],["e","2f6c4eb99edb947ceb1943498a5ef5350b1fae65b2330e2457d8179271f35a4c","","reply"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://i.nostr.build/Qe412WCHeCYCvDgG.jpg"],["imeta","url https://i.nostr.build/Qe412WCHeCYCvDgG.jpg","x 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","size 49911","m image/jpeg","dim 783x1174","blurhash ^UD]PQIUx]xaxabb_NWBs.t7j[oL?bNGS2RjR*WBtRaejFRjWBWBaexuRQofWBofjsf+R+WBs:oeRjj[ayV[ofayV@j@oLjZa|oekCRjt7j[aykB","ox 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","alt "]]}] +[14:38:04.975] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:36:59Z","created_at":1759430280,"id":"3d802deb8aff6cda2c2d07ce8bb7f7d3dee1aeddd50ca63dcb17d4f7d98b4b95","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"a7b70707d09675ec486d7082fa9a954d161fbc96fe99079947df67926b36c50ab4b6e1498fd90341ca646bd077d9be7509bd3e127c5a714630766ac38c6b1439","tags":[]}] +[14:38:05.036] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:37:26Z","created_at":1759430276,"id":"6a319cbf8521899b99b2f0aba509c2d84f0b779008b8ec1b69057cf723fad119","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"ba3035313500ef2325cc0b2562f4ea19c9d07cebd8edf61a7576ee02aca2a6a788a7a0260f0972d5d589f7a77257548bbbdb9b91b65ae85ce740d6abcd960333","tags":[]}] +[14:38:05.096] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"congrats auntie 💜🫂","created_at":1759430273,"id":"5369e72e6e21eeffb27f56b4c1ddeb48035f6d716a0b1955202d3b2b6aaa3beb","kind":1,"pubkey":"d60397e8a390b41dd17551b04be27ad26831beb6d55a98a1f14d94ec2fe3fde0","sig":"11bb3ee271e3ebe1ee959d6d6c2678b32c8a47fb27f86f102e5ada5e2f3568185e928e6efcc44cb7143806cbd5a0559e9291648a9eb87af341c114bed8eae0a3","tags":[["e","49fc8dc3c774e76e111b9d48ae4dac827fcc0413d25a6330133d04d733fefe73","","root"],["p","9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7"]]}] +[14:38:05.157] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:36:56Z","created_at":1759430273,"id":"40f337fc272c39bef0ba802ff85c4ebf811197e9b5a57c9c8fbb4d4d20f77974","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"df5fdb65d1ca765ce739e3f0b71126a6db1c3e8cb3b09c41fdb4fb6a5dff7fd5de7348432a3ad7c38b2ed47fb89e2c73ad92ceffd916e07999b9e12a406f0c36","tags":[]}] +[14:38:05.218] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:05Z","created_at":1759430270,"id":"8ebe4700110b042ed95adf28e8c37eb132d4b365aa8884cf5baf41d7efd49f58","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1f3ff2871f7c4dd2a4a292294366ee334aa905527353fe6b80743ad93d547d82292f92487819a42bec2c8309c1724d57c7a07000d18800eca6679b57f83be06e","tags":[]}] +[14:38:05.278] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:37:20Z","created_at":1759430267,"id":"a084ecbfc3988c0579b9d13aad886c03324ed78a8e11658a143f93401cbd85d4","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"5e9a90d95201b54a4471d93becfb1f39c94c16885761a607845c07e7b7ee18a58a1d12087b3c5dae0e63252cd11ca568e6736a8e1a1311267789d35b711becb7","tags":[]}] +[14:38:05.339] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yes the tranny has a point\n\nI bet you a fair number of right wing men who are obsessed with trannies (the ones that supposedly hate them) secretly have a kink for them and would be easily seduced by this piece","created_at":1759430265,"id":"a7ee05b2119d3a2289cf9d7cecaa8d51d941ffef9d13a89f1af2f544c169ade6","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"822c1a163acb0fbdffee7e3d381403911a9d6d0826218af648c9f63d2d22d14eeed8763cf35c0cd14e1d3a7aa55ff809bf202f7126bbef5810505387cd6de224","tags":[["e","447811c2992f86177c7e4ffcd12c81a306b70ab5b3b2ffcf7e682247aa002d08","wss://nos.lol","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:38:05.399] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:29Z","created_at":1759430260,"id":"199fd14e7b9708a3126c1be4d4a08bc11e74a7fc766f1a172710a19ea973503f","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"62816d48b077030087484b0dc4af5e7b3bf650804bf8382217f1e8cbc618c519f9f80418ea1faa06f0cfff9856960e96a64be76c41eabbc04163a9700a9a8ce1","tags":[]}] +[14:38:05.460] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is why we do what we do!\n\nPick your own app here.\n\nhttps://pod.link/aHR0cHM6Ly9tdXNpYy5iZWhpbmR0aGVzY2gzbTNzLmNvbS93cC1jb250ZW50L3VwbG9hZHMvU2F0X1NraXJtaXNoL3Nwcm91dGluZ3N5bXBob25pZXMvcnNzL3NhdHNwb3RsaWdodHN5bXBob255LnhtbA","created_at":1759430260,"id":"04ec48345b5fcc8b5c9f4237bfac5585be15868b7178d67d9b97f16e3f10e274","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"b86409b8ef91f30dc99c2bf8f3b85768a18bb6b52f9b2255ed92d22f9f1bfdae993374f7173c7da4b4a3cecd82813f7bdf1a5585fbd124ddbff3ca2943fccbc0","tags":[["e","baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","wss://relay.damus.io/","root","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["e","baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","wss://relay.damus.io/","reply","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["p","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:38:05.521] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:38:05.581] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Dan the 3D Printing Dad\",\"about\":\"Christian, dedicated husband & father, programmer, creative guy, and full-time geek. My posts are my own and not representative of my employer.\\n\\nALT: profile picture is an abstract, line-art representation of the account owner's head.\\n\\nProfile banner is a photograph of a 3D printed cartoon-styled raccoon positioned next to a pear.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/108/198/016/866/489/837/original/f89777bbfb30b4a6.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/108/198/016/866/489/837/original/ae55daa2eccb45ac.jpeg\",\"nip05\":\"3DPrintingDad@fosstodon-org.mostr.pub\",\"fields\":[[\"Twitter\",\"https://twitter.com/MrCarefulGamer\"],[\"Printables.com\",\"https://www.printables.com/@Danthe3DPrintingDad\"],[\"Plushie parent of\",\"@SnowballTheBun@plushies.social\"],[\"Twitch\",\"https://www.twitch.tv/twitchplacidcat\"]]}","created_at":1759430260,"id":"ad25cd8582e8b60cc42e4c6c447e151660b6fd2aa732df4ba3ad9f8a9134c7c5","kind":0,"pubkey":"1b3dcd948ebf062fd0ae7c64d0775e724e336a3bf6ce2583f53043cb16979a4a","sig":"cc4cbf3e8d31d8a1d24f918303871407905ff73e0badb8e9d3d1d4193e8ba2e21185aaa56f812bf5c0d7398343b8f6fb07f6e9a73b7bc64366a5799f5da3b4bc","tags":[["proxy","https://fosstodon.org/users/3DPrintingDad","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:05.642] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:38:05.702] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:05.763] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:05.823] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:05.884] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:05.945] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:06.005] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:38:06.066] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:06.126] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:06.187] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:38:06.550] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:38:06.791] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:38:07.818] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:38:08.266] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:38:08.508] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:38:08.991] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:38:09.232] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:38:09.655] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:38:10.200] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:38:10.502] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:38:11.356] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:38:11.356] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:38:11.356] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:38:11.356] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:38:11.507] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇫🇷🇪🇺 PROTESTOS NA FRANÇA CONTRA CORTES DE GASTOS\n\nMilhares protestam na França contra cortes de gastos públicos. Macron deve nomear novo governo neste fim de semana.\nhttps://files.catbox.moe/ykcanh.jpg","created_at":1759430286,"id":"3495b48d17c80977159a5be49763d00b55c90a4131abf5d99452751e5c157ccd","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"8a0ea28226dbe07541fd72dbb94737fc8648391c49aec4ab9317c81055687a2848dbe807d9bb248621c879f8b11e100f1497499424eacaae585e772caaaee9c8","tags":[["image","https://files.catbox.moe/ykcanh.jpg"]]}] +[14:38:11.568] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I dont own a guardians hat.\nGo tribe! Bring back chief wahoo\nhttps://i.nostr.build/Qe412WCHeCYCvDgG.jpg","created_at":1759430280,"id":"442ca5441f236c6406e950ea69f2d429a0cc7e8e9465f12e2a738fe715a6112d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"a3b1bbb3edbf6ee161d27f64d594b2eb279d9334074f30432e46282c5ec517a5260d5161b80ec21a5146ac1d1db44f88e1a49736961a96421a778358ed4a96e3","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["e","f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23"],["e","2f6c4eb99edb947ceb1943498a5ef5350b1fae65b2330e2457d8179271f35a4c","","reply"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://i.nostr.build/Qe412WCHeCYCvDgG.jpg"],["imeta","url https://i.nostr.build/Qe412WCHeCYCvDgG.jpg","x 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","size 49911","m image/jpeg","dim 783x1174","blurhash ^UD]PQIUx]xaxabb_NWBs.t7j[oL?bNGS2RjR*WBtRaejFRjWBWBaexuRQofWBofjsf+R+WBs:oeRjj[ayV[ofayV@j@oLjZa|oekCRjt7j[aykB","ox 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","alt "]]}] +[14:38:11.628] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:36:59Z","created_at":1759430280,"id":"3d802deb8aff6cda2c2d07ce8bb7f7d3dee1aeddd50ca63dcb17d4f7d98b4b95","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"a7b70707d09675ec486d7082fa9a954d161fbc96fe99079947df67926b36c50ab4b6e1498fd90341ca646bd077d9be7509bd3e127c5a714630766ac38c6b1439","tags":[]}] +[14:38:11.689] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:37:26Z","created_at":1759430276,"id":"6a319cbf8521899b99b2f0aba509c2d84f0b779008b8ec1b69057cf723fad119","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"ba3035313500ef2325cc0b2562f4ea19c9d07cebd8edf61a7576ee02aca2a6a788a7a0260f0972d5d589f7a77257548bbbdb9b91b65ae85ce740d6abcd960333","tags":[]}] +[14:38:11.749] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"congrats auntie 💜🫂","created_at":1759430273,"id":"5369e72e6e21eeffb27f56b4c1ddeb48035f6d716a0b1955202d3b2b6aaa3beb","kind":1,"pubkey":"d60397e8a390b41dd17551b04be27ad26831beb6d55a98a1f14d94ec2fe3fde0","sig":"11bb3ee271e3ebe1ee959d6d6c2678b32c8a47fb27f86f102e5ada5e2f3568185e928e6efcc44cb7143806cbd5a0559e9291648a9eb87af341c114bed8eae0a3","tags":[["e","49fc8dc3c774e76e111b9d48ae4dac827fcc0413d25a6330133d04d733fefe73","","root"],["p","9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7"]]}] +[14:38:11.810] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:36:56Z","created_at":1759430273,"id":"40f337fc272c39bef0ba802ff85c4ebf811197e9b5a57c9c8fbb4d4d20f77974","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"df5fdb65d1ca765ce739e3f0b71126a6db1c3e8cb3b09c41fdb4fb6a5dff7fd5de7348432a3ad7c38b2ed47fb89e2c73ad92ceffd916e07999b9e12a406f0c36","tags":[]}] +[14:38:11.870] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:05Z","created_at":1759430270,"id":"8ebe4700110b042ed95adf28e8c37eb132d4b365aa8884cf5baf41d7efd49f58","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1f3ff2871f7c4dd2a4a292294366ee334aa905527353fe6b80743ad93d547d82292f92487819a42bec2c8309c1724d57c7a07000d18800eca6679b57f83be06e","tags":[]}] +[14:38:11.931] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:37:20Z","created_at":1759430267,"id":"a084ecbfc3988c0579b9d13aad886c03324ed78a8e11658a143f93401cbd85d4","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"5e9a90d95201b54a4471d93becfb1f39c94c16885761a607845c07e7b7ee18a58a1d12087b3c5dae0e63252cd11ca568e6736a8e1a1311267789d35b711becb7","tags":[]}] +[14:38:11.991] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yes the tranny has a point\n\nI bet you a fair number of right wing men who are obsessed with trannies (the ones that supposedly hate them) secretly have a kink for them and would be easily seduced by this piece","created_at":1759430265,"id":"a7ee05b2119d3a2289cf9d7cecaa8d51d941ffef9d13a89f1af2f544c169ade6","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"822c1a163acb0fbdffee7e3d381403911a9d6d0826218af648c9f63d2d22d14eeed8763cf35c0cd14e1d3a7aa55ff809bf202f7126bbef5810505387cd6de224","tags":[["e","447811c2992f86177c7e4ffcd12c81a306b70ab5b3b2ffcf7e682247aa002d08","wss://nos.lol","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:38:12.052] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:29Z","created_at":1759430260,"id":"199fd14e7b9708a3126c1be4d4a08bc11e74a7fc766f1a172710a19ea973503f","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"62816d48b077030087484b0dc4af5e7b3bf650804bf8382217f1e8cbc618c519f9f80418ea1faa06f0cfff9856960e96a64be76c41eabbc04163a9700a9a8ce1","tags":[]}] +[14:38:12.112] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:38:12.173] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_ord\",\"display_name\":\"AirportStatusBot (ORD)\",\"about\":\"This is a social media bot that will post delay information for Chicago O'Hare International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"d4b34185bbe124e7d06ebe378124f1ff96a6f48eb273fd5b40c71fe7d8bd1889","kind":0,"pubkey":"78daf7c1b4007c7ef80d89252f4afd9e290d52ae55807f4065a704359663c620","sig":"e3c086030d8f7282443310c7abe30c2f0bc1126501f00186994818755687f0822bec0d88c1b6e0dad736f57ce8b951a12a9ea6e2863050dae1f7194ada8ae966","tags":[]}] +[14:38:12.234] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_atl\",\"display_name\":\"AirportStatusBot (ATL)\",\"about\":\"This is a social media bot that will post delay information for Atlanta Hartsfield-Jackson International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"ef362ef7c20c5ae255795a869fccba8de6898d892af7b011d252c0c628422423","kind":0,"pubkey":"eafef7ceb365bb4fa98f24c49163d46f17045bc42120e042b3372be3422b960b","sig":"e878b1d697cf390a11fa94a88d9571065b37bb88e0ec5aa673bbb43e64d3c752a0f85bdf2a785848dd4ba77d26868bb4f6365e2766163c96fcbc4bc6a308e866","tags":[]}] +[14:38:12.294] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_den\",\"display_name\":\"AirportStatusBot (DEN)\",\"about\":\"This is a social media bot that will post delay information for Denver International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"07d3a1450f894d4ff035fa11d2faf68cb8849e622a1b0cf622638f6b55857672","kind":0,"pubkey":"6e66f79b69b1831a25755b825689d37e9d5cbd68b77546cb80803ad8232e850a","sig":"8002faf42fd916c4f6650f80f7ab94ecb393da5c026da9321959fa50473d90076e2e0787812df10ee7f17aaa994f644bdc1f9d7bed5e53d51f41b5008eca64ef","tags":[]}] +[14:38:12.355] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_lax\",\"display_name\":\"AirportStatusBot (LAX)\",\"about\":\"This is a social media bot that will post delay information for Los Angeles International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"8a68a5cb3d417b8183f722add020210feaaaa78b0c848f57ac1579a1b11b5995","kind":0,"pubkey":"ff4cf7c72c73c106237c84501f7c53c8a46c986c8129852c73ad620ed69f43c2","sig":"55f657d4c1d722af988f5e893f2cf77aec4afcc2e585d723fcfc1ce85018c705897ad6ea3991eaa320f7f061990d7ef62c1229b4fdc9a4bca0ce9881f43bd3e5","tags":[]}] +[14:38:12.416] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_dfw\",\"display_name\":\"AirportStatusBot (DFW)\",\"about\":\"This is a social media bot that will post delay information for Dallas/Fort Worth International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"c00accc6c9b933e913a80ef89a40ec3ed3e311a9aecb5f3340cd93b0df736825","kind":0,"pubkey":"6a5cf7b9d9d517ba601021d29a0c038f6f65ba74deb744a5d1ac267a4adf997a","sig":"0bae81e0cda6da003dd69de745e1bc53359481df74f7379ec4ebe346952efd36112eab5feb6af6a7ca5f0cc285904ad6ed46785916560fe847160e0669e85ec3","tags":[]}] +[14:38:12.476] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"4c818b7aa178985ffb1bba8a62c2597dd17447c1d26b63eca08b5f8cdc0c4177","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"a9867b9f3c36562e3c442e36f939c5b88310712c9c930b0c06144cd75b0434f7154fd1fd40d29e6b94a9b8c1a34cb3cfc8b60cdbea7a9b01dc3637e93d57f185","tags":[]}] +[14:38:12.537] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot\",\"display_name\":\"AirportStatusBot\",\"about\":\"This is a social media bot that will post delay information for airports in the United States.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"b55632a33e6cf8c2850eeeac816f19e23f09add70dc1e87026539b813c51f2ed","kind":0,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"f6484554cb4de723e4c020d11f9beb2659db7805345b24fbcbad52492ee3ce6f5c31aa056a36b1504ef05ec75ad4e6889f6b41481001427c2f4051d937ae4aa1","tags":[]}] +[14:38:12.598] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Dan the 3D Printing Dad\",\"about\":\"Christian, dedicated husband & father, programmer, creative guy, and full-time geek. My posts are my own and not representative of my employer.\\n\\nALT: profile picture is an abstract, line-art representation of the account owner's head.\\n\\nProfile banner is a photograph of a 3D printed cartoon-styled raccoon positioned next to a pear.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/108/198/016/866/489/837/original/f89777bbfb30b4a6.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/108/198/016/866/489/837/original/ae55daa2eccb45ac.jpeg\",\"nip05\":\"3DPrintingDad@fosstodon-org.mostr.pub\",\"fields\":[[\"Twitter\",\"https://twitter.com/MrCarefulGamer\"],[\"Printables.com\",\"https://www.printables.com/@Danthe3DPrintingDad\"],[\"Plushie parent of\",\"@SnowballTheBun@plushies.social\"],[\"Twitch\",\"https://www.twitch.tv/twitchplacidcat\"]]}","created_at":1759430260,"id":"ad25cd8582e8b60cc42e4c6c447e151660b6fd2aa732df4ba3ad9f8a9134c7c5","kind":0,"pubkey":"1b3dcd948ebf062fd0ae7c64d0775e724e336a3bf6ce2583f53043cb16979a4a","sig":"cc4cbf3e8d31d8a1d24f918303871407905ff73e0badb8e9d3d1d4193e8ba2e21185aaa56f812bf5c0d7398343b8f6fb07f6e9a73b7bc64366a5799f5da3b4bc","tags":[["proxy","https://fosstodon.org/users/3DPrintingDad","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:12.658] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:38:12.719] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:12.779] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:38:13.107] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:38:13.349] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:38:14.376] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:38:14.860] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:38:15.102] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:38:15.585] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:38:15.827] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:38:16.250] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:38:16.794] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:38:17.096] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:38:17.948] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:38:17.948] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:38:17.948] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:38:17.948] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:38:18.249] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇫🇷🇪🇺 PROTESTOS NA FRANÇA CONTRA CORTES DE GASTOS\n\nMilhares protestam na França contra cortes de gastos públicos. Macron deve nomear novo governo neste fim de semana.\nhttps://files.catbox.moe/ykcanh.jpg","created_at":1759430286,"id":"3495b48d17c80977159a5be49763d00b55c90a4131abf5d99452751e5c157ccd","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"8a0ea28226dbe07541fd72dbb94737fc8648391c49aec4ab9317c81055687a2848dbe807d9bb248621c879f8b11e100f1497499424eacaae585e772caaaee9c8","tags":[["image","https://files.catbox.moe/ykcanh.jpg"]]}] +[14:38:18.310] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I dont own a guardians hat.\nGo tribe! Bring back chief wahoo\nhttps://i.nostr.build/Qe412WCHeCYCvDgG.jpg","created_at":1759430280,"id":"442ca5441f236c6406e950ea69f2d429a0cc7e8e9465f12e2a738fe715a6112d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"a3b1bbb3edbf6ee161d27f64d594b2eb279d9334074f30432e46282c5ec517a5260d5161b80ec21a5146ac1d1db44f88e1a49736961a96421a778358ed4a96e3","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["e","f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23"],["e","2f6c4eb99edb947ceb1943498a5ef5350b1fae65b2330e2457d8179271f35a4c","","reply"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://i.nostr.build/Qe412WCHeCYCvDgG.jpg"],["imeta","url https://i.nostr.build/Qe412WCHeCYCvDgG.jpg","x 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","size 49911","m image/jpeg","dim 783x1174","blurhash ^UD]PQIUx]xaxabb_NWBs.t7j[oL?bNGS2RjR*WBtRaejFRjWBWBaexuRQofWBofjsf+R+WBs:oeRjj[ayV[ofayV@j@oLjZa|oekCRjt7j[aykB","ox 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","alt "]]}] +[14:38:18.370] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:36:59Z","created_at":1759430280,"id":"3d802deb8aff6cda2c2d07ce8bb7f7d3dee1aeddd50ca63dcb17d4f7d98b4b95","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"a7b70707d09675ec486d7082fa9a954d161fbc96fe99079947df67926b36c50ab4b6e1498fd90341ca646bd077d9be7509bd3e127c5a714630766ac38c6b1439","tags":[]}] +[14:38:18.431] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:37:26Z","created_at":1759430276,"id":"6a319cbf8521899b99b2f0aba509c2d84f0b779008b8ec1b69057cf723fad119","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"ba3035313500ef2325cc0b2562f4ea19c9d07cebd8edf61a7576ee02aca2a6a788a7a0260f0972d5d589f7a77257548bbbdb9b91b65ae85ce740d6abcd960333","tags":[]}] +[14:38:18.491] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"congrats auntie 💜🫂","created_at":1759430273,"id":"5369e72e6e21eeffb27f56b4c1ddeb48035f6d716a0b1955202d3b2b6aaa3beb","kind":1,"pubkey":"d60397e8a390b41dd17551b04be27ad26831beb6d55a98a1f14d94ec2fe3fde0","sig":"11bb3ee271e3ebe1ee959d6d6c2678b32c8a47fb27f86f102e5ada5e2f3568185e928e6efcc44cb7143806cbd5a0559e9291648a9eb87af341c114bed8eae0a3","tags":[["e","49fc8dc3c774e76e111b9d48ae4dac827fcc0413d25a6330133d04d733fefe73","","root"],["p","9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7"]]}] +[14:38:18.552] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:36:56Z","created_at":1759430273,"id":"40f337fc272c39bef0ba802ff85c4ebf811197e9b5a57c9c8fbb4d4d20f77974","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"df5fdb65d1ca765ce739e3f0b71126a6db1c3e8cb3b09c41fdb4fb6a5dff7fd5de7348432a3ad7c38b2ed47fb89e2c73ad92ceffd916e07999b9e12a406f0c36","tags":[]}] +[14:38:18.612] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:05Z","created_at":1759430270,"id":"8ebe4700110b042ed95adf28e8c37eb132d4b365aa8884cf5baf41d7efd49f58","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1f3ff2871f7c4dd2a4a292294366ee334aa905527353fe6b80743ad93d547d82292f92487819a42bec2c8309c1724d57c7a07000d18800eca6679b57f83be06e","tags":[]}] +[14:38:18.673] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:37:20Z","created_at":1759430267,"id":"a084ecbfc3988c0579b9d13aad886c03324ed78a8e11658a143f93401cbd85d4","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"5e9a90d95201b54a4471d93becfb1f39c94c16885761a607845c07e7b7ee18a58a1d12087b3c5dae0e63252cd11ca568e6736a8e1a1311267789d35b711becb7","tags":[]}] +[14:38:18.733] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yes the tranny has a point\n\nI bet you a fair number of right wing men who are obsessed with trannies (the ones that supposedly hate them) secretly have a kink for them and would be easily seduced by this piece","created_at":1759430265,"id":"a7ee05b2119d3a2289cf9d7cecaa8d51d941ffef9d13a89f1af2f544c169ade6","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"822c1a163acb0fbdffee7e3d381403911a9d6d0826218af648c9f63d2d22d14eeed8763cf35c0cd14e1d3a7aa55ff809bf202f7126bbef5810505387cd6de224","tags":[["e","447811c2992f86177c7e4ffcd12c81a306b70ab5b3b2ffcf7e682247aa002d08","wss://nos.lol","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:38:18.794] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:29Z","created_at":1759430260,"id":"199fd14e7b9708a3126c1be4d4a08bc11e74a7fc766f1a172710a19ea973503f","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"62816d48b077030087484b0dc4af5e7b3bf650804bf8382217f1e8cbc618c519f9f80418ea1faa06f0cfff9856960e96a64be76c41eabbc04163a9700a9a8ce1","tags":[]}] +[14:38:18.854] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:38:18.915] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_ord\",\"display_name\":\"AirportStatusBot (ORD)\",\"about\":\"This is a social media bot that will post delay information for Chicago O'Hare International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"d4b34185bbe124e7d06ebe378124f1ff96a6f48eb273fd5b40c71fe7d8bd1889","kind":0,"pubkey":"78daf7c1b4007c7ef80d89252f4afd9e290d52ae55807f4065a704359663c620","sig":"e3c086030d8f7282443310c7abe30c2f0bc1126501f00186994818755687f0822bec0d88c1b6e0dad736f57ce8b951a12a9ea6e2863050dae1f7194ada8ae966","tags":[]}] +[14:38:18.976] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_atl\",\"display_name\":\"AirportStatusBot (ATL)\",\"about\":\"This is a social media bot that will post delay information for Atlanta Hartsfield-Jackson International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"ef362ef7c20c5ae255795a869fccba8de6898d892af7b011d252c0c628422423","kind":0,"pubkey":"eafef7ceb365bb4fa98f24c49163d46f17045bc42120e042b3372be3422b960b","sig":"e878b1d697cf390a11fa94a88d9571065b37bb88e0ec5aa673bbb43e64d3c752a0f85bdf2a785848dd4ba77d26868bb4f6365e2766163c96fcbc4bc6a308e866","tags":[]}] +[14:38:19.036] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_den\",\"display_name\":\"AirportStatusBot (DEN)\",\"about\":\"This is a social media bot that will post delay information for Denver International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"07d3a1450f894d4ff035fa11d2faf68cb8849e622a1b0cf622638f6b55857672","kind":0,"pubkey":"6e66f79b69b1831a25755b825689d37e9d5cbd68b77546cb80803ad8232e850a","sig":"8002faf42fd916c4f6650f80f7ab94ecb393da5c026da9321959fa50473d90076e2e0787812df10ee7f17aaa994f644bdc1f9d7bed5e53d51f41b5008eca64ef","tags":[]}] +[14:38:19.097] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_lax\",\"display_name\":\"AirportStatusBot (LAX)\",\"about\":\"This is a social media bot that will post delay information for Los Angeles International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"8a68a5cb3d417b8183f722add020210feaaaa78b0c848f57ac1579a1b11b5995","kind":0,"pubkey":"ff4cf7c72c73c106237c84501f7c53c8a46c986c8129852c73ad620ed69f43c2","sig":"55f657d4c1d722af988f5e893f2cf77aec4afcc2e585d723fcfc1ce85018c705897ad6ea3991eaa320f7f061990d7ef62c1229b4fdc9a4bca0ce9881f43bd3e5","tags":[]}] +[14:38:19.157] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_dfw\",\"display_name\":\"AirportStatusBot (DFW)\",\"about\":\"This is a social media bot that will post delay information for Dallas/Fort Worth International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"c00accc6c9b933e913a80ef89a40ec3ed3e311a9aecb5f3340cd93b0df736825","kind":0,"pubkey":"6a5cf7b9d9d517ba601021d29a0c038f6f65ba74deb744a5d1ac267a4adf997a","sig":"0bae81e0cda6da003dd69de745e1bc53359481df74f7379ec4ebe346952efd36112eab5feb6af6a7ca5f0cc285904ad6ed46785916560fe847160e0669e85ec3","tags":[]}] +[14:38:19.218] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"4c818b7aa178985ffb1bba8a62c2597dd17447c1d26b63eca08b5f8cdc0c4177","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"a9867b9f3c36562e3c442e36f939c5b88310712c9c930b0c06144cd75b0434f7154fd1fd40d29e6b94a9b8c1a34cb3cfc8b60cdbea7a9b01dc3637e93d57f185","tags":[]}] +[14:38:19.278] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot\",\"display_name\":\"AirportStatusBot\",\"about\":\"This is a social media bot that will post delay information for airports in the United States.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"b55632a33e6cf8c2850eeeac816f19e23f09add70dc1e87026539b813c51f2ed","kind":0,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"f6484554cb4de723e4c020d11f9beb2659db7805345b24fbcbad52492ee3ce6f5c31aa056a36b1504ef05ec75ad4e6889f6b41481001427c2f4051d937ae4aa1","tags":[]}] +[14:38:19.339] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Dan the 3D Printing Dad\",\"about\":\"Christian, dedicated husband & father, programmer, creative guy, and full-time geek. My posts are my own and not representative of my employer.\\n\\nALT: profile picture is an abstract, line-art representation of the account owner's head.\\n\\nProfile banner is a photograph of a 3D printed cartoon-styled raccoon positioned next to a pear.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/108/198/016/866/489/837/original/f89777bbfb30b4a6.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/108/198/016/866/489/837/original/ae55daa2eccb45ac.jpeg\",\"nip05\":\"3DPrintingDad@fosstodon-org.mostr.pub\",\"fields\":[[\"Twitter\",\"https://twitter.com/MrCarefulGamer\"],[\"Printables.com\",\"https://www.printables.com/@Danthe3DPrintingDad\"],[\"Plushie parent of\",\"@SnowballTheBun@plushies.social\"],[\"Twitch\",\"https://www.twitch.tv/twitchplacidcat\"]]}","created_at":1759430260,"id":"ad25cd8582e8b60cc42e4c6c447e151660b6fd2aa732df4ba3ad9f8a9134c7c5","kind":0,"pubkey":"1b3dcd948ebf062fd0ae7c64d0775e724e336a3bf6ce2583f53043cb16979a4a","sig":"cc4cbf3e8d31d8a1d24f918303871407905ff73e0badb8e9d3d1d4193e8ba2e21185aaa56f812bf5c0d7398343b8f6fb07f6e9a73b7bc64366a5799f5da3b4bc","tags":[["proxy","https://fosstodon.org/users/3DPrintingDad","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:19.399] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:38:19.460] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:19.521] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:38:19.884] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:38:20.125] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:38:21.151] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:38:21.635] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:38:21.876] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:38:22.359] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:38:22.600] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:38:23.023] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:38:23.532] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:38:23.834] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:38:24.695] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:38:24.695] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:38:24.695] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:38:24.695] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:38:24.847] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nevent1qgs982g78fjdrajcaxp6c8j0ncxxjlu0x0spmr0tusulfsdfyyfltyspzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtcpz4mhxue69uhhyetvv9ujummvv9ejuctswqhsqgqzlv4f7ajleqt9a5ur8w64s0ys9zrl95v54fqcurtvyuu7cfu03vcxckrc","created_at":1759430298,"id":"083f92e7e5e30db3a2c1f68721efbddc72ca598fb9153dc7087717bf50513156","kind":1,"pubkey":"53a91e3a64d1f658e983ac1e4f9e0c697f8f33e01d8debe439f4c1a92113f592","sig":"e8d113ca442802156b3b0360931b028ecf4e5ba4c5f905423a6c4e611ed4c9853fca82c441e671fcf2e314ce70c9452596dc393a29d9e202664ff8718085faf2","tags":[["q","02fb2a9f765fc8165ed3833bb5583c902887f2d194aa418e0d6c2739ec278f8b","","mention"],["p","53a91e3a64d1f658e983ac1e4f9e0c697f8f33e01d8debe439f4c1a92113f592"],["client","olas","31990:fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52:1731850618505"]]}] +[14:38:24.908] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsfrjd9ux5hgsg5cmlz6cdwfh5zv2024g8m2t6g9zqf83l8uqm0svspp4mhxue69uhkummn9ekx7mqpr3mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmqqzqhqe 😘🔥🤘🤘 \n\n","created_at":1759430297,"id":"f67faf4345bad4bf5ff6e2271b95be194ef3f2b14b46a5940d8ab585e2d1991b","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"9cce89eee7c2cb6fe44372cc73f26f4330d605ce4931cca8044ea69ffa154d88ed93164a14af7995b4420acb7f7c2f58cf28f006e6d6c2718aa3eec30a7cab08","tags":[["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832","wss://nos.lol","mention"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","wss://relay.primal.net"],["e","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","wss://relay.primal.net","root","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"]]}] +[14:38:24.999] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇫🇷🇪🇺 PROTESTOS NA FRANÇA CONTRA CORTES DE GASTOS\n\nMilhares protestam na França contra cortes de gastos públicos. Macron deve nomear novo governo neste fim de semana.\nhttps://files.catbox.moe/ykcanh.jpg","created_at":1759430286,"id":"3495b48d17c80977159a5be49763d00b55c90a4131abf5d99452751e5c157ccd","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"8a0ea28226dbe07541fd72dbb94737fc8648391c49aec4ab9317c81055687a2848dbe807d9bb248621c879f8b11e100f1497499424eacaae585e772caaaee9c8","tags":[["image","https://files.catbox.moe/ykcanh.jpg"]]}] +[14:38:25.060] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I dont own a guardians hat.\nGo tribe! Bring back chief wahoo\nhttps://i.nostr.build/Qe412WCHeCYCvDgG.jpg","created_at":1759430280,"id":"442ca5441f236c6406e950ea69f2d429a0cc7e8e9465f12e2a738fe715a6112d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"a3b1bbb3edbf6ee161d27f64d594b2eb279d9334074f30432e46282c5ec517a5260d5161b80ec21a5146ac1d1db44f88e1a49736961a96421a778358ed4a96e3","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["e","f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23"],["e","2f6c4eb99edb947ceb1943498a5ef5350b1fae65b2330e2457d8179271f35a4c","","reply"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://i.nostr.build/Qe412WCHeCYCvDgG.jpg"],["imeta","url https://i.nostr.build/Qe412WCHeCYCvDgG.jpg","x 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","size 49911","m image/jpeg","dim 783x1174","blurhash ^UD]PQIUx]xaxabb_NWBs.t7j[oL?bNGS2RjR*WBtRaejFRjWBWBaexuRQofWBofjsf+R+WBs:oeRjj[ayV[ofayV@j@oLjZa|oekCRjt7j[aykB","ox 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","alt "]]}] +[14:38:25.120] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:36:59Z","created_at":1759430280,"id":"3d802deb8aff6cda2c2d07ce8bb7f7d3dee1aeddd50ca63dcb17d4f7d98b4b95","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"a7b70707d09675ec486d7082fa9a954d161fbc96fe99079947df67926b36c50ab4b6e1498fd90341ca646bd077d9be7509bd3e127c5a714630766ac38c6b1439","tags":[]}] +[14:38:25.181] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:37:26Z","created_at":1759430276,"id":"6a319cbf8521899b99b2f0aba509c2d84f0b779008b8ec1b69057cf723fad119","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"ba3035313500ef2325cc0b2562f4ea19c9d07cebd8edf61a7576ee02aca2a6a788a7a0260f0972d5d589f7a77257548bbbdb9b91b65ae85ce740d6abcd960333","tags":[]}] +[14:38:25.241] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"congrats auntie 💜🫂","created_at":1759430273,"id":"5369e72e6e21eeffb27f56b4c1ddeb48035f6d716a0b1955202d3b2b6aaa3beb","kind":1,"pubkey":"d60397e8a390b41dd17551b04be27ad26831beb6d55a98a1f14d94ec2fe3fde0","sig":"11bb3ee271e3ebe1ee959d6d6c2678b32c8a47fb27f86f102e5ada5e2f3568185e928e6efcc44cb7143806cbd5a0559e9291648a9eb87af341c114bed8eae0a3","tags":[["e","49fc8dc3c774e76e111b9d48ae4dac827fcc0413d25a6330133d04d733fefe73","","root"],["p","9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7"]]}] +[14:38:25.302] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:36:56Z","created_at":1759430273,"id":"40f337fc272c39bef0ba802ff85c4ebf811197e9b5a57c9c8fbb4d4d20f77974","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"df5fdb65d1ca765ce739e3f0b71126a6db1c3e8cb3b09c41fdb4fb6a5dff7fd5de7348432a3ad7c38b2ed47fb89e2c73ad92ceffd916e07999b9e12a406f0c36","tags":[]}] +[14:38:25.362] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:05Z","created_at":1759430270,"id":"8ebe4700110b042ed95adf28e8c37eb132d4b365aa8884cf5baf41d7efd49f58","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1f3ff2871f7c4dd2a4a292294366ee334aa905527353fe6b80743ad93d547d82292f92487819a42bec2c8309c1724d57c7a07000d18800eca6679b57f83be06e","tags":[]}] +[14:38:25.423] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:37:20Z","created_at":1759430267,"id":"a084ecbfc3988c0579b9d13aad886c03324ed78a8e11658a143f93401cbd85d4","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"5e9a90d95201b54a4471d93becfb1f39c94c16885761a607845c07e7b7ee18a58a1d12087b3c5dae0e63252cd11ca568e6736a8e1a1311267789d35b711becb7","tags":[]}] +[14:38:25.483] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:38:25.544] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"41402-nyan\",\"about\":\"English: rwx\\nRussian: rwx\\nKazakh: r--\\nI'm dude. Born in 1997. Currently maintaining Xash3D FWGS game engine. he/him/any\\nAvatar :src: https://www.bilibili.com/opus/1112401013643411465\\nFollow requests are subject of a vibe Czech.\",\"picture\":\"https://media.suya.place/media/7a276c7d2db6c497921c78479c229bde1b4ba45acf3d152a27e420db30310bbc.jpg\",\"banner\":\"https://suya.place/media/3698a7db091083b9227ea976c990255b69f20e0f978a57ee15e77342064533fb.gif\",\"nip05\":\"a1ba@suya-place.mostr.pub\",\"fields\":[[\"Lockedposting \",\"@a1ba@pleromashit.nexus\"],[\"Xashposting\",\"@a1ba@idtech.space \"],[\"GPG\",\"https://share.mentality.rip/pub/a1ba.gpg\"],[\"GPG fingerprint\",\"D7CF2696DD8C157F32D1F46515B44538C9C71CD0\"]]}","created_at":1759430302,"id":"07f40fe53cd1079acf6361b3d48b7e338a5194cb08ef3fb7e255adbafa1e6ba4","kind":0,"pubkey":"288059249d3068d2994e16ca1aa07ec4db75f434042952e536305c8ea1ce16a9","sig":"55c0d9cdc88ad0db43e8bed19805816a0d92110aa8f9aa54882a8c56dcdf1e3bb18565fe3640aad2440881190b8ad95186d999eb98dd8c07e4fc003abd10fe37","tags":[["emoji","src","https://suya.place/emoji/custom/source.jpg"],["proxy","https://suya.place/users/a1ba","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:25.605] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_ord\",\"display_name\":\"AirportStatusBot (ORD)\",\"about\":\"This is a social media bot that will post delay information for Chicago O'Hare International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"d4b34185bbe124e7d06ebe378124f1ff96a6f48eb273fd5b40c71fe7d8bd1889","kind":0,"pubkey":"78daf7c1b4007c7ef80d89252f4afd9e290d52ae55807f4065a704359663c620","sig":"e3c086030d8f7282443310c7abe30c2f0bc1126501f00186994818755687f0822bec0d88c1b6e0dad736f57ce8b951a12a9ea6e2863050dae1f7194ada8ae966","tags":[]}] +[14:38:25.665] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_atl\",\"display_name\":\"AirportStatusBot (ATL)\",\"about\":\"This is a social media bot that will post delay information for Atlanta Hartsfield-Jackson International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"ef362ef7c20c5ae255795a869fccba8de6898d892af7b011d252c0c628422423","kind":0,"pubkey":"eafef7ceb365bb4fa98f24c49163d46f17045bc42120e042b3372be3422b960b","sig":"e878b1d697cf390a11fa94a88d9571065b37bb88e0ec5aa673bbb43e64d3c752a0f85bdf2a785848dd4ba77d26868bb4f6365e2766163c96fcbc4bc6a308e866","tags":[]}] +[14:38:25.726] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_den\",\"display_name\":\"AirportStatusBot (DEN)\",\"about\":\"This is a social media bot that will post delay information for Denver International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"07d3a1450f894d4ff035fa11d2faf68cb8849e622a1b0cf622638f6b55857672","kind":0,"pubkey":"6e66f79b69b1831a25755b825689d37e9d5cbd68b77546cb80803ad8232e850a","sig":"8002faf42fd916c4f6650f80f7ab94ecb393da5c026da9321959fa50473d90076e2e0787812df10ee7f17aaa994f644bdc1f9d7bed5e53d51f41b5008eca64ef","tags":[]}] +[14:38:25.786] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_lax\",\"display_name\":\"AirportStatusBot (LAX)\",\"about\":\"This is a social media bot that will post delay information for Los Angeles International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"8a68a5cb3d417b8183f722add020210feaaaa78b0c848f57ac1579a1b11b5995","kind":0,"pubkey":"ff4cf7c72c73c106237c84501f7c53c8a46c986c8129852c73ad620ed69f43c2","sig":"55f657d4c1d722af988f5e893f2cf77aec4afcc2e585d723fcfc1ce85018c705897ad6ea3991eaa320f7f061990d7ef62c1229b4fdc9a4bca0ce9881f43bd3e5","tags":[]}] +[14:38:25.847] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_dfw\",\"display_name\":\"AirportStatusBot (DFW)\",\"about\":\"This is a social media bot that will post delay information for Dallas/Fort Worth International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"c00accc6c9b933e913a80ef89a40ec3ed3e311a9aecb5f3340cd93b0df736825","kind":0,"pubkey":"6a5cf7b9d9d517ba601021d29a0c038f6f65ba74deb744a5d1ac267a4adf997a","sig":"0bae81e0cda6da003dd69de745e1bc53359481df74f7379ec4ebe346952efd36112eab5feb6af6a7ca5f0cc285904ad6ed46785916560fe847160e0669e85ec3","tags":[]}] +[14:38:25.907] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"4c818b7aa178985ffb1bba8a62c2597dd17447c1d26b63eca08b5f8cdc0c4177","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"a9867b9f3c36562e3c442e36f939c5b88310712c9c930b0c06144cd75b0434f7154fd1fd40d29e6b94a9b8c1a34cb3cfc8b60cdbea7a9b01dc3637e93d57f185","tags":[]}] +[14:38:25.968] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot\",\"display_name\":\"AirportStatusBot\",\"about\":\"This is a social media bot that will post delay information for airports in the United States.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"b55632a33e6cf8c2850eeeac816f19e23f09add70dc1e87026539b813c51f2ed","kind":0,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"f6484554cb4de723e4c020d11f9beb2659db7805345b24fbcbad52492ee3ce6f5c31aa056a36b1504ef05ec75ad4e6889f6b41481001427c2f4051d937ae4aa1","tags":[]}] +[14:38:26.029] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Dan the 3D Printing Dad\",\"about\":\"Christian, dedicated husband & father, programmer, creative guy, and full-time geek. My posts are my own and not representative of my employer.\\n\\nALT: profile picture is an abstract, line-art representation of the account owner's head.\\n\\nProfile banner is a photograph of a 3D printed cartoon-styled raccoon positioned next to a pear.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/108/198/016/866/489/837/original/f89777bbfb30b4a6.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/108/198/016/866/489/837/original/ae55daa2eccb45ac.jpeg\",\"nip05\":\"3DPrintingDad@fosstodon-org.mostr.pub\",\"fields\":[[\"Twitter\",\"https://twitter.com/MrCarefulGamer\"],[\"Printables.com\",\"https://www.printables.com/@Danthe3DPrintingDad\"],[\"Plushie parent of\",\"@SnowballTheBun@plushies.social\"],[\"Twitch\",\"https://www.twitch.tv/twitchplacidcat\"]]}","created_at":1759430260,"id":"ad25cd8582e8b60cc42e4c6c447e151660b6fd2aa732df4ba3ad9f8a9134c7c5","kind":0,"pubkey":"1b3dcd948ebf062fd0ae7c64d0775e724e336a3bf6ce2583f53043cb16979a4a","sig":"cc4cbf3e8d31d8a1d24f918303871407905ff73e0badb8e9d3d1d4193e8ba2e21185aaa56f812bf5c0d7398343b8f6fb07f6e9a73b7bc64366a5799f5da3b4bc","tags":[["proxy","https://fosstodon.org/users/3DPrintingDad","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:26.089] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:38:26.149] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:38:26.512] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:38:26.753] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:38:27.780] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:38:28.229] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:38:28.470] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:38:28.954] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:38:29.196] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:38:29.619] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:38:30.162] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:38:30.464] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:38:31.322] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:38:31.322] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:38:31.322] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:38:31.322] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:38:31.474] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nevent1qgs982g78fjdrajcaxp6c8j0ncxxjlu0x0spmr0tusulfsdfyyfltyspzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtcpz4mhxue69uhhyetvv9ujummvv9ejuctswqhsqgqzlv4f7ajleqt9a5ur8w64s0ys9zrl95v54fqcurtvyuu7cfu03vcxckrc","created_at":1759430298,"id":"083f92e7e5e30db3a2c1f68721efbddc72ca598fb9153dc7087717bf50513156","kind":1,"pubkey":"53a91e3a64d1f658e983ac1e4f9e0c697f8f33e01d8debe439f4c1a92113f592","sig":"e8d113ca442802156b3b0360931b028ecf4e5ba4c5f905423a6c4e611ed4c9853fca82c441e671fcf2e314ce70c9452596dc393a29d9e202664ff8718085faf2","tags":[["q","02fb2a9f765fc8165ed3833bb5583c902887f2d194aa418e0d6c2739ec278f8b","","mention"],["p","53a91e3a64d1f658e983ac1e4f9e0c697f8f33e01d8debe439f4c1a92113f592"],["client","olas","31990:fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52:1731850618505"]]}] +[14:38:31.534] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsfrjd9ux5hgsg5cmlz6cdwfh5zv2024g8m2t6g9zqf83l8uqm0svspp4mhxue69uhkummn9ekx7mqpr3mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmqqzqhqe 😘🔥🤘🤘 \n\n","created_at":1759430297,"id":"f67faf4345bad4bf5ff6e2271b95be194ef3f2b14b46a5940d8ab585e2d1991b","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"9cce89eee7c2cb6fe44372cc73f26f4330d605ce4931cca8044ea69ffa154d88ed93164a14af7995b4420acb7f7c2f58cf28f006e6d6c2718aa3eec30a7cab08","tags":[["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832","wss://nos.lol","mention"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","wss://relay.primal.net"],["e","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","wss://relay.primal.net","root","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"]]}] +[14:38:31.595] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇫🇷🇪🇺 PROTESTOS NA FRANÇA CONTRA CORTES DE GASTOS\n\nMilhares protestam na França contra cortes de gastos públicos. Macron deve nomear novo governo neste fim de semana.\nhttps://files.catbox.moe/ykcanh.jpg","created_at":1759430286,"id":"3495b48d17c80977159a5be49763d00b55c90a4131abf5d99452751e5c157ccd","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"8a0ea28226dbe07541fd72dbb94737fc8648391c49aec4ab9317c81055687a2848dbe807d9bb248621c879f8b11e100f1497499424eacaae585e772caaaee9c8","tags":[["image","https://files.catbox.moe/ykcanh.jpg"]]}] +[14:38:31.656] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I dont own a guardians hat.\nGo tribe! Bring back chief wahoo\nhttps://i.nostr.build/Qe412WCHeCYCvDgG.jpg","created_at":1759430280,"id":"442ca5441f236c6406e950ea69f2d429a0cc7e8e9465f12e2a738fe715a6112d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"a3b1bbb3edbf6ee161d27f64d594b2eb279d9334074f30432e46282c5ec517a5260d5161b80ec21a5146ac1d1db44f88e1a49736961a96421a778358ed4a96e3","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["e","f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23"],["e","2f6c4eb99edb947ceb1943498a5ef5350b1fae65b2330e2457d8179271f35a4c","","reply"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://i.nostr.build/Qe412WCHeCYCvDgG.jpg"],["imeta","url https://i.nostr.build/Qe412WCHeCYCvDgG.jpg","x 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","size 49911","m image/jpeg","dim 783x1174","blurhash ^UD]PQIUx]xaxabb_NWBs.t7j[oL?bNGS2RjR*WBtRaejFRjWBWBaexuRQofWBofjsf+R+WBs:oeRjj[ayV[ofayV@j@oLjZa|oekCRjt7j[aykB","ox 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","alt "]]}] +[14:38:31.716] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:36:59Z","created_at":1759430280,"id":"3d802deb8aff6cda2c2d07ce8bb7f7d3dee1aeddd50ca63dcb17d4f7d98b4b95","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"a7b70707d09675ec486d7082fa9a954d161fbc96fe99079947df67926b36c50ab4b6e1498fd90341ca646bd077d9be7509bd3e127c5a714630766ac38c6b1439","tags":[]}] +[14:38:31.777] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:37:26Z","created_at":1759430276,"id":"6a319cbf8521899b99b2f0aba509c2d84f0b779008b8ec1b69057cf723fad119","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"ba3035313500ef2325cc0b2562f4ea19c9d07cebd8edf61a7576ee02aca2a6a788a7a0260f0972d5d589f7a77257548bbbdb9b91b65ae85ce740d6abcd960333","tags":[]}] +[14:38:31.837] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"congrats auntie 💜🫂","created_at":1759430273,"id":"5369e72e6e21eeffb27f56b4c1ddeb48035f6d716a0b1955202d3b2b6aaa3beb","kind":1,"pubkey":"d60397e8a390b41dd17551b04be27ad26831beb6d55a98a1f14d94ec2fe3fde0","sig":"11bb3ee271e3ebe1ee959d6d6c2678b32c8a47fb27f86f102e5ada5e2f3568185e928e6efcc44cb7143806cbd5a0559e9291648a9eb87af341c114bed8eae0a3","tags":[["e","49fc8dc3c774e76e111b9d48ae4dac827fcc0413d25a6330133d04d733fefe73","","root"],["p","9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7"]]}] +[14:38:31.898] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:36:56Z","created_at":1759430273,"id":"40f337fc272c39bef0ba802ff85c4ebf811197e9b5a57c9c8fbb4d4d20f77974","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"df5fdb65d1ca765ce739e3f0b71126a6db1c3e8cb3b09c41fdb4fb6a5dff7fd5de7348432a3ad7c38b2ed47fb89e2c73ad92ceffd916e07999b9e12a406f0c36","tags":[]}] +[14:38:31.958] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:05Z","created_at":1759430270,"id":"8ebe4700110b042ed95adf28e8c37eb132d4b365aa8884cf5baf41d7efd49f58","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1f3ff2871f7c4dd2a4a292294366ee334aa905527353fe6b80743ad93d547d82292f92487819a42bec2c8309c1724d57c7a07000d18800eca6679b57f83be06e","tags":[]}] +[14:38:32.019] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:37:20Z","created_at":1759430267,"id":"a084ecbfc3988c0579b9d13aad886c03324ed78a8e11658a143f93401cbd85d4","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"5e9a90d95201b54a4471d93becfb1f39c94c16885761a607845c07e7b7ee18a58a1d12087b3c5dae0e63252cd11ca568e6736a8e1a1311267789d35b711becb7","tags":[]}] +[14:38:32.080] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:38:32.140] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"41402-nyan\",\"about\":\"English: rwx\\nRussian: rwx\\nKazakh: r--\\nI'm dude. Born in 1997. Currently maintaining Xash3D FWGS game engine. he/him/any\\nAvatar :src: https://www.bilibili.com/opus/1112401013643411465\\nFollow requests are subject of a vibe Czech.\",\"picture\":\"https://media.suya.place/media/7a276c7d2db6c497921c78479c229bde1b4ba45acf3d152a27e420db30310bbc.jpg\",\"banner\":\"https://suya.place/media/3698a7db091083b9227ea976c990255b69f20e0f978a57ee15e77342064533fb.gif\",\"nip05\":\"a1ba@suya-place.mostr.pub\",\"fields\":[[\"Lockedposting \",\"@a1ba@pleromashit.nexus\"],[\"Xashposting\",\"@a1ba@idtech.space \"],[\"GPG\",\"https://share.mentality.rip/pub/a1ba.gpg\"],[\"GPG fingerprint\",\"D7CF2696DD8C157F32D1F46515B44538C9C71CD0\"]]}","created_at":1759430302,"id":"07f40fe53cd1079acf6361b3d48b7e338a5194cb08ef3fb7e255adbafa1e6ba4","kind":0,"pubkey":"288059249d3068d2994e16ca1aa07ec4db75f434042952e536305c8ea1ce16a9","sig":"55c0d9cdc88ad0db43e8bed19805816a0d92110aa8f9aa54882a8c56dcdf1e3bb18565fe3640aad2440881190b8ad95186d999eb98dd8c07e4fc003abd10fe37","tags":[["emoji","src","https://suya.place/emoji/custom/source.jpg"],["proxy","https://suya.place/users/a1ba","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:32.201] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_ord\",\"display_name\":\"AirportStatusBot (ORD)\",\"about\":\"This is a social media bot that will post delay information for Chicago O'Hare International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"d4b34185bbe124e7d06ebe378124f1ff96a6f48eb273fd5b40c71fe7d8bd1889","kind":0,"pubkey":"78daf7c1b4007c7ef80d89252f4afd9e290d52ae55807f4065a704359663c620","sig":"e3c086030d8f7282443310c7abe30c2f0bc1126501f00186994818755687f0822bec0d88c1b6e0dad736f57ce8b951a12a9ea6e2863050dae1f7194ada8ae966","tags":[]}] +[14:38:32.262] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_atl\",\"display_name\":\"AirportStatusBot (ATL)\",\"about\":\"This is a social media bot that will post delay information for Atlanta Hartsfield-Jackson International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"ef362ef7c20c5ae255795a869fccba8de6898d892af7b011d252c0c628422423","kind":0,"pubkey":"eafef7ceb365bb4fa98f24c49163d46f17045bc42120e042b3372be3422b960b","sig":"e878b1d697cf390a11fa94a88d9571065b37bb88e0ec5aa673bbb43e64d3c752a0f85bdf2a785848dd4ba77d26868bb4f6365e2766163c96fcbc4bc6a308e866","tags":[]}] +[14:38:32.322] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_den\",\"display_name\":\"AirportStatusBot (DEN)\",\"about\":\"This is a social media bot that will post delay information for Denver International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"07d3a1450f894d4ff035fa11d2faf68cb8849e622a1b0cf622638f6b55857672","kind":0,"pubkey":"6e66f79b69b1831a25755b825689d37e9d5cbd68b77546cb80803ad8232e850a","sig":"8002faf42fd916c4f6650f80f7ab94ecb393da5c026da9321959fa50473d90076e2e0787812df10ee7f17aaa994f644bdc1f9d7bed5e53d51f41b5008eca64ef","tags":[]}] +[14:38:32.382] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_lax\",\"display_name\":\"AirportStatusBot (LAX)\",\"about\":\"This is a social media bot that will post delay information for Los Angeles International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"8a68a5cb3d417b8183f722add020210feaaaa78b0c848f57ac1579a1b11b5995","kind":0,"pubkey":"ff4cf7c72c73c106237c84501f7c53c8a46c986c8129852c73ad620ed69f43c2","sig":"55f657d4c1d722af988f5e893f2cf77aec4afcc2e585d723fcfc1ce85018c705897ad6ea3991eaa320f7f061990d7ef62c1229b4fdc9a4bca0ce9881f43bd3e5","tags":[]}] +[14:38:32.443] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_dfw\",\"display_name\":\"AirportStatusBot (DFW)\",\"about\":\"This is a social media bot that will post delay information for Dallas/Fort Worth International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"c00accc6c9b933e913a80ef89a40ec3ed3e311a9aecb5f3340cd93b0df736825","kind":0,"pubkey":"6a5cf7b9d9d517ba601021d29a0c038f6f65ba74deb744a5d1ac267a4adf997a","sig":"0bae81e0cda6da003dd69de745e1bc53359481df74f7379ec4ebe346952efd36112eab5feb6af6a7ca5f0cc285904ad6ed46785916560fe847160e0669e85ec3","tags":[]}] +[14:38:32.503] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"4c818b7aa178985ffb1bba8a62c2597dd17447c1d26b63eca08b5f8cdc0c4177","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"a9867b9f3c36562e3c442e36f939c5b88310712c9c930b0c06144cd75b0434f7154fd1fd40d29e6b94a9b8c1a34cb3cfc8b60cdbea7a9b01dc3637e93d57f185","tags":[]}] +[14:38:32.564] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot\",\"display_name\":\"AirportStatusBot\",\"about\":\"This is a social media bot that will post delay information for airports in the United States.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"b55632a33e6cf8c2850eeeac816f19e23f09add70dc1e87026539b813c51f2ed","kind":0,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"f6484554cb4de723e4c020d11f9beb2659db7805345b24fbcbad52492ee3ce6f5c31aa056a36b1504ef05ec75ad4e6889f6b41481001427c2f4051d937ae4aa1","tags":[]}] +[14:38:32.624] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Dan the 3D Printing Dad\",\"about\":\"Christian, dedicated husband & father, programmer, creative guy, and full-time geek. My posts are my own and not representative of my employer.\\n\\nALT: profile picture is an abstract, line-art representation of the account owner's head.\\n\\nProfile banner is a photograph of a 3D printed cartoon-styled raccoon positioned next to a pear.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/108/198/016/866/489/837/original/f89777bbfb30b4a6.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/108/198/016/866/489/837/original/ae55daa2eccb45ac.jpeg\",\"nip05\":\"3DPrintingDad@fosstodon-org.mostr.pub\",\"fields\":[[\"Twitter\",\"https://twitter.com/MrCarefulGamer\"],[\"Printables.com\",\"https://www.printables.com/@Danthe3DPrintingDad\"],[\"Plushie parent of\",\"@SnowballTheBun@plushies.social\"],[\"Twitch\",\"https://www.twitch.tv/twitchplacidcat\"]]}","created_at":1759430260,"id":"ad25cd8582e8b60cc42e4c6c447e151660b6fd2aa732df4ba3ad9f8a9134c7c5","kind":0,"pubkey":"1b3dcd948ebf062fd0ae7c64d0775e724e336a3bf6ce2583f53043cb16979a4a","sig":"cc4cbf3e8d31d8a1d24f918303871407905ff73e0badb8e9d3d1d4193e8ba2e21185aaa56f812bf5c0d7398343b8f6fb07f6e9a73b7bc64366a5799f5da3b4bc","tags":[["proxy","https://fosstodon.org/users/3DPrintingDad","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:32.685] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:38:32.745] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:38:33.108] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:38:33.315] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:38:34.342] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:38:34.825] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:38:35.067] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:38:35.550] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:38:35.791] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:38:36.214] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:38:36.758] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:38:37.060] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:38:37.914] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:38:37.914] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:38:37.914] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:38:37.914] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:38:38.066] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"When just living becomes a chore. 🤣🫂💜","created_at":1759430314,"id":"61f3892795451d3239df5ce50ec08abbca546b8a60112206f83f4d5d134788f1","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"6d0221f9a02ad054a1b6dd28308ddc577dabdacfadbe20c902c5c421d7265f1558e188141d297cb82840459bd5f1bfc202feb563a36f881ac744d370d5943799","tags":[["alt","A short note: When just living becomes a chore. 🤣🫂💜"],["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","wss://bitcoiner.social/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","20b75a49d097c025b85c20b0f56ea9589e2bbeb2282f5b20f605539e75d42f50","wss://bitcoiner.social/","","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","1a71d37a963a9b31b066008205f93c556e54c7c01ca66bcbe33a8a2ade861040","wss://relay.damus.io/","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"]]}] +[14:38:38.127] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fantastic news nostr:nprofile1qqsgmyfuy22uvdeak9lexv35xkpkldhapdc4f9wjy224twswjvepk0qpr4mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmp0a8u94x \nBitcoin Core seem to have done a u-turn and have abandomed their update and will now continue to maintain spam filters. \n\nThanks Brian for giving this topic attention last month, I doubt I would have explored this if it wasnt for you. ✊\nThe more I learned, the more concerned I became. \nThank you Knots for creating knots node and bitcoin core for listening to the community. 🧡","created_at":1759430311,"id":"12a24f135f3b892b65246a50ebaf7fa077881be51dc9f914d47fc2169daa7a05","kind":1,"pubkey":"e7d89379d91c93749864ec83c635aa91d77d88ae27dd5e4bcaf393880d6ecb07","sig":"13dd99575c398dd42f78f8a39602d0f09fca58d50586ea88d471a7947cfdd40945d96ce06f57ed6cf757051f790f8239ec0519b17eb429ed27652d56c8349be0","tags":[["alt","A short note: Fantastic news nostr:nprofile1qqsgmyfuy22uvdeak9le..."],["e","47da3178d8fa67aee29a5814849bbdb64a4ee861376f1ab713a3129f51a7acbe","wss://relay.nostr.band/","root","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c"],["p","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c","wss://nostr.bitcoiner.social/"],["p","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c","wss://nostr.bitcoiner.social/"]]}] +[14:38:38.152] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nevent1qgs982g78fjdrajcaxp6c8j0ncxxjlu0x0spmr0tusulfsdfyyfltyspzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtcpz4mhxue69uhhyetvv9ujummvv9ejuctswqhsqgqzlv4f7ajleqt9a5ur8w64s0ys9zrl95v54fqcurtvyuu7cfu03vcxckrc","created_at":1759430298,"id":"083f92e7e5e30db3a2c1f68721efbddc72ca598fb9153dc7087717bf50513156","kind":1,"pubkey":"53a91e3a64d1f658e983ac1e4f9e0c697f8f33e01d8debe439f4c1a92113f592","sig":"e8d113ca442802156b3b0360931b028ecf4e5ba4c5f905423a6c4e611ed4c9853fca82c441e671fcf2e314ce70c9452596dc393a29d9e202664ff8718085faf2","tags":[["q","02fb2a9f765fc8165ed3833bb5583c902887f2d194aa418e0d6c2739ec278f8b","","mention"],["p","53a91e3a64d1f658e983ac1e4f9e0c697f8f33e01d8debe439f4c1a92113f592"],["client","olas","31990:fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52:1731850618505"]]}] +[14:38:38.213] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsfrjd9ux5hgsg5cmlz6cdwfh5zv2024g8m2t6g9zqf83l8uqm0svspp4mhxue69uhkummn9ekx7mqpr3mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmqqzqhqe 😘🔥🤘🤘 \n\n","created_at":1759430297,"id":"f67faf4345bad4bf5ff6e2271b95be194ef3f2b14b46a5940d8ab585e2d1991b","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"9cce89eee7c2cb6fe44372cc73f26f4330d605ce4931cca8044ea69ffa154d88ed93164a14af7995b4420acb7f7c2f58cf28f006e6d6c2718aa3eec30a7cab08","tags":[["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832","wss://nos.lol","mention"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","wss://relay.primal.net"],["e","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","wss://relay.primal.net","root","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"]]}] +[14:38:38.273] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇫🇷🇪🇺 PROTESTOS NA FRANÇA CONTRA CORTES DE GASTOS\n\nMilhares protestam na França contra cortes de gastos públicos. Macron deve nomear novo governo neste fim de semana.\nhttps://files.catbox.moe/ykcanh.jpg","created_at":1759430286,"id":"3495b48d17c80977159a5be49763d00b55c90a4131abf5d99452751e5c157ccd","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"8a0ea28226dbe07541fd72dbb94737fc8648391c49aec4ab9317c81055687a2848dbe807d9bb248621c879f8b11e100f1497499424eacaae585e772caaaee9c8","tags":[["image","https://files.catbox.moe/ykcanh.jpg"]]}] +[14:38:38.334] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I dont own a guardians hat.\nGo tribe! Bring back chief wahoo\nhttps://i.nostr.build/Qe412WCHeCYCvDgG.jpg","created_at":1759430280,"id":"442ca5441f236c6406e950ea69f2d429a0cc7e8e9465f12e2a738fe715a6112d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"a3b1bbb3edbf6ee161d27f64d594b2eb279d9334074f30432e46282c5ec517a5260d5161b80ec21a5146ac1d1db44f88e1a49736961a96421a778358ed4a96e3","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["e","f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23"],["e","2f6c4eb99edb947ceb1943498a5ef5350b1fae65b2330e2457d8179271f35a4c","","reply"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://i.nostr.build/Qe412WCHeCYCvDgG.jpg"],["imeta","url https://i.nostr.build/Qe412WCHeCYCvDgG.jpg","x 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","size 49911","m image/jpeg","dim 783x1174","blurhash ^UD]PQIUx]xaxabb_NWBs.t7j[oL?bNGS2RjR*WBtRaejFRjWBWBaexuRQofWBofjsf+R+WBs:oeRjj[ayV[ofayV@j@oLjZa|oekCRjt7j[aykB","ox 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","alt "]]}] +[14:38:38.394] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:36:59Z","created_at":1759430280,"id":"3d802deb8aff6cda2c2d07ce8bb7f7d3dee1aeddd50ca63dcb17d4f7d98b4b95","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"a7b70707d09675ec486d7082fa9a954d161fbc96fe99079947df67926b36c50ab4b6e1498fd90341ca646bd077d9be7509bd3e127c5a714630766ac38c6b1439","tags":[]}] +[14:38:38.455] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:37:26Z","created_at":1759430276,"id":"6a319cbf8521899b99b2f0aba509c2d84f0b779008b8ec1b69057cf723fad119","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"ba3035313500ef2325cc0b2562f4ea19c9d07cebd8edf61a7576ee02aca2a6a788a7a0260f0972d5d589f7a77257548bbbdb9b91b65ae85ce740d6abcd960333","tags":[]}] +[14:38:38.515] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"congrats auntie 💜🫂","created_at":1759430273,"id":"5369e72e6e21eeffb27f56b4c1ddeb48035f6d716a0b1955202d3b2b6aaa3beb","kind":1,"pubkey":"d60397e8a390b41dd17551b04be27ad26831beb6d55a98a1f14d94ec2fe3fde0","sig":"11bb3ee271e3ebe1ee959d6d6c2678b32c8a47fb27f86f102e5ada5e2f3568185e928e6efcc44cb7143806cbd5a0559e9291648a9eb87af341c114bed8eae0a3","tags":[["e","49fc8dc3c774e76e111b9d48ae4dac827fcc0413d25a6330133d04d733fefe73","","root"],["p","9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7"]]}] +[14:38:38.576] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:36:56Z","created_at":1759430273,"id":"40f337fc272c39bef0ba802ff85c4ebf811197e9b5a57c9c8fbb4d4d20f77974","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"df5fdb65d1ca765ce739e3f0b71126a6db1c3e8cb3b09c41fdb4fb6a5dff7fd5de7348432a3ad7c38b2ed47fb89e2c73ad92ceffd916e07999b9e12a406f0c36","tags":[]}] +[14:38:38.636] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:38:38.697] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"21SatStreet\",\"lud16\":\"purplemoose18@primal.net\",\"display_name\":\"\"}","created_at":1759430314,"id":"164b00bcf8bc63b67425096e9dba4986c199bc6bb17cb4326acd6a38a35bfa57","kind":0,"pubkey":"49107f47564924ae338cb54dc09fff863d72742133a701c2c40a8a34f8e5b5cd","sig":"d887ab459561618135ac914f170b15cde9662738b6f6b5a5d966e53070c66fb5abd7da8d0a04f83e2dd55343b7909e4413b55eef3af4a94571ea0f1c72a9e9f7","tags":[]}] +[14:38:38.758] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"41402-nyan\",\"about\":\"English: rwx\\nRussian: rwx\\nKazakh: r--\\nI'm dude. Born in 1997. Currently maintaining Xash3D FWGS game engine. he/him/any\\nAvatar :src: https://www.bilibili.com/opus/1112401013643411465\\nFollow requests are subject of a vibe Czech.\",\"picture\":\"https://media.suya.place/media/7a276c7d2db6c497921c78479c229bde1b4ba45acf3d152a27e420db30310bbc.jpg\",\"banner\":\"https://suya.place/media/3698a7db091083b9227ea976c990255b69f20e0f978a57ee15e77342064533fb.gif\",\"nip05\":\"a1ba@suya-place.mostr.pub\",\"fields\":[[\"Lockedposting \",\"@a1ba@pleromashit.nexus\"],[\"Xashposting\",\"@a1ba@idtech.space \"],[\"GPG\",\"https://share.mentality.rip/pub/a1ba.gpg\"],[\"GPG fingerprint\",\"D7CF2696DD8C157F32D1F46515B44538C9C71CD0\"]]}","created_at":1759430302,"id":"07f40fe53cd1079acf6361b3d48b7e338a5194cb08ef3fb7e255adbafa1e6ba4","kind":0,"pubkey":"288059249d3068d2994e16ca1aa07ec4db75f434042952e536305c8ea1ce16a9","sig":"55c0d9cdc88ad0db43e8bed19805816a0d92110aa8f9aa54882a8c56dcdf1e3bb18565fe3640aad2440881190b8ad95186d999eb98dd8c07e4fc003abd10fe37","tags":[["emoji","src","https://suya.place/emoji/custom/source.jpg"],["proxy","https://suya.place/users/a1ba","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:38.819] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_ord\",\"display_name\":\"AirportStatusBot (ORD)\",\"about\":\"This is a social media bot that will post delay information for Chicago O'Hare International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"d4b34185bbe124e7d06ebe378124f1ff96a6f48eb273fd5b40c71fe7d8bd1889","kind":0,"pubkey":"78daf7c1b4007c7ef80d89252f4afd9e290d52ae55807f4065a704359663c620","sig":"e3c086030d8f7282443310c7abe30c2f0bc1126501f00186994818755687f0822bec0d88c1b6e0dad736f57ce8b951a12a9ea6e2863050dae1f7194ada8ae966","tags":[]}] +[14:38:38.879] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_atl\",\"display_name\":\"AirportStatusBot (ATL)\",\"about\":\"This is a social media bot that will post delay information for Atlanta Hartsfield-Jackson International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"ef362ef7c20c5ae255795a869fccba8de6898d892af7b011d252c0c628422423","kind":0,"pubkey":"eafef7ceb365bb4fa98f24c49163d46f17045bc42120e042b3372be3422b960b","sig":"e878b1d697cf390a11fa94a88d9571065b37bb88e0ec5aa673bbb43e64d3c752a0f85bdf2a785848dd4ba77d26868bb4f6365e2766163c96fcbc4bc6a308e866","tags":[]}] +[14:38:38.940] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_den\",\"display_name\":\"AirportStatusBot (DEN)\",\"about\":\"This is a social media bot that will post delay information for Denver International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"07d3a1450f894d4ff035fa11d2faf68cb8849e622a1b0cf622638f6b55857672","kind":0,"pubkey":"6e66f79b69b1831a25755b825689d37e9d5cbd68b77546cb80803ad8232e850a","sig":"8002faf42fd916c4f6650f80f7ab94ecb393da5c026da9321959fa50473d90076e2e0787812df10ee7f17aaa994f644bdc1f9d7bed5e53d51f41b5008eca64ef","tags":[]}] +[14:38:39.000] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_lax\",\"display_name\":\"AirportStatusBot (LAX)\",\"about\":\"This is a social media bot that will post delay information for Los Angeles International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"8a68a5cb3d417b8183f722add020210feaaaa78b0c848f57ac1579a1b11b5995","kind":0,"pubkey":"ff4cf7c72c73c106237c84501f7c53c8a46c986c8129852c73ad620ed69f43c2","sig":"55f657d4c1d722af988f5e893f2cf77aec4afcc2e585d723fcfc1ce85018c705897ad6ea3991eaa320f7f061990d7ef62c1229b4fdc9a4bca0ce9881f43bd3e5","tags":[]}] +[14:38:39.061] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_dfw\",\"display_name\":\"AirportStatusBot (DFW)\",\"about\":\"This is a social media bot that will post delay information for Dallas/Fort Worth International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"c00accc6c9b933e913a80ef89a40ec3ed3e311a9aecb5f3340cd93b0df736825","kind":0,"pubkey":"6a5cf7b9d9d517ba601021d29a0c038f6f65ba74deb744a5d1ac267a4adf997a","sig":"0bae81e0cda6da003dd69de745e1bc53359481df74f7379ec4ebe346952efd36112eab5feb6af6a7ca5f0cc285904ad6ed46785916560fe847160e0669e85ec3","tags":[]}] +[14:38:39.121] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"4c818b7aa178985ffb1bba8a62c2597dd17447c1d26b63eca08b5f8cdc0c4177","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"a9867b9f3c36562e3c442e36f939c5b88310712c9c930b0c06144cd75b0434f7154fd1fd40d29e6b94a9b8c1a34cb3cfc8b60cdbea7a9b01dc3637e93d57f185","tags":[]}] +[14:38:39.182] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot\",\"display_name\":\"AirportStatusBot\",\"about\":\"This is a social media bot that will post delay information for airports in the United States.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"b55632a33e6cf8c2850eeeac816f19e23f09add70dc1e87026539b813c51f2ed","kind":0,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"f6484554cb4de723e4c020d11f9beb2659db7805345b24fbcbad52492ee3ce6f5c31aa056a36b1504ef05ec75ad4e6889f6b41481001427c2f4051d937ae4aa1","tags":[]}] +[14:38:39.242] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Dan the 3D Printing Dad\",\"about\":\"Christian, dedicated husband & father, programmer, creative guy, and full-time geek. My posts are my own and not representative of my employer.\\n\\nALT: profile picture is an abstract, line-art representation of the account owner's head.\\n\\nProfile banner is a photograph of a 3D printed cartoon-styled raccoon positioned next to a pear.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/108/198/016/866/489/837/original/f89777bbfb30b4a6.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/108/198/016/866/489/837/original/ae55daa2eccb45ac.jpeg\",\"nip05\":\"3DPrintingDad@fosstodon-org.mostr.pub\",\"fields\":[[\"Twitter\",\"https://twitter.com/MrCarefulGamer\"],[\"Printables.com\",\"https://www.printables.com/@Danthe3DPrintingDad\"],[\"Plushie parent of\",\"@SnowballTheBun@plushies.social\"],[\"Twitch\",\"https://www.twitch.tv/twitchplacidcat\"]]}","created_at":1759430260,"id":"ad25cd8582e8b60cc42e4c6c447e151660b6fd2aa732df4ba3ad9f8a9134c7c5","kind":0,"pubkey":"1b3dcd948ebf062fd0ae7c64d0775e724e336a3bf6ce2583f53043cb16979a4a","sig":"cc4cbf3e8d31d8a1d24f918303871407905ff73e0badb8e9d3d1d4193e8ba2e21185aaa56f812bf5c0d7398343b8f6fb07f6e9a73b7bc64366a5799f5da3b4bc","tags":[["proxy","https://fosstodon.org/users/3DPrintingDad","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:39.303] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:38:39.665] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:38:39.907] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:38:40.933] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:38:41.416] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:38:41.658] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:38:42.141] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:38:42.382] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:38:42.805] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:38:43.314] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:38:43.615] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:38:44.468] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:38:44.468] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:38:44.468] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:38:44.468] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:38:44.621] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"When just living becomes a chore. 🤣🫂💜","created_at":1759430314,"id":"61f3892795451d3239df5ce50ec08abbca546b8a60112206f83f4d5d134788f1","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"6d0221f9a02ad054a1b6dd28308ddc577dabdacfadbe20c902c5c421d7265f1558e188141d297cb82840459bd5f1bfc202feb563a36f881ac744d370d5943799","tags":[["alt","A short note: When just living becomes a chore. 🤣🫂💜"],["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","wss://bitcoiner.social/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","20b75a49d097c025b85c20b0f56ea9589e2bbeb2282f5b20f605539e75d42f50","wss://bitcoiner.social/","","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","1a71d37a963a9b31b066008205f93c556e54c7c01ca66bcbe33a8a2ade861040","wss://relay.damus.io/","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"]]}] +[14:38:44.681] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fantastic news nostr:nprofile1qqsgmyfuy22uvdeak9lexv35xkpkldhapdc4f9wjy224twswjvepk0qpr4mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmp0a8u94x \nBitcoin Core seem to have done a u-turn and have abandomed their update and will now continue to maintain spam filters. \n\nThanks Brian for giving this topic attention last month, I doubt I would have explored this if it wasnt for you. ✊\nThe more I learned, the more concerned I became. \nThank you Knots for creating knots node and bitcoin core for listening to the community. 🧡","created_at":1759430311,"id":"12a24f135f3b892b65246a50ebaf7fa077881be51dc9f914d47fc2169daa7a05","kind":1,"pubkey":"e7d89379d91c93749864ec83c635aa91d77d88ae27dd5e4bcaf393880d6ecb07","sig":"13dd99575c398dd42f78f8a39602d0f09fca58d50586ea88d471a7947cfdd40945d96ce06f57ed6cf757051f790f8239ec0519b17eb429ed27652d56c8349be0","tags":[["alt","A short note: Fantastic news nostr:nprofile1qqsgmyfuy22uvdeak9le..."],["e","47da3178d8fa67aee29a5814849bbdb64a4ee861376f1ab713a3129f51a7acbe","wss://relay.nostr.band/","root","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c"],["p","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c","wss://nostr.bitcoiner.social/"],["p","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c","wss://nostr.bitcoiner.social/"]]}] +[14:38:44.742] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nevent1qgs982g78fjdrajcaxp6c8j0ncxxjlu0x0spmr0tusulfsdfyyfltyspzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtcpz4mhxue69uhhyetvv9ujummvv9ejuctswqhsqgqzlv4f7ajleqt9a5ur8w64s0ys9zrl95v54fqcurtvyuu7cfu03vcxckrc","created_at":1759430298,"id":"083f92e7e5e30db3a2c1f68721efbddc72ca598fb9153dc7087717bf50513156","kind":1,"pubkey":"53a91e3a64d1f658e983ac1e4f9e0c697f8f33e01d8debe439f4c1a92113f592","sig":"e8d113ca442802156b3b0360931b028ecf4e5ba4c5f905423a6c4e611ed4c9853fca82c441e671fcf2e314ce70c9452596dc393a29d9e202664ff8718085faf2","tags":[["q","02fb2a9f765fc8165ed3833bb5583c902887f2d194aa418e0d6c2739ec278f8b","","mention"],["p","53a91e3a64d1f658e983ac1e4f9e0c697f8f33e01d8debe439f4c1a92113f592"],["client","olas","31990:fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52:1731850618505"]]}] +[14:38:44.802] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsfrjd9ux5hgsg5cmlz6cdwfh5zv2024g8m2t6g9zqf83l8uqm0svspp4mhxue69uhkummn9ekx7mqpr3mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmqqzqhqe 😘🔥🤘🤘 \n\n","created_at":1759430297,"id":"f67faf4345bad4bf5ff6e2271b95be194ef3f2b14b46a5940d8ab585e2d1991b","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"9cce89eee7c2cb6fe44372cc73f26f4330d605ce4931cca8044ea69ffa154d88ed93164a14af7995b4420acb7f7c2f58cf28f006e6d6c2718aa3eec30a7cab08","tags":[["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832","wss://nos.lol","mention"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","wss://relay.primal.net"],["e","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","wss://relay.primal.net","root","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"]]}] +[14:38:44.863] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇫🇷🇪🇺 PROTESTOS NA FRANÇA CONTRA CORTES DE GASTOS\n\nMilhares protestam na França contra cortes de gastos públicos. Macron deve nomear novo governo neste fim de semana.\nhttps://files.catbox.moe/ykcanh.jpg","created_at":1759430286,"id":"3495b48d17c80977159a5be49763d00b55c90a4131abf5d99452751e5c157ccd","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"8a0ea28226dbe07541fd72dbb94737fc8648391c49aec4ab9317c81055687a2848dbe807d9bb248621c879f8b11e100f1497499424eacaae585e772caaaee9c8","tags":[["image","https://files.catbox.moe/ykcanh.jpg"]]}] +[14:38:44.923] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I dont own a guardians hat.\nGo tribe! Bring back chief wahoo\nhttps://i.nostr.build/Qe412WCHeCYCvDgG.jpg","created_at":1759430280,"id":"442ca5441f236c6406e950ea69f2d429a0cc7e8e9465f12e2a738fe715a6112d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"a3b1bbb3edbf6ee161d27f64d594b2eb279d9334074f30432e46282c5ec517a5260d5161b80ec21a5146ac1d1db44f88e1a49736961a96421a778358ed4a96e3","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["e","f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23"],["e","2f6c4eb99edb947ceb1943498a5ef5350b1fae65b2330e2457d8179271f35a4c","","reply"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://i.nostr.build/Qe412WCHeCYCvDgG.jpg"],["imeta","url https://i.nostr.build/Qe412WCHeCYCvDgG.jpg","x 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","size 49911","m image/jpeg","dim 783x1174","blurhash ^UD]PQIUx]xaxabb_NWBs.t7j[oL?bNGS2RjR*WBtRaejFRjWBWBaexuRQofWBofjsf+R+WBs:oeRjj[ayV[ofayV@j@oLjZa|oekCRjt7j[aykB","ox 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","alt "]]}] +[14:38:44.984] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:36:59Z","created_at":1759430280,"id":"3d802deb8aff6cda2c2d07ce8bb7f7d3dee1aeddd50ca63dcb17d4f7d98b4b95","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"a7b70707d09675ec486d7082fa9a954d161fbc96fe99079947df67926b36c50ab4b6e1498fd90341ca646bd077d9be7509bd3e127c5a714630766ac38c6b1439","tags":[]}] +[14:38:45.044] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:37:26Z","created_at":1759430276,"id":"6a319cbf8521899b99b2f0aba509c2d84f0b779008b8ec1b69057cf723fad119","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"ba3035313500ef2325cc0b2562f4ea19c9d07cebd8edf61a7576ee02aca2a6a788a7a0260f0972d5d589f7a77257548bbbdb9b91b65ae85ce740d6abcd960333","tags":[]}] +[14:38:45.105] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"congrats auntie 💜🫂","created_at":1759430273,"id":"5369e72e6e21eeffb27f56b4c1ddeb48035f6d716a0b1955202d3b2b6aaa3beb","kind":1,"pubkey":"d60397e8a390b41dd17551b04be27ad26831beb6d55a98a1f14d94ec2fe3fde0","sig":"11bb3ee271e3ebe1ee959d6d6c2678b32c8a47fb27f86f102e5ada5e2f3568185e928e6efcc44cb7143806cbd5a0559e9291648a9eb87af341c114bed8eae0a3","tags":[["e","49fc8dc3c774e76e111b9d48ae4dac827fcc0413d25a6330133d04d733fefe73","","root"],["p","9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7"]]}] +[14:38:45.165] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:36:56Z","created_at":1759430273,"id":"40f337fc272c39bef0ba802ff85c4ebf811197e9b5a57c9c8fbb4d4d20f77974","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"df5fdb65d1ca765ce739e3f0b71126a6db1c3e8cb3b09c41fdb4fb6a5dff7fd5de7348432a3ad7c38b2ed47fb89e2c73ad92ceffd916e07999b9e12a406f0c36","tags":[]}] +[14:38:45.226] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:38:45.286] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"21SatStreet\",\"lud16\":\"purplemoose18@primal.net\",\"display_name\":\"\"}","created_at":1759430314,"id":"164b00bcf8bc63b67425096e9dba4986c199bc6bb17cb4326acd6a38a35bfa57","kind":0,"pubkey":"49107f47564924ae338cb54dc09fff863d72742133a701c2c40a8a34f8e5b5cd","sig":"d887ab459561618135ac914f170b15cde9662738b6f6b5a5d966e53070c66fb5abd7da8d0a04f83e2dd55343b7909e4413b55eef3af4a94571ea0f1c72a9e9f7","tags":[]}] +[14:38:45.347] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"41402-nyan\",\"about\":\"English: rwx\\nRussian: rwx\\nKazakh: r--\\nI'm dude. Born in 1997. Currently maintaining Xash3D FWGS game engine. he/him/any\\nAvatar :src: https://www.bilibili.com/opus/1112401013643411465\\nFollow requests are subject of a vibe Czech.\",\"picture\":\"https://media.suya.place/media/7a276c7d2db6c497921c78479c229bde1b4ba45acf3d152a27e420db30310bbc.jpg\",\"banner\":\"https://suya.place/media/3698a7db091083b9227ea976c990255b69f20e0f978a57ee15e77342064533fb.gif\",\"nip05\":\"a1ba@suya-place.mostr.pub\",\"fields\":[[\"Lockedposting \",\"@a1ba@pleromashit.nexus\"],[\"Xashposting\",\"@a1ba@idtech.space \"],[\"GPG\",\"https://share.mentality.rip/pub/a1ba.gpg\"],[\"GPG fingerprint\",\"D7CF2696DD8C157F32D1F46515B44538C9C71CD0\"]]}","created_at":1759430302,"id":"07f40fe53cd1079acf6361b3d48b7e338a5194cb08ef3fb7e255adbafa1e6ba4","kind":0,"pubkey":"288059249d3068d2994e16ca1aa07ec4db75f434042952e536305c8ea1ce16a9","sig":"55c0d9cdc88ad0db43e8bed19805816a0d92110aa8f9aa54882a8c56dcdf1e3bb18565fe3640aad2440881190b8ad95186d999eb98dd8c07e4fc003abd10fe37","tags":[["emoji","src","https://suya.place/emoji/custom/source.jpg"],["proxy","https://suya.place/users/a1ba","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:45.407] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_ord\",\"display_name\":\"AirportStatusBot (ORD)\",\"about\":\"This is a social media bot that will post delay information for Chicago O'Hare International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"d4b34185bbe124e7d06ebe378124f1ff96a6f48eb273fd5b40c71fe7d8bd1889","kind":0,"pubkey":"78daf7c1b4007c7ef80d89252f4afd9e290d52ae55807f4065a704359663c620","sig":"e3c086030d8f7282443310c7abe30c2f0bc1126501f00186994818755687f0822bec0d88c1b6e0dad736f57ce8b951a12a9ea6e2863050dae1f7194ada8ae966","tags":[]}] +[14:38:45.468] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_atl\",\"display_name\":\"AirportStatusBot (ATL)\",\"about\":\"This is a social media bot that will post delay information for Atlanta Hartsfield-Jackson International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"ef362ef7c20c5ae255795a869fccba8de6898d892af7b011d252c0c628422423","kind":0,"pubkey":"eafef7ceb365bb4fa98f24c49163d46f17045bc42120e042b3372be3422b960b","sig":"e878b1d697cf390a11fa94a88d9571065b37bb88e0ec5aa673bbb43e64d3c752a0f85bdf2a785848dd4ba77d26868bb4f6365e2766163c96fcbc4bc6a308e866","tags":[]}] +[14:38:45.528] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_den\",\"display_name\":\"AirportStatusBot (DEN)\",\"about\":\"This is a social media bot that will post delay information for Denver International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"07d3a1450f894d4ff035fa11d2faf68cb8849e622a1b0cf622638f6b55857672","kind":0,"pubkey":"6e66f79b69b1831a25755b825689d37e9d5cbd68b77546cb80803ad8232e850a","sig":"8002faf42fd916c4f6650f80f7ab94ecb393da5c026da9321959fa50473d90076e2e0787812df10ee7f17aaa994f644bdc1f9d7bed5e53d51f41b5008eca64ef","tags":[]}] +[14:38:45.589] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_lax\",\"display_name\":\"AirportStatusBot (LAX)\",\"about\":\"This is a social media bot that will post delay information for Los Angeles International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"8a68a5cb3d417b8183f722add020210feaaaa78b0c848f57ac1579a1b11b5995","kind":0,"pubkey":"ff4cf7c72c73c106237c84501f7c53c8a46c986c8129852c73ad620ed69f43c2","sig":"55f657d4c1d722af988f5e893f2cf77aec4afcc2e585d723fcfc1ce85018c705897ad6ea3991eaa320f7f061990d7ef62c1229b4fdc9a4bca0ce9881f43bd3e5","tags":[]}] +[14:38:45.649] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_dfw\",\"display_name\":\"AirportStatusBot (DFW)\",\"about\":\"This is a social media bot that will post delay information for Dallas/Fort Worth International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"c00accc6c9b933e913a80ef89a40ec3ed3e311a9aecb5f3340cd93b0df736825","kind":0,"pubkey":"6a5cf7b9d9d517ba601021d29a0c038f6f65ba74deb744a5d1ac267a4adf997a","sig":"0bae81e0cda6da003dd69de745e1bc53359481df74f7379ec4ebe346952efd36112eab5feb6af6a7ca5f0cc285904ad6ed46785916560fe847160e0669e85ec3","tags":[]}] +[14:38:45.710] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"4c818b7aa178985ffb1bba8a62c2597dd17447c1d26b63eca08b5f8cdc0c4177","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"a9867b9f3c36562e3c442e36f939c5b88310712c9c930b0c06144cd75b0434f7154fd1fd40d29e6b94a9b8c1a34cb3cfc8b60cdbea7a9b01dc3637e93d57f185","tags":[]}] +[14:38:45.770] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot\",\"display_name\":\"AirportStatusBot\",\"about\":\"This is a social media bot that will post delay information for airports in the United States.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"b55632a33e6cf8c2850eeeac816f19e23f09add70dc1e87026539b813c51f2ed","kind":0,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"f6484554cb4de723e4c020d11f9beb2659db7805345b24fbcbad52492ee3ce6f5c31aa056a36b1504ef05ec75ad4e6889f6b41481001427c2f4051d937ae4aa1","tags":[]}] +[14:38:45.831] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Dan the 3D Printing Dad\",\"about\":\"Christian, dedicated husband & father, programmer, creative guy, and full-time geek. My posts are my own and not representative of my employer.\\n\\nALT: profile picture is an abstract, line-art representation of the account owner's head.\\n\\nProfile banner is a photograph of a 3D printed cartoon-styled raccoon positioned next to a pear.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/108/198/016/866/489/837/original/f89777bbfb30b4a6.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/108/198/016/866/489/837/original/ae55daa2eccb45ac.jpeg\",\"nip05\":\"3DPrintingDad@fosstodon-org.mostr.pub\",\"fields\":[[\"Twitter\",\"https://twitter.com/MrCarefulGamer\"],[\"Printables.com\",\"https://www.printables.com/@Danthe3DPrintingDad\"],[\"Plushie parent of\",\"@SnowballTheBun@plushies.social\"],[\"Twitch\",\"https://www.twitch.tv/twitchplacidcat\"]]}","created_at":1759430260,"id":"ad25cd8582e8b60cc42e4c6c447e151660b6fd2aa732df4ba3ad9f8a9134c7c5","kind":0,"pubkey":"1b3dcd948ebf062fd0ae7c64d0775e724e336a3bf6ce2583f53043cb16979a4a","sig":"cc4cbf3e8d31d8a1d24f918303871407905ff73e0badb8e9d3d1d4193e8ba2e21185aaa56f812bf5c0d7398343b8f6fb07f6e9a73b7bc64366a5799f5da3b4bc","tags":[["proxy","https://fosstodon.org/users/3DPrintingDad","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:45.892] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:38:46.255] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:38:46.497] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:38:47.523] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:38:48.007] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:38:48.214] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:38:48.697] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:38:48.939] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:38:49.361] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:38:49.904] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:38:50.206] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:38:51.061] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:38:51.061] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:38:51.062] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:38:51.062] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:38:51.214] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Nice one. Done🙏🏻.","created_at":1759430330,"id":"59d60fc0f612dfd60c10bd3696e4271e1c6c0e268c1967960639688d960ae092","kind":1,"pubkey":"8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","sig":"dfc471b9aaf7d4807f829e3e303681b96c403fc0060a3589e9b2cce57bbe091929f171fc6c19a9672c0a5abf7aeaddea6206f21943e74cad4f886ab67c8e739c","tags":[["alt","A short note: Nice one. Done🙏🏻."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"]]}] +[14:38:51.274] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Hey🫵🏻","created_at":1759430327,"id":"f4ad2b296d088164d425cee5b380eac07f7fbb1942020362dc8b68befce859e8","kind":1,"pubkey":"adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1","sig":"299f62a838bd0bbd0bedfe0b17848c82210175a24786f7415b5647b1b3d3654b0615617b30e547b362da1de709d3602b47923e8992dd4804741dca6b664181e2","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root"],["e","6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","","reply"],["p","5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","","mention"]]}] +[14:38:51.335] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"When just living becomes a chore. 🤣🫂💜","created_at":1759430314,"id":"61f3892795451d3239df5ce50ec08abbca546b8a60112206f83f4d5d134788f1","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"6d0221f9a02ad054a1b6dd28308ddc577dabdacfadbe20c902c5c421d7265f1558e188141d297cb82840459bd5f1bfc202feb563a36f881ac744d370d5943799","tags":[["alt","A short note: When just living becomes a chore. 🤣🫂💜"],["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","wss://bitcoiner.social/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","20b75a49d097c025b85c20b0f56ea9589e2bbeb2282f5b20f605539e75d42f50","wss://bitcoiner.social/","","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","1a71d37a963a9b31b066008205f93c556e54c7c01ca66bcbe33a8a2ade861040","wss://relay.damus.io/","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"]]}] +[14:38:51.396] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fantastic news nostr:nprofile1qqsgmyfuy22uvdeak9lexv35xkpkldhapdc4f9wjy224twswjvepk0qpr4mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmp0a8u94x \nBitcoin Core seem to have done a u-turn and have abandomed their update and will now continue to maintain spam filters. \n\nThanks Brian for giving this topic attention last month, I doubt I would have explored this if it wasnt for you. ✊\nThe more I learned, the more concerned I became. \nThank you Knots for creating knots node and bitcoin core for listening to the community. 🧡","created_at":1759430311,"id":"12a24f135f3b892b65246a50ebaf7fa077881be51dc9f914d47fc2169daa7a05","kind":1,"pubkey":"e7d89379d91c93749864ec83c635aa91d77d88ae27dd5e4bcaf393880d6ecb07","sig":"13dd99575c398dd42f78f8a39602d0f09fca58d50586ea88d471a7947cfdd40945d96ce06f57ed6cf757051f790f8239ec0519b17eb429ed27652d56c8349be0","tags":[["alt","A short note: Fantastic news nostr:nprofile1qqsgmyfuy22uvdeak9le..."],["e","47da3178d8fa67aee29a5814849bbdb64a4ee861376f1ab713a3129f51a7acbe","wss://relay.nostr.band/","root","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c"],["p","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c","wss://nostr.bitcoiner.social/"],["p","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c","wss://nostr.bitcoiner.social/"]]}] +[14:38:51.457] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nevent1qgs982g78fjdrajcaxp6c8j0ncxxjlu0x0spmr0tusulfsdfyyfltyspzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtcpz4mhxue69uhhyetvv9ujummvv9ejuctswqhsqgqzlv4f7ajleqt9a5ur8w64s0ys9zrl95v54fqcurtvyuu7cfu03vcxckrc","created_at":1759430298,"id":"083f92e7e5e30db3a2c1f68721efbddc72ca598fb9153dc7087717bf50513156","kind":1,"pubkey":"53a91e3a64d1f658e983ac1e4f9e0c697f8f33e01d8debe439f4c1a92113f592","sig":"e8d113ca442802156b3b0360931b028ecf4e5ba4c5f905423a6c4e611ed4c9853fca82c441e671fcf2e314ce70c9452596dc393a29d9e202664ff8718085faf2","tags":[["q","02fb2a9f765fc8165ed3833bb5583c902887f2d194aa418e0d6c2739ec278f8b","","mention"],["p","53a91e3a64d1f658e983ac1e4f9e0c697f8f33e01d8debe439f4c1a92113f592"],["client","olas","31990:fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52:1731850618505"]]}] +[14:38:51.517] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsfrjd9ux5hgsg5cmlz6cdwfh5zv2024g8m2t6g9zqf83l8uqm0svspp4mhxue69uhkummn9ekx7mqpr3mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmqqzqhqe 😘🔥🤘🤘 \n\n","created_at":1759430297,"id":"f67faf4345bad4bf5ff6e2271b95be194ef3f2b14b46a5940d8ab585e2d1991b","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"9cce89eee7c2cb6fe44372cc73f26f4330d605ce4931cca8044ea69ffa154d88ed93164a14af7995b4420acb7f7c2f58cf28f006e6d6c2718aa3eec30a7cab08","tags":[["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832","wss://nos.lol","mention"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","wss://relay.primal.net"],["e","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","wss://relay.primal.net","root","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"]]}] +[14:38:51.578] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇫🇷🇪🇺 PROTESTOS NA FRANÇA CONTRA CORTES DE GASTOS\n\nMilhares protestam na França contra cortes de gastos públicos. Macron deve nomear novo governo neste fim de semana.\nhttps://files.catbox.moe/ykcanh.jpg","created_at":1759430286,"id":"3495b48d17c80977159a5be49763d00b55c90a4131abf5d99452751e5c157ccd","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"8a0ea28226dbe07541fd72dbb94737fc8648391c49aec4ab9317c81055687a2848dbe807d9bb248621c879f8b11e100f1497499424eacaae585e772caaaee9c8","tags":[["image","https://files.catbox.moe/ykcanh.jpg"]]}] +[14:38:51.639] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I dont own a guardians hat.\nGo tribe! Bring back chief wahoo\nhttps://i.nostr.build/Qe412WCHeCYCvDgG.jpg","created_at":1759430280,"id":"442ca5441f236c6406e950ea69f2d429a0cc7e8e9465f12e2a738fe715a6112d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"a3b1bbb3edbf6ee161d27f64d594b2eb279d9334074f30432e46282c5ec517a5260d5161b80ec21a5146ac1d1db44f88e1a49736961a96421a778358ed4a96e3","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["e","f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23"],["e","2f6c4eb99edb947ceb1943498a5ef5350b1fae65b2330e2457d8179271f35a4c","","reply"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://i.nostr.build/Qe412WCHeCYCvDgG.jpg"],["imeta","url https://i.nostr.build/Qe412WCHeCYCvDgG.jpg","x 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","size 49911","m image/jpeg","dim 783x1174","blurhash ^UD]PQIUx]xaxabb_NWBs.t7j[oL?bNGS2RjR*WBtRaejFRjWBWBaexuRQofWBofjsf+R+WBs:oeRjj[ayV[ofayV@j@oLjZa|oekCRjt7j[aykB","ox 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","alt "]]}] +[14:38:51.699] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:36:59Z","created_at":1759430280,"id":"3d802deb8aff6cda2c2d07ce8bb7f7d3dee1aeddd50ca63dcb17d4f7d98b4b95","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"a7b70707d09675ec486d7082fa9a954d161fbc96fe99079947df67926b36c50ab4b6e1498fd90341ca646bd077d9be7509bd3e127c5a714630766ac38c6b1439","tags":[]}] +[14:38:51.759] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:37:26Z","created_at":1759430276,"id":"6a319cbf8521899b99b2f0aba509c2d84f0b779008b8ec1b69057cf723fad119","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"ba3035313500ef2325cc0b2562f4ea19c9d07cebd8edf61a7576ee02aca2a6a788a7a0260f0972d5d589f7a77257548bbbdb9b91b65ae85ce740d6abcd960333","tags":[]}] +[14:38:51.820] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:38:51.881] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"21SatStreet\",\"lud16\":\"purplemoose18@primal.net\",\"display_name\":\"\"}","created_at":1759430314,"id":"164b00bcf8bc63b67425096e9dba4986c199bc6bb17cb4326acd6a38a35bfa57","kind":0,"pubkey":"49107f47564924ae338cb54dc09fff863d72742133a701c2c40a8a34f8e5b5cd","sig":"d887ab459561618135ac914f170b15cde9662738b6f6b5a5d966e53070c66fb5abd7da8d0a04f83e2dd55343b7909e4413b55eef3af4a94571ea0f1c72a9e9f7","tags":[]}] +[14:38:51.941] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"41402-nyan\",\"about\":\"English: rwx\\nRussian: rwx\\nKazakh: r--\\nI'm dude. Born in 1997. Currently maintaining Xash3D FWGS game engine. he/him/any\\nAvatar :src: https://www.bilibili.com/opus/1112401013643411465\\nFollow requests are subject of a vibe Czech.\",\"picture\":\"https://media.suya.place/media/7a276c7d2db6c497921c78479c229bde1b4ba45acf3d152a27e420db30310bbc.jpg\",\"banner\":\"https://suya.place/media/3698a7db091083b9227ea976c990255b69f20e0f978a57ee15e77342064533fb.gif\",\"nip05\":\"a1ba@suya-place.mostr.pub\",\"fields\":[[\"Lockedposting \",\"@a1ba@pleromashit.nexus\"],[\"Xashposting\",\"@a1ba@idtech.space \"],[\"GPG\",\"https://share.mentality.rip/pub/a1ba.gpg\"],[\"GPG fingerprint\",\"D7CF2696DD8C157F32D1F46515B44538C9C71CD0\"]]}","created_at":1759430302,"id":"07f40fe53cd1079acf6361b3d48b7e338a5194cb08ef3fb7e255adbafa1e6ba4","kind":0,"pubkey":"288059249d3068d2994e16ca1aa07ec4db75f434042952e536305c8ea1ce16a9","sig":"55c0d9cdc88ad0db43e8bed19805816a0d92110aa8f9aa54882a8c56dcdf1e3bb18565fe3640aad2440881190b8ad95186d999eb98dd8c07e4fc003abd10fe37","tags":[["emoji","src","https://suya.place/emoji/custom/source.jpg"],["proxy","https://suya.place/users/a1ba","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:52.002] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_ord\",\"display_name\":\"AirportStatusBot (ORD)\",\"about\":\"This is a social media bot that will post delay information for Chicago O'Hare International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"d4b34185bbe124e7d06ebe378124f1ff96a6f48eb273fd5b40c71fe7d8bd1889","kind":0,"pubkey":"78daf7c1b4007c7ef80d89252f4afd9e290d52ae55807f4065a704359663c620","sig":"e3c086030d8f7282443310c7abe30c2f0bc1126501f00186994818755687f0822bec0d88c1b6e0dad736f57ce8b951a12a9ea6e2863050dae1f7194ada8ae966","tags":[]}] +[14:38:52.062] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_atl\",\"display_name\":\"AirportStatusBot (ATL)\",\"about\":\"This is a social media bot that will post delay information for Atlanta Hartsfield-Jackson International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"ef362ef7c20c5ae255795a869fccba8de6898d892af7b011d252c0c628422423","kind":0,"pubkey":"eafef7ceb365bb4fa98f24c49163d46f17045bc42120e042b3372be3422b960b","sig":"e878b1d697cf390a11fa94a88d9571065b37bb88e0ec5aa673bbb43e64d3c752a0f85bdf2a785848dd4ba77d26868bb4f6365e2766163c96fcbc4bc6a308e866","tags":[]}] +[14:38:52.123] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_den\",\"display_name\":\"AirportStatusBot (DEN)\",\"about\":\"This is a social media bot that will post delay information for Denver International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"07d3a1450f894d4ff035fa11d2faf68cb8849e622a1b0cf622638f6b55857672","kind":0,"pubkey":"6e66f79b69b1831a25755b825689d37e9d5cbd68b77546cb80803ad8232e850a","sig":"8002faf42fd916c4f6650f80f7ab94ecb393da5c026da9321959fa50473d90076e2e0787812df10ee7f17aaa994f644bdc1f9d7bed5e53d51f41b5008eca64ef","tags":[]}] +[14:38:52.183] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_lax\",\"display_name\":\"AirportStatusBot (LAX)\",\"about\":\"This is a social media bot that will post delay information for Los Angeles International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"8a68a5cb3d417b8183f722add020210feaaaa78b0c848f57ac1579a1b11b5995","kind":0,"pubkey":"ff4cf7c72c73c106237c84501f7c53c8a46c986c8129852c73ad620ed69f43c2","sig":"55f657d4c1d722af988f5e893f2cf77aec4afcc2e585d723fcfc1ce85018c705897ad6ea3991eaa320f7f061990d7ef62c1229b4fdc9a4bca0ce9881f43bd3e5","tags":[]}] +[14:38:52.244] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_dfw\",\"display_name\":\"AirportStatusBot (DFW)\",\"about\":\"This is a social media bot that will post delay information for Dallas/Fort Worth International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"c00accc6c9b933e913a80ef89a40ec3ed3e311a9aecb5f3340cd93b0df736825","kind":0,"pubkey":"6a5cf7b9d9d517ba601021d29a0c038f6f65ba74deb744a5d1ac267a4adf997a","sig":"0bae81e0cda6da003dd69de745e1bc53359481df74f7379ec4ebe346952efd36112eab5feb6af6a7ca5f0cc285904ad6ed46785916560fe847160e0669e85ec3","tags":[]}] +[14:38:52.304] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"4c818b7aa178985ffb1bba8a62c2597dd17447c1d26b63eca08b5f8cdc0c4177","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"a9867b9f3c36562e3c442e36f939c5b88310712c9c930b0c06144cd75b0434f7154fd1fd40d29e6b94a9b8c1a34cb3cfc8b60cdbea7a9b01dc3637e93d57f185","tags":[]}] +[14:38:52.365] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot\",\"display_name\":\"AirportStatusBot\",\"about\":\"This is a social media bot that will post delay information for airports in the United States.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"b55632a33e6cf8c2850eeeac816f19e23f09add70dc1e87026539b813c51f2ed","kind":0,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"f6484554cb4de723e4c020d11f9beb2659db7805345b24fbcbad52492ee3ce6f5c31aa056a36b1504ef05ec75ad4e6889f6b41481001427c2f4051d937ae4aa1","tags":[]}] +[14:38:52.425] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Dan the 3D Printing Dad\",\"about\":\"Christian, dedicated husband & father, programmer, creative guy, and full-time geek. My posts are my own and not representative of my employer.\\n\\nALT: profile picture is an abstract, line-art representation of the account owner's head.\\n\\nProfile banner is a photograph of a 3D printed cartoon-styled raccoon positioned next to a pear.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/108/198/016/866/489/837/original/f89777bbfb30b4a6.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/108/198/016/866/489/837/original/ae55daa2eccb45ac.jpeg\",\"nip05\":\"3DPrintingDad@fosstodon-org.mostr.pub\",\"fields\":[[\"Twitter\",\"https://twitter.com/MrCarefulGamer\"],[\"Printables.com\",\"https://www.printables.com/@Danthe3DPrintingDad\"],[\"Plushie parent of\",\"@SnowballTheBun@plushies.social\"],[\"Twitch\",\"https://www.twitch.tv/twitchplacidcat\"]]}","created_at":1759430260,"id":"ad25cd8582e8b60cc42e4c6c447e151660b6fd2aa732df4ba3ad9f8a9134c7c5","kind":0,"pubkey":"1b3dcd948ebf062fd0ae7c64d0775e724e336a3bf6ce2583f53043cb16979a4a","sig":"cc4cbf3e8d31d8a1d24f918303871407905ff73e0badb8e9d3d1d4193e8ba2e21185aaa56f812bf5c0d7398343b8f6fb07f6e9a73b7bc64366a5799f5da3b4bc","tags":[["proxy","https://fosstodon.org/users/3DPrintingDad","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:52.486] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:38:52.849] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:38:53.091] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:38:54.083] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:38:54.566] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:38:54.807] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:38:55.290] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:38:55.532] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:38:55.954] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:38:56.498] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:38:56.800] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:38:58.289] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:38:58.290] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:38:58.290] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:38:58.290] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:38:58.571] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Nice one. Done🙏🏻.","created_at":1759430330,"id":"59d60fc0f612dfd60c10bd3696e4271e1c6c0e268c1967960639688d960ae092","kind":1,"pubkey":"8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","sig":"dfc471b9aaf7d4807f829e3e303681b96c403fc0060a3589e9b2cce57bbe091929f171fc6c19a9672c0a5abf7aeaddea6206f21943e74cad4f886ab67c8e739c","tags":[["alt","A short note: Nice one. Done🙏🏻."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"]]}] +[14:38:58.632] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Hey🫵🏻","created_at":1759430327,"id":"f4ad2b296d088164d425cee5b380eac07f7fbb1942020362dc8b68befce859e8","kind":1,"pubkey":"adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1","sig":"299f62a838bd0bbd0bedfe0b17848c82210175a24786f7415b5647b1b3d3654b0615617b30e547b362da1de709d3602b47923e8992dd4804741dca6b664181e2","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root"],["e","6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","","reply"],["p","5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","","mention"]]}] +[14:38:58.693] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"When just living becomes a chore. 🤣🫂💜","created_at":1759430314,"id":"61f3892795451d3239df5ce50ec08abbca546b8a60112206f83f4d5d134788f1","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"6d0221f9a02ad054a1b6dd28308ddc577dabdacfadbe20c902c5c421d7265f1558e188141d297cb82840459bd5f1bfc202feb563a36f881ac744d370d5943799","tags":[["alt","A short note: When just living becomes a chore. 🤣🫂💜"],["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","wss://bitcoiner.social/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","20b75a49d097c025b85c20b0f56ea9589e2bbeb2282f5b20f605539e75d42f50","wss://bitcoiner.social/","","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","1a71d37a963a9b31b066008205f93c556e54c7c01ca66bcbe33a8a2ade861040","wss://relay.damus.io/","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"]]}] +[14:38:58.753] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fantastic news nostr:nprofile1qqsgmyfuy22uvdeak9lexv35xkpkldhapdc4f9wjy224twswjvepk0qpr4mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmp0a8u94x \nBitcoin Core seem to have done a u-turn and have abandomed their update and will now continue to maintain spam filters. \n\nThanks Brian for giving this topic attention last month, I doubt I would have explored this if it wasnt for you. ✊\nThe more I learned, the more concerned I became. \nThank you Knots for creating knots node and bitcoin core for listening to the community. 🧡","created_at":1759430311,"id":"12a24f135f3b892b65246a50ebaf7fa077881be51dc9f914d47fc2169daa7a05","kind":1,"pubkey":"e7d89379d91c93749864ec83c635aa91d77d88ae27dd5e4bcaf393880d6ecb07","sig":"13dd99575c398dd42f78f8a39602d0f09fca58d50586ea88d471a7947cfdd40945d96ce06f57ed6cf757051f790f8239ec0519b17eb429ed27652d56c8349be0","tags":[["alt","A short note: Fantastic news nostr:nprofile1qqsgmyfuy22uvdeak9le..."],["e","47da3178d8fa67aee29a5814849bbdb64a4ee861376f1ab713a3129f51a7acbe","wss://relay.nostr.band/","root","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c"],["p","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c","wss://nostr.bitcoiner.social/"],["p","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c","wss://nostr.bitcoiner.social/"]]}] +[14:38:58.814] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nevent1qgs982g78fjdrajcaxp6c8j0ncxxjlu0x0spmr0tusulfsdfyyfltyspzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtcpz4mhxue69uhhyetvv9ujummvv9ejuctswqhsqgqzlv4f7ajleqt9a5ur8w64s0ys9zrl95v54fqcurtvyuu7cfu03vcxckrc","created_at":1759430298,"id":"083f92e7e5e30db3a2c1f68721efbddc72ca598fb9153dc7087717bf50513156","kind":1,"pubkey":"53a91e3a64d1f658e983ac1e4f9e0c697f8f33e01d8debe439f4c1a92113f592","sig":"e8d113ca442802156b3b0360931b028ecf4e5ba4c5f905423a6c4e611ed4c9853fca82c441e671fcf2e314ce70c9452596dc393a29d9e202664ff8718085faf2","tags":[["q","02fb2a9f765fc8165ed3833bb5583c902887f2d194aa418e0d6c2739ec278f8b","","mention"],["p","53a91e3a64d1f658e983ac1e4f9e0c697f8f33e01d8debe439f4c1a92113f592"],["client","olas","31990:fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52:1731850618505"]]}] +[14:38:58.874] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsfrjd9ux5hgsg5cmlz6cdwfh5zv2024g8m2t6g9zqf83l8uqm0svspp4mhxue69uhkummn9ekx7mqpr3mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmqqzqhqe 😘🔥🤘🤘 \n\n","created_at":1759430297,"id":"f67faf4345bad4bf5ff6e2271b95be194ef3f2b14b46a5940d8ab585e2d1991b","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"9cce89eee7c2cb6fe44372cc73f26f4330d605ce4931cca8044ea69ffa154d88ed93164a14af7995b4420acb7f7c2f58cf28f006e6d6c2718aa3eec30a7cab08","tags":[["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832","wss://nos.lol","mention"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","wss://relay.primal.net"],["e","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","wss://relay.primal.net","root","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"]]}] +[14:38:58.935] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇫🇷🇪🇺 PROTESTOS NA FRANÇA CONTRA CORTES DE GASTOS\n\nMilhares protestam na França contra cortes de gastos públicos. Macron deve nomear novo governo neste fim de semana.\nhttps://files.catbox.moe/ykcanh.jpg","created_at":1759430286,"id":"3495b48d17c80977159a5be49763d00b55c90a4131abf5d99452751e5c157ccd","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"8a0ea28226dbe07541fd72dbb94737fc8648391c49aec4ab9317c81055687a2848dbe807d9bb248621c879f8b11e100f1497499424eacaae585e772caaaee9c8","tags":[["image","https://files.catbox.moe/ykcanh.jpg"]]}] +[14:38:58.996] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I dont own a guardians hat.\nGo tribe! Bring back chief wahoo\nhttps://i.nostr.build/Qe412WCHeCYCvDgG.jpg","created_at":1759430280,"id":"442ca5441f236c6406e950ea69f2d429a0cc7e8e9465f12e2a738fe715a6112d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"a3b1bbb3edbf6ee161d27f64d594b2eb279d9334074f30432e46282c5ec517a5260d5161b80ec21a5146ac1d1db44f88e1a49736961a96421a778358ed4a96e3","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["e","f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23"],["e","2f6c4eb99edb947ceb1943498a5ef5350b1fae65b2330e2457d8179271f35a4c","","reply"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://i.nostr.build/Qe412WCHeCYCvDgG.jpg"],["imeta","url https://i.nostr.build/Qe412WCHeCYCvDgG.jpg","x 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","size 49911","m image/jpeg","dim 783x1174","blurhash ^UD]PQIUx]xaxabb_NWBs.t7j[oL?bNGS2RjR*WBtRaejFRjWBWBaexuRQofWBofjsf+R+WBs:oeRjj[ayV[ofayV@j@oLjZa|oekCRjt7j[aykB","ox 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","alt "]]}] +[14:38:59.056] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:36:59Z","created_at":1759430280,"id":"3d802deb8aff6cda2c2d07ce8bb7f7d3dee1aeddd50ca63dcb17d4f7d98b4b95","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"a7b70707d09675ec486d7082fa9a954d161fbc96fe99079947df67926b36c50ab4b6e1498fd90341ca646bd077d9be7509bd3e127c5a714630766ac38c6b1439","tags":[]}] +[14:38:59.116] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:37:26Z","created_at":1759430276,"id":"6a319cbf8521899b99b2f0aba509c2d84f0b779008b8ec1b69057cf723fad119","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"ba3035313500ef2325cc0b2562f4ea19c9d07cebd8edf61a7576ee02aca2a6a788a7a0260f0972d5d589f7a77257548bbbdb9b91b65ae85ce740d6abcd960333","tags":[]}] +[14:38:59.177] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:38:59.237] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"21SatStreet\",\"lud16\":\"purplemoose18@primal.net\",\"display_name\":\"\"}","created_at":1759430314,"id":"164b00bcf8bc63b67425096e9dba4986c199bc6bb17cb4326acd6a38a35bfa57","kind":0,"pubkey":"49107f47564924ae338cb54dc09fff863d72742133a701c2c40a8a34f8e5b5cd","sig":"d887ab459561618135ac914f170b15cde9662738b6f6b5a5d966e53070c66fb5abd7da8d0a04f83e2dd55343b7909e4413b55eef3af4a94571ea0f1c72a9e9f7","tags":[]}] +[14:38:59.298] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"41402-nyan\",\"about\":\"English: rwx\\nRussian: rwx\\nKazakh: r--\\nI'm dude. Born in 1997. Currently maintaining Xash3D FWGS game engine. he/him/any\\nAvatar :src: https://www.bilibili.com/opus/1112401013643411465\\nFollow requests are subject of a vibe Czech.\",\"picture\":\"https://media.suya.place/media/7a276c7d2db6c497921c78479c229bde1b4ba45acf3d152a27e420db30310bbc.jpg\",\"banner\":\"https://suya.place/media/3698a7db091083b9227ea976c990255b69f20e0f978a57ee15e77342064533fb.gif\",\"nip05\":\"a1ba@suya-place.mostr.pub\",\"fields\":[[\"Lockedposting \",\"@a1ba@pleromashit.nexus\"],[\"Xashposting\",\"@a1ba@idtech.space \"],[\"GPG\",\"https://share.mentality.rip/pub/a1ba.gpg\"],[\"GPG fingerprint\",\"D7CF2696DD8C157F32D1F46515B44538C9C71CD0\"]]}","created_at":1759430302,"id":"07f40fe53cd1079acf6361b3d48b7e338a5194cb08ef3fb7e255adbafa1e6ba4","kind":0,"pubkey":"288059249d3068d2994e16ca1aa07ec4db75f434042952e536305c8ea1ce16a9","sig":"55c0d9cdc88ad0db43e8bed19805816a0d92110aa8f9aa54882a8c56dcdf1e3bb18565fe3640aad2440881190b8ad95186d999eb98dd8c07e4fc003abd10fe37","tags":[["emoji","src","https://suya.place/emoji/custom/source.jpg"],["proxy","https://suya.place/users/a1ba","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:59.358] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_ord\",\"display_name\":\"AirportStatusBot (ORD)\",\"about\":\"This is a social media bot that will post delay information for Chicago O'Hare International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"d4b34185bbe124e7d06ebe378124f1ff96a6f48eb273fd5b40c71fe7d8bd1889","kind":0,"pubkey":"78daf7c1b4007c7ef80d89252f4afd9e290d52ae55807f4065a704359663c620","sig":"e3c086030d8f7282443310c7abe30c2f0bc1126501f00186994818755687f0822bec0d88c1b6e0dad736f57ce8b951a12a9ea6e2863050dae1f7194ada8ae966","tags":[]}] +[14:38:59.419] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_atl\",\"display_name\":\"AirportStatusBot (ATL)\",\"about\":\"This is a social media bot that will post delay information for Atlanta Hartsfield-Jackson International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"ef362ef7c20c5ae255795a869fccba8de6898d892af7b011d252c0c628422423","kind":0,"pubkey":"eafef7ceb365bb4fa98f24c49163d46f17045bc42120e042b3372be3422b960b","sig":"e878b1d697cf390a11fa94a88d9571065b37bb88e0ec5aa673bbb43e64d3c752a0f85bdf2a785848dd4ba77d26868bb4f6365e2766163c96fcbc4bc6a308e866","tags":[]}] +[14:38:59.480] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_den\",\"display_name\":\"AirportStatusBot (DEN)\",\"about\":\"This is a social media bot that will post delay information for Denver International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"07d3a1450f894d4ff035fa11d2faf68cb8849e622a1b0cf622638f6b55857672","kind":0,"pubkey":"6e66f79b69b1831a25755b825689d37e9d5cbd68b77546cb80803ad8232e850a","sig":"8002faf42fd916c4f6650f80f7ab94ecb393da5c026da9321959fa50473d90076e2e0787812df10ee7f17aaa994f644bdc1f9d7bed5e53d51f41b5008eca64ef","tags":[]}] +[14:38:59.540] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_lax\",\"display_name\":\"AirportStatusBot (LAX)\",\"about\":\"This is a social media bot that will post delay information for Los Angeles International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"8a68a5cb3d417b8183f722add020210feaaaa78b0c848f57ac1579a1b11b5995","kind":0,"pubkey":"ff4cf7c72c73c106237c84501f7c53c8a46c986c8129852c73ad620ed69f43c2","sig":"55f657d4c1d722af988f5e893f2cf77aec4afcc2e585d723fcfc1ce85018c705897ad6ea3991eaa320f7f061990d7ef62c1229b4fdc9a4bca0ce9881f43bd3e5","tags":[]}] +[14:38:59.601] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_dfw\",\"display_name\":\"AirportStatusBot (DFW)\",\"about\":\"This is a social media bot that will post delay information for Dallas/Fort Worth International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"c00accc6c9b933e913a80ef89a40ec3ed3e311a9aecb5f3340cd93b0df736825","kind":0,"pubkey":"6a5cf7b9d9d517ba601021d29a0c038f6f65ba74deb744a5d1ac267a4adf997a","sig":"0bae81e0cda6da003dd69de745e1bc53359481df74f7379ec4ebe346952efd36112eab5feb6af6a7ca5f0cc285904ad6ed46785916560fe847160e0669e85ec3","tags":[]}] +[14:38:59.661] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"4c818b7aa178985ffb1bba8a62c2597dd17447c1d26b63eca08b5f8cdc0c4177","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"a9867b9f3c36562e3c442e36f939c5b88310712c9c930b0c06144cd75b0434f7154fd1fd40d29e6b94a9b8c1a34cb3cfc8b60cdbea7a9b01dc3637e93d57f185","tags":[]}] +[14:38:59.722] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot\",\"display_name\":\"AirportStatusBot\",\"about\":\"This is a social media bot that will post delay information for airports in the United States.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"b55632a33e6cf8c2850eeeac816f19e23f09add70dc1e87026539b813c51f2ed","kind":0,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"f6484554cb4de723e4c020d11f9beb2659db7805345b24fbcbad52492ee3ce6f5c31aa056a36b1504ef05ec75ad4e6889f6b41481001427c2f4051d937ae4aa1","tags":[]}] +[14:38:59.783] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Dan the 3D Printing Dad\",\"about\":\"Christian, dedicated husband & father, programmer, creative guy, and full-time geek. My posts are my own and not representative of my employer.\\n\\nALT: profile picture is an abstract, line-art representation of the account owner's head.\\n\\nProfile banner is a photograph of a 3D printed cartoon-styled raccoon positioned next to a pear.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/108/198/016/866/489/837/original/f89777bbfb30b4a6.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/108/198/016/866/489/837/original/ae55daa2eccb45ac.jpeg\",\"nip05\":\"3DPrintingDad@fosstodon-org.mostr.pub\",\"fields\":[[\"Twitter\",\"https://twitter.com/MrCarefulGamer\"],[\"Printables.com\",\"https://www.printables.com/@Danthe3DPrintingDad\"],[\"Plushie parent of\",\"@SnowballTheBun@plushies.social\"],[\"Twitch\",\"https://www.twitch.tv/twitchplacidcat\"]]}","created_at":1759430260,"id":"ad25cd8582e8b60cc42e4c6c447e151660b6fd2aa732df4ba3ad9f8a9134c7c5","kind":0,"pubkey":"1b3dcd948ebf062fd0ae7c64d0775e724e336a3bf6ce2583f53043cb16979a4a","sig":"cc4cbf3e8d31d8a1d24f918303871407905ff73e0badb8e9d3d1d4193e8ba2e21185aaa56f812bf5c0d7398343b8f6fb07f6e9a73b7bc64366a5799f5da3b4bc","tags":[["proxy","https://fosstodon.org/users/3DPrintingDad","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:59.843] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:39:00.507] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","2409e48d3a978dd5a4b06c7998173b777b55e3a +[14:39:00.810] RECV nos.lol:443: 95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee"],["p","8685ebef665338dd6931e2ccdf3c19d9f0e +[14:39:01.051] RECV nos.lol:443: 55068dba1facd0"],["p","9c612f8b770f0e3fd35cdac2bc57fcee85 +[14:39:01.172] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","3316e2d88ff91e1089c75feedcd8baa2258b454 +[14:39:01.414] RECV nos.lol:443: c9469ca7facefad68b"],["p","d1b5ba6da6f2d5836ec49e48c5a2f2e017b576d0ba01828f691115b149572b20"],["p +[14:39:02.502] RECV nos.lol:443: 96e36e962a991dac21731dd45da2ee3fd9265d65f9839c15847 +[14:39:02.623] RECV nos.lol:443: c68e4898719b58ccaa23e3e"],["p","c1fc7771f5fa418fd3ac49221 +[14:39:02.683] RECV nos.lol:443: 8f19b42ccb7a663da8f04cbbf6c08c80d20b1"],["p","b51 +[14:39:03.313] RECV nos.lol:443: e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e03 +[14:39:04.465] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:39:04.465] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:39:04.465] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:39:04.465] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:39:04.687] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/3e6a4884e289d738f5ff846b13621ed621a01213347034119bb56402cae3092e.jpg","created_at":1759430342,"id":"172d4fbe179a80c8d24326ae4dd64ca42a26a3ad0c3e14c84ac65cc24dfed1b9","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"cc0c4618f4ab9c0b92e7a2566c70afcc0922be7c975e3659f34cc8e16a256038085fb2178bf00fe24c6849b251bec012f89d8e58352afe2ac67cb37c938b2efb","tags":[]}] +[14:39:04.747] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Congrats on the collab! 🎉","created_at":1759430339,"id":"fa722282c195b89a30ebda64d8b2d602aabae34bbeb0945227d9c3d35927454b","kind":1,"pubkey":"a10260a2aa2f092d85e2c0b82e95eac5f8c60ea19c68e4898719b58ccaa23e3e","sig":"e8ca026a2cbb4360686ec1597a2b495f4d798b8fdfea14a2cfbd2f77ee81d2ca86e43142b099ac39309be06cc4e972fdf3ae04686ced445dd1183d79d474a0a6","tags":[["e","450f959ac2446f541da6f407cc7c2e3aca40ba27222822d6f0cd2149a7b1206d","","root"],["p","ee85604f8ec6e4e24f8eaf2a624d042ebd431dae448fe11779adcfb6bb78575e"],["p","bac4496fc0d52afb88f9dc06c6afb06b19160e5685b1f016ff895078c7415d3d"],["p","d4da3e3928f360dbcc3171c4c00d0f1a8738bb989ad681a29dc6d5fb8036c86c"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"]]}] +[14:39:04.808] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Nice one. Done🙏🏻.","created_at":1759430330,"id":"59d60fc0f612dfd60c10bd3696e4271e1c6c0e268c1967960639688d960ae092","kind":1,"pubkey":"8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","sig":"dfc471b9aaf7d4807f829e3e303681b96c403fc0060a3589e9b2cce57bbe091929f171fc6c19a9672c0a5abf7aeaddea6206f21943e74cad4f886ab67c8e739c","tags":[["alt","A short note: Nice one. Done🙏🏻."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"]]}] +[14:39:04.869] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Hey🫵🏻","created_at":1759430327,"id":"f4ad2b296d088164d425cee5b380eac07f7fbb1942020362dc8b68befce859e8","kind":1,"pubkey":"adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1","sig":"299f62a838bd0bbd0bedfe0b17848c82210175a24786f7415b5647b1b3d3654b0615617b30e547b362da1de709d3602b47923e8992dd4804741dca6b664181e2","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root"],["e","6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","","reply"],["p","5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","","mention"]]}] +[14:39:04.929] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"When just living becomes a chore. 🤣🫂💜","created_at":1759430314,"id":"61f3892795451d3239df5ce50ec08abbca546b8a60112206f83f4d5d134788f1","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"6d0221f9a02ad054a1b6dd28308ddc577dabdacfadbe20c902c5c421d7265f1558e188141d297cb82840459bd5f1bfc202feb563a36f881ac744d370d5943799","tags":[["alt","A short note: When just living becomes a chore. 🤣🫂💜"],["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","wss://bitcoiner.social/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","20b75a49d097c025b85c20b0f56ea9589e2bbeb2282f5b20f605539e75d42f50","wss://bitcoiner.social/","","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","1a71d37a963a9b31b066008205f93c556e54c7c01ca66bcbe33a8a2ade861040","wss://relay.damus.io/","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"]]}] +[14:39:04.990] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fantastic news nostr:nprofile1qqsgmyfuy22uvdeak9lexv35xkpkldhapdc4f9wjy224twswjvepk0qpr4mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmp0a8u94x \nBitcoin Core seem to have done a u-turn and have abandomed their update and will now continue to maintain spam filters. \n\nThanks Brian for giving this topic attention last month, I doubt I would have explored this if it wasnt for you. ✊\nThe more I learned, the more concerned I became. \nThank you Knots for creating knots node and bitcoin core for listening to the community. 🧡","created_at":1759430311,"id":"12a24f135f3b892b65246a50ebaf7fa077881be51dc9f914d47fc2169daa7a05","kind":1,"pubkey":"e7d89379d91c93749864ec83c635aa91d77d88ae27dd5e4bcaf393880d6ecb07","sig":"13dd99575c398dd42f78f8a39602d0f09fca58d50586ea88d471a7947cfdd40945d96ce06f57ed6cf757051f790f8239ec0519b17eb429ed27652d56c8349be0","tags":[["alt","A short note: Fantastic news nostr:nprofile1qqsgmyfuy22uvdeak9le..."],["e","47da3178d8fa67aee29a5814849bbdb64a4ee861376f1ab713a3129f51a7acbe","wss://relay.nostr.band/","root","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c"],["p","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c","wss://nostr.bitcoiner.social/"],["p","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c","wss://nostr.bitcoiner.social/"]]}] +[14:39:05.050] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nevent1qgs982g78fjdrajcaxp6c8j0ncxxjlu0x0spmr0tusulfsdfyyfltyspzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtcpz4mhxue69uhhyetvv9ujummvv9ejuctswqhsqgqzlv4f7ajleqt9a5ur8w64s0ys9zrl95v54fqcurtvyuu7cfu03vcxckrc","created_at":1759430298,"id":"083f92e7e5e30db3a2c1f68721efbddc72ca598fb9153dc7087717bf50513156","kind":1,"pubkey":"53a91e3a64d1f658e983ac1e4f9e0c697f8f33e01d8debe439f4c1a92113f592","sig":"e8d113ca442802156b3b0360931b028ecf4e5ba4c5f905423a6c4e611ed4c9853fca82c441e671fcf2e314ce70c9452596dc393a29d9e202664ff8718085faf2","tags":[["q","02fb2a9f765fc8165ed3833bb5583c902887f2d194aa418e0d6c2739ec278f8b","","mention"],["p","53a91e3a64d1f658e983ac1e4f9e0c697f8f33e01d8debe439f4c1a92113f592"],["client","olas","31990:fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52:1731850618505"]]}] +[14:39:05.111] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsfrjd9ux5hgsg5cmlz6cdwfh5zv2024g8m2t6g9zqf83l8uqm0svspp4mhxue69uhkummn9ekx7mqpr3mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmqqzqhqe 😘🔥🤘🤘 \n\n","created_at":1759430297,"id":"f67faf4345bad4bf5ff6e2271b95be194ef3f2b14b46a5940d8ab585e2d1991b","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"9cce89eee7c2cb6fe44372cc73f26f4330d605ce4931cca8044ea69ffa154d88ed93164a14af7995b4420acb7f7c2f58cf28f006e6d6c2718aa3eec30a7cab08","tags":[["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832","wss://nos.lol","mention"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","wss://relay.primal.net"],["e","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","wss://relay.primal.net","root","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"]]}] +[14:39:05.171] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇫🇷🇪🇺 PROTESTOS NA FRANÇA CONTRA CORTES DE GASTOS\n\nMilhares protestam na França contra cortes de gastos públicos. Macron deve nomear novo governo neste fim de semana.\nhttps://files.catbox.moe/ykcanh.jpg","created_at":1759430286,"id":"3495b48d17c80977159a5be49763d00b55c90a4131abf5d99452751e5c157ccd","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"8a0ea28226dbe07541fd72dbb94737fc8648391c49aec4ab9317c81055687a2848dbe807d9bb248621c879f8b11e100f1497499424eacaae585e772caaaee9c8","tags":[["image","https://files.catbox.moe/ykcanh.jpg"]]}] +[14:39:05.232] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I dont own a guardians hat.\nGo tribe! Bring back chief wahoo\nhttps://i.nostr.build/Qe412WCHeCYCvDgG.jpg","created_at":1759430280,"id":"442ca5441f236c6406e950ea69f2d429a0cc7e8e9465f12e2a738fe715a6112d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"a3b1bbb3edbf6ee161d27f64d594b2eb279d9334074f30432e46282c5ec517a5260d5161b80ec21a5146ac1d1db44f88e1a49736961a96421a778358ed4a96e3","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["e","f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23"],["e","2f6c4eb99edb947ceb1943498a5ef5350b1fae65b2330e2457d8179271f35a4c","","reply"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://i.nostr.build/Qe412WCHeCYCvDgG.jpg"],["imeta","url https://i.nostr.build/Qe412WCHeCYCvDgG.jpg","x 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","size 49911","m image/jpeg","dim 783x1174","blurhash ^UD]PQIUx]xaxabb_NWBs.t7j[oL?bNGS2RjR*WBtRaejFRjWBWBaexuRQofWBofjsf+R+WBs:oeRjj[ayV[ofayV@j@oLjZa|oekCRjt7j[aykB","ox 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","alt "]]}] +[14:39:05.292] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:39:05.353] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"name\":\"\",\"nip05\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"\",\"about\":\"\",\"website\":\"\",\"display_name\":\"UncleHas11\"}","created_at":1759430339,"id":"225871e9aecdb03f3f5494f31c7327673248972b23a3442d2d70aba465f017fb","kind":0,"pubkey":"381a33ad1daa7c3a0b927527a94504130f471aa99a992aec7ec1d2e785995760","sig":"1874a58bf77ecfb7647264dd9938666e866f45733efdf328817c925ee396318ebb6c29f305cb684ca63c33a5acb7bcc51a5ebd724e076b95a4ca14c6c663de13","tags":[]}] +[14:39:05.414] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"21SatStreet\",\"lud16\":\"purplemoose18@primal.net\",\"display_name\":\"\"}","created_at":1759430314,"id":"164b00bcf8bc63b67425096e9dba4986c199bc6bb17cb4326acd6a38a35bfa57","kind":0,"pubkey":"49107f47564924ae338cb54dc09fff863d72742133a701c2c40a8a34f8e5b5cd","sig":"d887ab459561618135ac914f170b15cde9662738b6f6b5a5d966e53070c66fb5abd7da8d0a04f83e2dd55343b7909e4413b55eef3af4a94571ea0f1c72a9e9f7","tags":[]}] +[14:39:05.474] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"41402-nyan\",\"about\":\"English: rwx\\nRussian: rwx\\nKazakh: r--\\nI'm dude. Born in 1997. Currently maintaining Xash3D FWGS game engine. he/him/any\\nAvatar :src: https://www.bilibili.com/opus/1112401013643411465\\nFollow requests are subject of a vibe Czech.\",\"picture\":\"https://media.suya.place/media/7a276c7d2db6c497921c78479c229bde1b4ba45acf3d152a27e420db30310bbc.jpg\",\"banner\":\"https://suya.place/media/3698a7db091083b9227ea976c990255b69f20e0f978a57ee15e77342064533fb.gif\",\"nip05\":\"a1ba@suya-place.mostr.pub\",\"fields\":[[\"Lockedposting \",\"@a1ba@pleromashit.nexus\"],[\"Xashposting\",\"@a1ba@idtech.space \"],[\"GPG\",\"https://share.mentality.rip/pub/a1ba.gpg\"],[\"GPG fingerprint\",\"D7CF2696DD8C157F32D1F46515B44538C9C71CD0\"]]}","created_at":1759430302,"id":"07f40fe53cd1079acf6361b3d48b7e338a5194cb08ef3fb7e255adbafa1e6ba4","kind":0,"pubkey":"288059249d3068d2994e16ca1aa07ec4db75f434042952e536305c8ea1ce16a9","sig":"55c0d9cdc88ad0db43e8bed19805816a0d92110aa8f9aa54882a8c56dcdf1e3bb18565fe3640aad2440881190b8ad95186d999eb98dd8c07e4fc003abd10fe37","tags":[["emoji","src","https://suya.place/emoji/custom/source.jpg"],["proxy","https://suya.place/users/a1ba","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:39:05.535] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_ord\",\"display_name\":\"AirportStatusBot (ORD)\",\"about\":\"This is a social media bot that will post delay information for Chicago O'Hare International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"d4b34185bbe124e7d06ebe378124f1ff96a6f48eb273fd5b40c71fe7d8bd1889","kind":0,"pubkey":"78daf7c1b4007c7ef80d89252f4afd9e290d52ae55807f4065a704359663c620","sig":"e3c086030d8f7282443310c7abe30c2f0bc1126501f00186994818755687f0822bec0d88c1b6e0dad736f57ce8b951a12a9ea6e2863050dae1f7194ada8ae966","tags":[]}] +[14:39:05.595] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_atl\",\"display_name\":\"AirportStatusBot (ATL)\",\"about\":\"This is a social media bot that will post delay information for Atlanta Hartsfield-Jackson International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"ef362ef7c20c5ae255795a869fccba8de6898d892af7b011d252c0c628422423","kind":0,"pubkey":"eafef7ceb365bb4fa98f24c49163d46f17045bc42120e042b3372be3422b960b","sig":"e878b1d697cf390a11fa94a88d9571065b37bb88e0ec5aa673bbb43e64d3c752a0f85bdf2a785848dd4ba77d26868bb4f6365e2766163c96fcbc4bc6a308e866","tags":[]}] +[14:39:05.656] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_den\",\"display_name\":\"AirportStatusBot (DEN)\",\"about\":\"This is a social media bot that will post delay information for Denver International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"07d3a1450f894d4ff035fa11d2faf68cb8849e622a1b0cf622638f6b55857672","kind":0,"pubkey":"6e66f79b69b1831a25755b825689d37e9d5cbd68b77546cb80803ad8232e850a","sig":"8002faf42fd916c4f6650f80f7ab94ecb393da5c026da9321959fa50473d90076e2e0787812df10ee7f17aaa994f644bdc1f9d7bed5e53d51f41b5008eca64ef","tags":[]}] +[14:39:05.716] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_lax\",\"display_name\":\"AirportStatusBot (LAX)\",\"about\":\"This is a social media bot that will post delay information for Los Angeles International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"8a68a5cb3d417b8183f722add020210feaaaa78b0c848f57ac1579a1b11b5995","kind":0,"pubkey":"ff4cf7c72c73c106237c84501f7c53c8a46c986c8129852c73ad620ed69f43c2","sig":"55f657d4c1d722af988f5e893f2cf77aec4afcc2e585d723fcfc1ce85018c705897ad6ea3991eaa320f7f061990d7ef62c1229b4fdc9a4bca0ce9881f43bd3e5","tags":[]}] +[14:39:05.777] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_dfw\",\"display_name\":\"AirportStatusBot (DFW)\",\"about\":\"This is a social media bot that will post delay information for Dallas/Fort Worth International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"c00accc6c9b933e913a80ef89a40ec3ed3e311a9aecb5f3340cd93b0df736825","kind":0,"pubkey":"6a5cf7b9d9d517ba601021d29a0c038f6f65ba74deb744a5d1ac267a4adf997a","sig":"0bae81e0cda6da003dd69de745e1bc53359481df74f7379ec4ebe346952efd36112eab5feb6af6a7ca5f0cc285904ad6ed46785916560fe847160e0669e85ec3","tags":[]}] +[14:39:05.837] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"4c818b7aa178985ffb1bba8a62c2597dd17447c1d26b63eca08b5f8cdc0c4177","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"a9867b9f3c36562e3c442e36f939c5b88310712c9c930b0c06144cd75b0434f7154fd1fd40d29e6b94a9b8c1a34cb3cfc8b60cdbea7a9b01dc3637e93d57f185","tags":[]}] +[14:39:05.898] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot\",\"display_name\":\"AirportStatusBot\",\"about\":\"This is a social media bot that will post delay information for airports in the United States.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"b55632a33e6cf8c2850eeeac816f19e23f09add70dc1e87026539b813c51f2ed","kind":0,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"f6484554cb4de723e4c020d11f9beb2659db7805345b24fbcbad52492ee3ce6f5c31aa056a36b1504ef05ec75ad4e6889f6b41481001427c2f4051d937ae4aa1","tags":[]}] +[14:39:05.959] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:39:06.019] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759430339,"id":"94ddacc63d0aae6fff0e46dac805b6bda7b7845ef058c9132cc28dc2e409db8e","kind":3,"pubkey":"381a33ad1daa7c3a0b927527a94504130f471aa99a992aec7ec1d2e785995760","sig":"0e9ae6eac2590b3afeb45e791802d01a2ba70b74ff9640275249fb28bd9ee2c394a05501fbf3c31345a2825f3d39c92c2bcea456438168ef027789388ab30a32","tags":[["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7996c183e036df27802945b80bbdc8b0bf5971b6621a86bf3569c332117f07d"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","c48b5cced5ada74db078df6b00fa53fc1139d73bf0ed16de325d52220211dbd5"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","e1055729d51e037b3c14e8c56e2c79c22183385d94aadb32e5dc88092cd0fef4"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","6c535d95a8659b234d5a0805034f5f0a67e3c0ceffcc459f61f680fe944424bf"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","c7dccba4fe4426a7b1ea239a5637ba40fab9862c8c86b3330fe65e9f667435f6"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","381a33ad1daa7c3a0b927527a94504130f471aa99a992aec7ec1d2e785995760"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"]]}] +[14:39:06.685] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","2409e48d3a978dd5a4b06c7998173b777b55e3a +[14:39:06.987] RECV nos.lol:443: 95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee"],["p","8685ebef665338dd6931e2ccdf3c19d9f0e +[14:39:07.228] RECV nos.lol:443: 55068dba1facd0"],["p","9c612f8b770f0e3fd35cdac2bc57fcee85 +[14:39:07.349] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","3316e2d88ff91e1089c75feedcd8baa2258b454 +[14:39:07.591] RECV nos.lol:443: c9469ca7facefad68b"],["p","d1b5ba6da6f2d5836ec49e48c5a2f2e017b576d0ba01828f691115b149572b20"],["p +[14:39:08.643] RECV nos.lol:443: 96e36e962a991dac21731dd45da2ee3fd9265d65f9839c15847 +[14:39:08.763] RECV nos.lol:443: c68e4898719b58ccaa23e3e"],["p","c1fc7771f5fa418fd3ac49221 +[14:39:08.824] RECV nos.lol:443: 8f19b42ccb7a663da8f04cbbf6c08c80d20b1"],["p","b51 diff --git a/dev_build.sh b/dev_build.sh deleted file mode 100755 index d5ef46da..00000000 --- a/dev_build.sh +++ /dev/null @@ -1,394 +0,0 @@ -#!/bin/bash - -# NOSTR Core Library Build Script -# Provides convenient build targets for the standalone library -# Automatically increments patch version with each build - -set -e # Exit on any error - -# Colors for output -RED='\033[0;31m' -GREEN='\033[0;32m' -YELLOW='\033[1;33m' -BLUE='\033[0;34m' -NC='\033[0m' # No Color - -# Function to print colored output -print_status() { - echo -e "${BLUE}[INFO]${NC} $1" -} - -print_success() { - echo -e "${GREEN}[SUCCESS]${NC} $1" -} - -print_warning() { - echo -e "${YELLOW}[WARNING]${NC} $1" -} - -print_error() { - echo -e "${RED}[ERROR]${NC} $1" -} - -# Function to automatically increment version -increment_version() { - print_status "Incrementing version..." - - # Check if we're in a git repository - if ! git rev-parse --git-dir > /dev/null 2>&1; then - print_warning "Not in a git repository - skipping version increment" - return 0 - fi - - # Get the highest version tag (not necessarily the most recent chronologically) - LATEST_TAG=$(git tag -l 'v*.*.*' | sort -V | tail -n 1 || echo "v0.1.0") - if [[ -z "$LATEST_TAG" ]]; then - LATEST_TAG="v0.1.0" - fi - - # Extract version components (remove 'v' prefix if present) - VERSION=${LATEST_TAG#v} - - # Parse major.minor.patch - if [[ $VERSION =~ ^([0-9]+)\.([0-9]+)\.([0-9]+)$ ]]; then - MAJOR=${BASH_REMATCH[1]} - MINOR=${BASH_REMATCH[2]} - PATCH=${BASH_REMATCH[3]} - else - print_error "Invalid version format in tag: $LATEST_TAG" - print_error "Expected format: v0.1.0" - return 1 - fi - - # Increment patch version - NEW_PATCH=$((PATCH + 1)) - NEW_VERSION="v${MAJOR}.${MINOR}.${NEW_PATCH}" - - print_status "Current version: $LATEST_TAG" - print_status "New version: $NEW_VERSION" - - # Create new git tag - if git tag "$NEW_VERSION" 2>/dev/null; then - print_success "Created new version tag: $NEW_VERSION" - else - print_warning "Tag $NEW_VERSION already exists - using existing version" - NEW_VERSION=$LATEST_TAG - fi - - # Update VERSION file for compatibility - echo "${NEW_VERSION#v}" > VERSION - print_success "Updated VERSION file to ${NEW_VERSION#v}" -} - -# Function to perform git operations after successful build -perform_git_operations() { - local commit_message="$1" - - if [[ -z "$commit_message" ]]; then - return 0 # No commit message provided, skip git operations - fi - - print_status "Performing git operations..." - - # Check if we're in a git repository - if ! git rev-parse --git-dir > /dev/null 2>&1; then - print_warning "Not in a git repository - skipping git operations" - return 0 - fi - - # Check if there are changes to commit - if git diff --quiet && git diff --cached --quiet; then - print_warning "No changes to commit" - return 0 - fi - - # Add all changes - print_status "Adding changes to git..." - if ! git add .; then - print_error "Failed to add changes to git" - return 1 - fi - - # Commit changes - print_status "Committing changes with message: '$commit_message'" - if ! git commit -m "$commit_message"; then - print_error "Failed to commit changes" - return 1 - fi - - # Push changes - print_status "Pushing changes to remote repository..." - if ! git push; then - print_error "Failed to push changes to remote repository" - print_warning "Changes have been committed locally but not pushed" - return 1 - fi - - print_success "Git operations completed successfully!" - return 0 -} - -# Function to show usage -show_usage() { - echo "NOSTR Core Library Build Script" - echo "===============================" - echo "" - echo "Usage: $0 [target] [-m \"commit message\"]" - echo "" - echo "Available targets:" - echo " clean - Clean all build artifacts" - echo " lib - Build static libraries for both x64 and ARM64 (default)" - echo " x64 - Build x64 static library only" - echo " arm64 - Build ARM64 static library only" - echo " all - Build both architectures and examples" - echo " examples - Build example programs" - echo " test - Run tests" - echo " install - Install library to system" - echo " uninstall - Remove library from system" - echo " help - Show this help message" - echo "" - echo "Options:" - echo " -m \"message\" - Git commit message (triggers automatic git add, commit, push after successful build)" - echo "" - echo "Examples:" - echo " $0 lib -m \"Add new proof-of-work parameters\"" - echo " $0 x64 -m \"Fix OpenSSL minimal build configuration\"" - echo " $0 lib # Build without git operations" - echo "" - echo "Library outputs (both self-contained with secp256k1):" - echo " libnostr_core.a - x86_64 static library" - echo " libnostr_core_arm64.a - ARM64 static library" - echo " examples/* - Example programs" - echo "" - echo "Both libraries include secp256k1 objects internally." - echo "Users only need to link with the library + -lm." -} - -# Parse command line arguments -TARGET="" -COMMIT_MESSAGE="" - -# Parse arguments -while [[ $# -gt 0 ]]; do - case $1 in - -m) - COMMIT_MESSAGE="$2" - shift 2 - ;; - -*) - print_error "Unknown option: $1" - show_usage - exit 1 - ;; - *) - if [[ -z "$TARGET" ]]; then - TARGET="$1" - else - print_error "Multiple targets specified: $TARGET and $1" - show_usage - exit 1 - fi - shift - ;; - esac -done - -# Set default target if none specified -TARGET=${TARGET:-lib} - -case "$TARGET" in - clean) - print_status "Cleaning build artifacts..." - make clean - print_success "Clean completed" - ;; - - lib|library) - increment_version - print_status "Building both x64 and ARM64 static libraries..." - make clean - make - - # Check both libraries were built - SUCCESS=0 - if [ -f "libnostr_core.a" ]; then - SIZE_X64=$(stat -c%s "libnostr_core.a") - print_success "x64 static library built successfully (${SIZE_X64} bytes)" - SUCCESS=$((SUCCESS + 1)) - else - print_error "Failed to build x64 static library" - fi - - if [ -f "libnostr_core_arm64.a" ]; then - SIZE_ARM64=$(stat -c%s "libnostr_core_arm64.a") - print_success "ARM64 static library built successfully (${SIZE_ARM64} bytes)" - SUCCESS=$((SUCCESS + 1)) - else - print_error "Failed to build ARM64 static library" - fi - - if [ $SUCCESS -eq 2 ]; then - print_success "Both architectures built successfully!" - ls -la libnostr_core*.a - perform_git_operations "$COMMIT_MESSAGE" - else - print_error "Failed to build all libraries" - exit 1 - fi - ;; - - x64|x64-only) - increment_version - print_status "Building x64 static library only..." - make clean - make x64 - if [ -f "libnostr_core.a" ]; then - SIZE=$(stat -c%s "libnostr_core.a") - print_success "x64 static library built successfully (${SIZE} bytes)" - ls -la libnostr_core.a - perform_git_operations "$COMMIT_MESSAGE" - else - print_error "Failed to build x64 static library" - exit 1 - fi - ;; - - arm64|arm64-only) - increment_version - print_status "Building ARM64 static library only..." - make clean - make arm64 - if [ -f "libnostr_core_arm64.a" ]; then - SIZE=$(stat -c%s "libnostr_core_arm64.a") - print_success "ARM64 static library built successfully (${SIZE} bytes)" - ls -la libnostr_core_arm64.a - perform_git_operations "$COMMIT_MESSAGE" - else - print_error "Failed to build ARM64 static library" - exit 1 - fi - ;; - - shared) - increment_version - print_status "Building shared library..." - make clean - make libnostr_core.so - if [ -f "libnostr_core.so" ]; then - SIZE=$(stat -c%s "libnostr_core.so") - print_success "Shared library built successfully (${SIZE} bytes)" - ls -la libnostr_core.so - perform_git_operations "$COMMIT_MESSAGE" - else - print_error "Failed to build shared library" - exit 1 - fi - ;; - - all) - increment_version - print_status "Building all libraries and examples..." - make clean - make all - - # Check both libraries and examples were built - SUCCESS=0 - if [ -f "libnostr_core.a" ]; then - SIZE_X64=$(stat -c%s "libnostr_core.a") - print_success "x64 static library built successfully (${SIZE_X64} bytes)" - SUCCESS=$((SUCCESS + 1)) - else - print_error "Failed to build x64 static library" - fi - - if [ -f "libnostr_core_arm64.a" ]; then - SIZE_ARM64=$(stat -c%s "libnostr_core_arm64.a") - print_success "ARM64 static library built successfully (${SIZE_ARM64} bytes)" - SUCCESS=$((SUCCESS + 1)) - else - print_error "Failed to build ARM64 static library" - fi - - if [ $SUCCESS -eq 2 ]; then - print_success "All libraries and examples built successfully!" - ls -la libnostr_core*.a - ls -la examples/ - perform_git_operations "$COMMIT_MESSAGE" - else - print_error "Failed to build all components" - exit 1 - fi - ;; - - examples) - increment_version - print_status "Building both libraries and examples..." - make clean - make - make examples - - # Verify libraries were built - if [ -f "libnostr_core.a" ] && [ -f "libnostr_core_arm64.a" ]; then - print_success "Both libraries and examples built successfully" - ls -la libnostr_core*.a - ls -la examples/ - perform_git_operations "$COMMIT_MESSAGE" - else - print_error "Failed to build libraries for examples" - exit 1 - fi - ;; - - test) - print_status "Running tests..." - make clean - make - if make test-crypto 2>/dev/null; then - print_success "All tests passed" - else - print_warning "Running simple test instead..." - make test - print_success "Basic test completed" - fi - ;; - - tests) - print_status "Running tests..." - make clean - make - if make test-crypto 2>/dev/null; then - print_success "All tests passed" - else - print_warning "Running simple test instead..." - make test - print_success "Basic test completed" - fi - ;; - - install) - increment_version - print_status "Installing library to system..." - make clean - make all - sudo make install - print_success "Library installed to /usr/local" - perform_git_operations "$COMMIT_MESSAGE" - ;; - - uninstall) - print_status "Uninstalling library from system..." - sudo make uninstall - print_success "Library uninstalled" - ;; - - help|--help|-h) - show_usage - ;; - - *) - print_error "Unknown target: $TARGET" - echo "" - show_usage - exit 1 - ;; -esac diff --git a/increment_and_push.sh b/increment_and_push.sh new file mode 100755 index 00000000..41382887 --- /dev/null +++ b/increment_and_push.sh @@ -0,0 +1,150 @@ +#!/bin/bash + +# increment_and_push.sh - Version increment and git automation script +# Usage: ./increment_and_push.sh "meaningful git comment" + +set -e # Exit on error + +# Color constants +RED='\033[31m' +GREEN='\033[32m' +YELLOW='\033[33m' +BLUE='\033[34m' +BOLD='\033[1m' +RESET='\033[0m' + +# Function to print output with colors +print_info() { + if [ "$USE_COLORS" = true ]; then + echo -e "${BLUE}[INFO]${RESET} $1" + else + echo "[INFO] $1" + fi +} + +print_success() { + if [ "$USE_COLORS" = true ]; then + echo -e "${GREEN}${BOLD}[SUCCESS]${RESET} $1" + else + echo "[SUCCESS] $1" + fi +} + +print_warning() { + if [ "$USE_COLORS" = true ]; then + echo -e "${YELLOW}[WARNING]${RESET} $1" + else + echo "[WARNING] $1" + fi +} + +print_error() { + if [ "$USE_COLORS" = true ]; then + echo -e "${RED}${BOLD}[ERROR]${RESET} $1" + else + echo "[ERROR] $1" + fi +} + +# Check if we're in the correct directory +CURRENT_DIR=$(basename "$(pwd)") +if [ "$CURRENT_DIR" != "nostr_core_lib" ]; then + print_error "Script must be run from the nostr_core_lib directory" + echo "" + echo "Current directory: $CURRENT_DIR" + echo "Expected directory: nostr_core_lib" + echo "" + echo "Please change to the nostr_core_lib directory first." + echo "" + exit 1 +fi + +# Check if git repository exists +if ! git rev-parse --git-dir > /dev/null 2>&1; then + print_error "Not a git repository. Please initialize git first." + exit 1 +fi + +# Check if we have a commit message +if [ $# -eq 0 ]; then + print_error "Usage: $0 \"meaningful git comment\"" + echo "" + echo "Example: $0 \"Add enhanced subscription functionality\"" + echo "" + exit 1 +fi + +COMMIT_MESSAGE="$1" + +# Check if nostr_core.h exists +if [ ! -f "nostr_core/nostr_core.h" ]; then + print_error "nostr_core/nostr_core.h not found" + exit 1 +fi + +print_info "Starting version increment and push process..." + +# Extract current version from nostr_core.h +CURRENT_VERSION=$(grep '#define VERSION ' nostr_core/nostr_core.h | cut -d'"' -f2) +if [ -z "$CURRENT_VERSION" ]; then + print_error "Could not find VERSION define in nostr_core.h" + exit 1 +fi + +# Extract version components +VERSION_MAJOR=$(grep '#define VERSION_MAJOR ' nostr_core/nostr_core.h | awk '{print $3}') +VERSION_MINOR=$(grep '#define VERSION_MINOR ' nostr_core/nostr_core.h | awk '{print $3}') +VERSION_PATCH=$(grep '#define VERSION_PATCH ' nostr_core/nostr_core.h | awk '{print $3}') + +if [ -z "$VERSION_MAJOR" ] || [ -z "$VERSION_MINOR" ] || [ -z "$VERSION_PATCH" ]; then + print_error "Could not extract version components from nostr_core.h" + exit 1 +fi + +print_info "Current version: $CURRENT_VERSION (Major: $VERSION_MAJOR, Minor: $VERSION_MINOR, Patch: $VERSION_PATCH)" + +# Increment patch version +NEW_PATCH=$((VERSION_PATCH + 1)) +NEW_VERSION="v$VERSION_MAJOR.$VERSION_MINOR.$NEW_PATCH" + +print_info "New version will be: $NEW_VERSION" + +# Update version in nostr_core.h +sed -i "s/#define VERSION .*/#define VERSION \"$NEW_VERSION\"/" nostr_core/nostr_core.h +sed -i "s/#define VERSION_PATCH .*/#define VERSION_PATCH $NEW_PATCH/" nostr_core/nostr_core.h + +print_success "Updated version in nostr_core.h" + +# Check if VERSION file exists and update it +if [ -f "VERSION" ]; then + echo "$VERSION_MAJOR.$VERSION_MINOR.$NEW_PATCH" > VERSION + print_success "Updated VERSION file" +fi + +# Check git status +if ! git diff --quiet; then + print_info "Adding changes to git..." + git add . + + print_info "Committing changes..." + git commit -m "$COMMIT_MESSAGE" + + print_success "Changes committed" +else + print_warning "No changes to commit" +fi + +# Create and push git tag +print_info "Creating git tag: $NEW_VERSION" +git tag "$NEW_VERSION" + +print_info "Pushing commits and tags..." +git push origin main +git push origin "$NEW_VERSION" + +print_success "Version $NEW_VERSION successfully released!" +print_info "Git commit: $COMMIT_MESSAGE" +print_info "Tag: $NEW_VERSION" + +echo "" +echo "🎉 Release complete! Version $NEW_VERSION is now live." \ No newline at end of file diff --git a/nostr_core/core_relay_pool.c b/nostr_core/core_relay_pool.c index be9b446d..5b875cb8 100644 --- a/nostr_core/core_relay_pool.c +++ b/nostr_core/core_relay_pool.c @@ -100,12 +100,27 @@ struct nostr_pool_subscription { // Callbacks void (*on_event)(cJSON* event, const char* relay_url, void* user_data); - void (*on_eose)(void* user_data); + void (*on_eose)(cJSON** events, int event_count, void* user_data); void* user_data; int closed; int close_on_eose; // Auto-close subscription when all relays send EOSE nostr_relay_pool_t* pool; // Back reference to pool + + // New subscription control parameters + int enable_deduplication; // Per-subscription deduplication control + nostr_pool_eose_result_mode_t result_mode; // EOSE result selection mode + int relay_timeout_seconds; // Timeout for individual relay operations + int eose_timeout_seconds; // Timeout for waiting for EOSE completion + time_t subscription_start_time; // When subscription was created + + // Event collection for EOSE result modes + cJSON** collected_events; + int collected_event_count; + int collected_events_capacity; + + // Per-relay timeout tracking + time_t* relay_last_activity; // Last activity time per relay }; struct nostr_relay_pool { @@ -544,9 +559,13 @@ nostr_pool_subscription_t* nostr_relay_pool_subscribe( int relay_count, cJSON* filter, void (*on_event)(cJSON* event, const char* relay_url, void* user_data), - void (*on_eose)(void* user_data), + void (*on_eose)(cJSON** events, int event_count, void* user_data), void* user_data, - int close_on_eose) { + int close_on_eose, + int enable_deduplication, + nostr_pool_eose_result_mode_t result_mode, + int relay_timeout_seconds, + int eose_timeout_seconds) { if (!pool || !relay_urls || relay_count <= 0 || !filter || pool->subscription_count >= NOSTR_POOL_MAX_SUBSCRIPTIONS) { @@ -603,6 +622,55 @@ nostr_pool_subscription_t* nostr_relay_pool_subscribe( sub->closed = 0; sub->close_on_eose = close_on_eose; sub->pool = pool; + + // Set new subscription control parameters + sub->enable_deduplication = enable_deduplication; + sub->result_mode = result_mode; + sub->relay_timeout_seconds = relay_timeout_seconds; + sub->eose_timeout_seconds = eose_timeout_seconds; + sub->subscription_start_time = time(NULL); + + // Initialize event collection arrays (only for EOSE result modes) + if (result_mode != NOSTR_POOL_EOSE_FIRST) { + sub->collected_events_capacity = 10; // Initial capacity + sub->collected_events = calloc(sub->collected_events_capacity, sizeof(cJSON*)); + if (!sub->collected_events) { + // Cleanup on failure + cJSON_Delete(sub->filter); + for (int j = 0; j < relay_count; j++) { + free(sub->relay_urls[j]); + } + free(sub->relay_urls); + free(sub->eose_received); + free(sub); + return NULL; + } + sub->collected_event_count = 0; + } else { + sub->collected_events = NULL; + sub->collected_event_count = 0; + sub->collected_events_capacity = 0; + } + + // Initialize per-relay activity tracking + sub->relay_last_activity = calloc(relay_count, sizeof(time_t)); + if (!sub->relay_last_activity) { + // Cleanup on failure + if (sub->collected_events) free(sub->collected_events); + cJSON_Delete(sub->filter); + for (int j = 0; j < relay_count; j++) { + free(sub->relay_urls[j]); + } + free(sub->relay_urls); + free(sub->eose_received); + free(sub); + return NULL; + } + // Initialize all relay activity times to current time + time_t now = time(NULL); + for (int i = 0; i < relay_count; i++) { + sub->relay_last_activity[i] = now; + } // Add to pool pool->subscriptions[pool->subscription_count++] = sub; @@ -700,43 +768,56 @@ static void process_relay_message(nostr_relay_pool_t* pool, relay_connection_t* if (event_id_json && cJSON_IsString(event_id_json)) { const char* event_id = cJSON_GetStringValue(event_id_json); - // Check for duplicate - if (!is_event_seen(pool, event_id)) { - mark_event_seen(pool, event_id); - relay->stats.events_received++; - - // Measure query latency (first event response) - double latency_ms = remove_subscription_timing(relay, subscription_id); - if (latency_ms > 0.0) { - // Update query latency statistics - if (relay->stats.query_samples == 0) { - relay->stats.query_latency_avg = latency_ms; - relay->stats.query_latency_min = latency_ms; - relay->stats.query_latency_max = latency_ms; - } else { - relay->stats.query_latency_avg = - (relay->stats.query_latency_avg * relay->stats.query_samples + latency_ms) / - (relay->stats.query_samples + 1); - - if (latency_ms < relay->stats.query_latency_min) { - relay->stats.query_latency_min = latency_ms; - } - if (latency_ms > relay->stats.query_latency_max) { - relay->stats.query_latency_max = latency_ms; - } - } - relay->stats.query_samples++; + // Find subscription first + nostr_pool_subscription_t* sub = NULL; + for (int i = 0; i < pool->subscription_count; i++) { + if (pool->subscriptions[i] && !pool->subscriptions[i]->closed && + strcmp(pool->subscriptions[i]->subscription_id, subscription_id) == 0) { + sub = pool->subscriptions[i]; + break; } - - // Find subscription and call callback - for (int i = 0; i < pool->subscription_count; i++) { - nostr_pool_subscription_t* sub = pool->subscriptions[i]; - if (sub && !sub->closed && - strcmp(sub->subscription_id, subscription_id) == 0) { - if (sub->on_event) { - sub->on_event(event, relay->url, sub->user_data); + } + + if (sub) { + // Check for duplicate (per-subscription deduplication) + int is_duplicate = 0; + if (sub->enable_deduplication) { + if (is_event_seen(pool, event_id)) { + is_duplicate = 1; + } else { + mark_event_seen(pool, event_id); + } + } + + if (!is_duplicate) { + relay->stats.events_received++; + + // Measure query latency (first event response) + double latency_ms = remove_subscription_timing(relay, subscription_id); + if (latency_ms > 0.0) { + // Update query latency statistics + if (relay->stats.query_samples == 0) { + relay->stats.query_latency_avg = latency_ms; + relay->stats.query_latency_min = latency_ms; + relay->stats.query_latency_max = latency_ms; + } else { + relay->stats.query_latency_avg = + (relay->stats.query_latency_avg * relay->stats.query_samples + latency_ms) / + (relay->stats.query_samples + 1); + + if (latency_ms < relay->stats.query_latency_min) { + relay->stats.query_latency_min = latency_ms; + } + if (latency_ms > relay->stats.query_latency_max) { + relay->stats.query_latency_max = latency_ms; + } } - break; + relay->stats.query_samples++; + } + + // Call event callback + if (sub->on_event) { + sub->on_event(event, relay->url, sub->user_data); } } } @@ -776,7 +857,14 @@ static void process_relay_message(nostr_relay_pool_t* pool, relay_connection_t* if (all_eose) { if (sub->on_eose) { - sub->on_eose(sub->user_data); + // Pass collected events based on result mode + if (sub->result_mode == NOSTR_POOL_EOSE_FIRST) { + // FIRST mode: no events collected, pass NULL/0 + sub->on_eose(NULL, 0, sub->user_data); + } else { + // FULL_SET or MOST_RECENT: pass collected events + sub->on_eose(sub->collected_events, sub->collected_event_count, sub->user_data); + } } // Auto-close subscription if close_on_eose is enabled diff --git a/nostr_core/nostr_core.h b/nostr_core/nostr_core.h index 860fb2ba..eec23309 100644 --- a/nostr_core/nostr_core.h +++ b/nostr_core/nostr_core.h @@ -1,6 +1,12 @@ #ifndef NOSTR_CORE_H #define NOSTR_CORE_H +// Version information (auto-updated by increment_and_push.sh) +#define VERSION "v0.4.3" +#define VERSION_MAJOR 0 +#define VERSION_MINOR 4 +#define VERSION_PATCH 3 + /* * NOSTR Core Library - Complete API Reference * @@ -159,6 +165,13 @@ typedef enum { NOSTR_POOL_RELAY_ERROR = -1 } nostr_pool_relay_status_t; +// EOSE result mode for subscriptions +typedef enum { + NOSTR_POOL_EOSE_FULL_SET, // Wait for all relays, return all events + NOSTR_POOL_EOSE_MOST_RECENT, // Wait for all relays, return most recent event + NOSTR_POOL_EOSE_FIRST // Return results on first EOSE (fastest response) +} nostr_pool_eose_result_mode_t; + typedef struct { int connection_attempts; int connection_failures; @@ -204,6 +217,22 @@ void nostr_relay_pool_destroy(nostr_relay_pool_t* pool); // Subscription management nostr_pool_subscription_t* nostr_relay_pool_subscribe( + nostr_relay_pool_t* pool, + const char** relay_urls, + int relay_count, + cJSON* filter, + void (*on_event)(cJSON* event, const char* relay_url, void* user_data), + void (*on_eose)(cJSON** events, int event_count, void* user_data), + void* user_data, + int close_on_eose, + int enable_deduplication, + nostr_pool_eose_result_mode_t result_mode, + int relay_timeout_seconds, + int eose_timeout_seconds); +int nostr_pool_subscription_close(nostr_pool_subscription_t* subscription); + +// Backward compatibility wrapper +nostr_pool_subscription_t* nostr_relay_pool_subscribe_compat( nostr_relay_pool_t* pool, const char** relay_urls, int relay_count, @@ -212,7 +241,6 @@ nostr_pool_subscription_t* nostr_relay_pool_subscribe( void (*on_eose)(void* user_data), void* user_data, int close_on_eose); -int nostr_pool_subscription_close(nostr_pool_subscription_t* subscription); // Event loop functions int nostr_relay_pool_run(nostr_relay_pool_t* pool, int timeout_ms); diff --git a/pool.log b/pool.log index 13a9cfc8..48a2c505 100644 --- a/pool.log +++ b/pool.log @@ -1,852 +1,2 @@ -[Thu Oct 2 11:42:57 2025] 🚀 Pool test started - -[Thu Oct 2 11:43:01 2025] 🏊 Pool started with default relay - -[Thu Oct 2 11:43:14 2025] ➕ Relay added: wss://nos.lol - -[Thu Oct 2 11:43:36 2025] 🔍 New subscription created (ID: 1) -Filter: { - "kinds": [1], - "since": 1759419809, - "limit": 10 -} - -[Thu Oct 2 11:43:36 2025] 📨 EVENT from wss://nos.lol -├── ID: 5449492f915a... -├── Pubkey: c231760b10ce... -├── Kind: 1 -├── Created: 1759419811 -└── Content: 💜💜💜💜💜💜💜💜💜💜💜💜 https://nostr.download/e27f32b258bbdfe1e73dc7d06... - -[Thu Oct 2 11:43:36 2025] 📋 EOSE received - all stored events delivered - -[Thu Oct 2 11:43:41 2025] 📨 EVENT from wss://nos.lol -├── ID: caf09bb60e64... -├── Pubkey: e62adca21cf6... -├── Kind: 1 -├── Created: 1759419821 -└── Content: john is the best -he likes to just stand there -he likes to eat sugar cubes -he mostly just stands t... - -[Thu Oct 2 11:43:44 2025] 📨 EVENT from wss://nos.lol -├── ID: e01356b1bf0a... -├── Pubkey: 0406b1bbbe74... -├── Kind: 1 -├── Created: 1759419823 -└── Content: 🏅ギルティーギアXX - -[Thu Oct 2 11:44:00 2025] 📨 EVENT from wss://nos.lol -├── ID: 5fad5c083762... -├── Pubkey: db0445869e55... -├── Kind: 1 -├── Created: 1759419839 -└── Content: Nothing but the best will do for magic internet money. -https://blossom.primal.net/5f7fbea898bfcf9... - -[Thu Oct 2 11:44:10 2025] 📨 EVENT from wss://nos.lol -├── ID: 7cc57da68132... -├── Pubkey: 087fe3adb094... -├── Kind: 1 -├── Created: 1759419850 -└── Content: That is a classic film - -[Thu Oct 2 11:44:15 2025] 📨 EVENT from wss://nos.lol -├── ID: 609a860530f5... -├── Pubkey: 17538dc2a627... -├── Kind: 1 -├── Created: 1759419855 -└── Content: 😍 - -Zurich? - -[Thu Oct 2 11:44:16 2025] 📨 EVENT from wss://nos.lol -├── ID: 6af068b23493... -├── Pubkey: 2b1de1346ff1... -├── Kind: 1 -├── Created: 1759419856 -└── Content: Does your door work with a string? How is the door locked? Or can you still push it up? - -[Thu Oct 2 11:44:23 2025] 📨 EVENT from wss://nos.lol -├── ID: 8ab3cd207956... -├── Pubkey: deab79dafa1c... -├── Kind: 1 -├── Created: 1759419864 -└── Content: I'll never understand why people believe folks who are paid to say others words professionally ... - -[Thu Oct 2 11:44:31 2025] 📨 EVENT from wss://nos.lol -├── ID: d59a8d8dc608... -├── Pubkey: e62adca21cf6... -├── Kind: 1 -├── Created: 1759419871 -└── Content: sometimes he hangs out with the unnamed donkey made of moonlight - -he has friends - -[Thu Oct 2 11:44:32 2025] 📨 EVENT from wss://nos.lol -├── ID: 6c4978b1fce6... -├── Pubkey: c831e221f166... -├── Kind: 1 -├── Created: 1759419872 -└── Content: It was the Russian... but then again, maybe not 🤣 - -https://blossom.primal.net/986df1efadeff5... - -[Thu Oct 2 11:44:34 2025] 📨 EVENT from wss://nos.lol -├── ID: 2a2f196a072c... -├── Pubkey: d3f94b353542... -├── Kind: 1 -├── Created: 1759419872 -└── Content: #meme #bitcoin - - - -https://blossom.primal.net/813e03107f57f4606a2d8a8c129c6df03524fcdcbcdce6cbbf... - -[Thu Oct 2 11:44:43 2025] 📨 EVENT from wss://nos.lol -├── ID: 9570719ae3ca... -├── Pubkey: f7922a0adb3f... -├── Kind: 1 -├── Created: 1759419882 -└── Content: This is the show that started all this #DeMu talk and its unlike anything you've ever listened to... - -[Thu Oct 2 11:44:54 2025] 📨 EVENT from wss://nos.lol -├── ID: 4c9de90e324d... -├── Pubkey: 16cb4b38fe9a... -├── Kind: 1 -├── Created: 1759419893 -└── Content: https://i.nostr.build/q6whqe8wlzMy6ubL.png -Its that time again! We're closing in on the end of th... - -[Thu Oct 2 11:44:55 2025] 📨 EVENT from wss://nos.lol -├── ID: 3b5a6c87be19... -├── Pubkey: 036533caa872... -├── Kind: 1 -├── Created: 1759419894 -└── Content: Yeah! I like to think I don't save anything unnecessary, or totally unusable, but it happens. Let... - -[Thu Oct 2 11:44:57 2025] 📨 EVENT from wss://nos.lol -├── ID: 37bb53f99114... -├── Pubkey: b834a8c07a51... -├── Kind: 1 -├── Created: 1759419897 -└── Content: #Lafayette Indiana https://v.nostr.build/x3WmXwgR0CTEBJq9.mp4 - -[Thu Oct 2 11:45:00 2025] 📨 EVENT from wss://nos.lol -├── ID: 3a7898a12c5e... -├── Pubkey: d7c13d1edc3e... -├── Kind: 1 -├── Created: 1759419900 -└── Content: ✄------------ 0:45 ------------✄ - -[Thu Oct 2 11:45:01 2025] 📨 EVENT from wss://nos.lol -├── ID: 315bfab7c206... -├── Pubkey: 087fe3adb094... -├── Kind: 1 -├── Created: 1759419901 -└── Content: That is freaky - -[Thu Oct 2 11:45:03 2025] 📨 EVENT from wss://nos.lol -├── ID: 6f06e3704059... -├── Pubkey: 35edf1096d3c... -├── Kind: 1 -├── Created: 1759419902 -└── Content: And how a normie is supposed to safeguard such an id from hacks? RFID under the skin? - - - -[Thu Oct 2 11:45:03 2025] 📨 EVENT from wss://nos.lol -├── ID: 0ae20b5693f0... -├── Pubkey: ad0de68eb660... -├── Kind: 1 -├── Created: 1759419904 -└── Content: ความฝันกับความหวังต่างกันตรงไหน -#si... - -[Thu Oct 2 11:45:05 2025] 📨 EVENT from wss://nos.lol -├── ID: a11231aea6b5... -├── Pubkey: f768fae9f239... -├── Kind: 1 -├── Created: 1759419904 -└── Content: #バズワードランキング - -1位: #リボ (11) -2位: #なく (5) -3位: #ミキサー (5) -4... - -[Thu Oct 2 11:45:10 2025] 📨 EVENT from wss://nos.lol -├── ID: fda1a94c635b... -├── Pubkey: bdb827d5dd18... -├── Kind: 1 -├── Created: 1759419931 -└── Content: Have been saying this for minimum 6-10 months now - -[Thu Oct 2 11:45:15 2025] 📨 EVENT from wss://nos.lol -├── ID: fbbb1a8e1883... -├── Pubkey: d3f94b353542... -├── Kind: 1 -├── Created: 1759419913 -└── Content: #meme #bitcoin - - - -https://blossom.primal.net/ea65f26f04fe282a56efc0c74b6f7881dcf95cf1bed76e9646... - -[Thu Oct 2 11:45:18 2025] 📨 EVENT from wss://nos.lol -├── ID: dae37e3e2a01... -├── Pubkey: f683e87035f7... -├── Kind: 1 -├── Created: 1759419916 -└── Content: 📊 Reliable nostr statistics now available at npub.world - -https://blossom.primal.net/fe6d77745c... - -[Thu Oct 2 11:45:21 2025] 📨 EVENT from wss://nos.lol -├── ID: e98f692cd821... -├── Pubkey: 4cf2e85f2ecf... -├── Kind: 1 -├── Created: 1759419902 -└── Content: Market snapshot (2 Oct): PX 2,359.40 +0.33%; DAX 24,423.61 +1.29%; DJ STOXX 600 567.60 +0.52%; NA... - -[Thu Oct 2 11:45:25 2025] 📨 EVENT from wss://nos.lol -├── ID: a4debf6eda9d... -├── Pubkey: 6a02b7d5d5c1... -├── Kind: 1 -├── Created: 1759419924 -└── Content: Well, nostr:npub1f5kc2agn63ecv2ua4909z9ahgmr2x9263na36jh6r908ql0926jq3nvk2u has done an amazing j... - -[Thu Oct 2 11:45:36 2025] 📨 EVENT from wss://nos.lol -├── ID: 75edaab76e6a... -├── Pubkey: d3f94b353542... -├── Kind: 1 -├── Created: 1759419934 -└── Content: #meme #bitcoin - - - -https://blossom.primal.net/47e112b56565c473db0300b9f1c8e9026d31f29b2e5a9f26b6... - -[Thu Oct 2 11:45:42 2025] 📨 EVENT from wss://nos.lol -├── ID: cce964ee26c3... -├── Pubkey: 4e64c603aceb... -├── Kind: 1 -├── Created: 1759419942 -└── Content: 👏🏻👏🏻👏🏻👏🏻🙏🏻 - -nostr:nevent1qqswaa533cykjc0vgxxmf8nmu2dg3g6uu0xdm5cw4... - -[Thu Oct 2 11:45:43 2025] 📨 EVENT from wss://nos.lol -├── ID: bd66386bb0e4... -├── Pubkey: fdf22dc28791... -├── Kind: 1 -├── Created: 1759419943 -└── Content: https://image.nostr.build/ebf0ff9e9675e82b53718cf515dcb1168f03968fe0108993f43991559093c853.jpg - -[Thu Oct 2 11:45:44 2025] 📨 EVENT from wss://nos.lol -├── ID: 3f1089f6f622... -├── Pubkey: adc14fa3ad59... -├── Kind: 1 -├── Created: 1759419943 -└── Content: 🫵🏻🙏 - -[Thu Oct 2 11:45:47 2025] 📨 EVENT from wss://nos.lol -├── ID: b2db18db5304... -├── Pubkey: d3f94b353542... -├── Kind: 1 -├── Created: 1759419945 -└── Content: #meme #bitcoin - - - -https://blossom.primal.net/cb9eb04c5bb49d58a33c0e17425606f1e3357893cb6d47d3e0... - -[Thu Oct 2 11:45:47 2025] 📨 EVENT from wss://nos.lol -├── ID: c0abb73c57da... -├── Pubkey: 96ae8563bd22... -├── Kind: 1 -├── Created: 1759419947 -└── Content: Health insurance is a scam. - -[Thu Oct 2 11:45:54 2025] 📨 EVENT from wss://nos.lol -├── ID: 25eaedc2c644... -├── Pubkey: d1f8ac7cfbac... -├── Kind: 1 -├── Created: 1759419952 -└── Content: Happy Belated Birthday! Hope you had a Funtastic day 🎉🎁💐🎂🎊 - -[Thu Oct 2 11:45:57 2025] 📨 EVENT from wss://nos.lol -├── ID: 3b6919f20ecb... -├── Pubkey: 52b4a076bcbb... -├── Kind: 1 -├── Created: 1759419957 -└── Content: gm Nostr. - -[Thu Oct 2 11:45:58 2025] 📨 EVENT from wss://nos.lol -├── ID: d05a586a961a... -├── Pubkey: 71c20e5545c5... -├── Kind: 1 -├── Created: 1759419957 -└── Content: Mood every morning -https://blossom.primal.net/a4b9b97b0948f6ab25036c52ce3580db28dd52396f1f3d7277... - -[Thu Oct 2 11:46:02 2025] 📨 EVENT from wss://nos.lol -├── ID: 93af19a07911... -├── Pubkey: f683e87035f7... -├── Kind: 1 -├── Created: 1759419961 -└── Content: cc nostr:nprofile1qy2hwumn8ghj7ct8vaezumn0wd68ytnvv9hxgqg4waehxw309a5xjum59ehx7um5wghxcctwvsqzpmn... - -[Thu Oct 2 11:46:06 2025] 📨 EVENT from wss://nos.lol -├── ID: 92450741c3db... -├── Pubkey: 8384e79741c1... -├── Kind: 1 -├── Created: 1759419967 -└── Content: It looks like some one with Parkinson's made it. - - - -[Thu Oct 2 11:46:16 2025] 📨 EVENT from wss://nos.lol -├── ID: f0b1fa224498... -├── Pubkey: d3f94b353542... -├── Kind: 1 -├── Created: 1759419974 -└── Content: #meme #bitcoin -BUY BITCOIN - - - -https://blossom.primal.net/cc20ee3b13ecfc84fef02edf5c6bde6ee12431... - -[Thu Oct 2 11:46:20 2025] 📨 EVENT from wss://nos.lol -├── ID: 8b05cc12eb5c... -├── Pubkey: f40901c9f844... -├── Kind: 1 -├── Created: 1759419979 -└── Content: Pick a Random Open PR #2003 -タイトル: Use nip22 style tags in git statuses -作成者: dluvian... - -[Thu Oct 2 11:46:23 2025] 📨 EVENT from wss://nos.lol -├── ID: e48131f4ad3e... -├── Pubkey: 899ab335d3b0... -├── Kind: 1 -├── Created: 1759419983 -└── Content: Bitcoin is invading trad-fi. -nostr:nevent1qqsxnxk6dc6gwthdd74em4tlrkecnyfg2zss3thdl390ja06qyhaf6g... - -[Thu Oct 2 11:46:26 2025] 📨 EVENT from wss://nos.lol -├── ID: db3417a1ea38... -├── Pubkey: 4cf2e85f2ecf... -├── Kind: 1 -├── Created: 1759419967 -└── Content: Commerzbank’s latest forecasts suggest the US economy will grow this year and next slightly bel... - -[Thu Oct 2 11:46:27 2025] 📨 EVENT from wss://nos.lol -├── ID: 9ef2f62d6b90... -├── Pubkey: e62adca21cf6... -├── Kind: 1 -├── Created: 1759419986 -└── Content: they, john and the no name donkey, -just kinda walk around or are still - -ive never seen john get ... - -[Thu Oct 2 11:46:28 2025] 📨 EVENT from wss://nos.lol -├── ID: 764def10463e... -├── Pubkey: f5e67a824944... -├── Kind: 1 -├── Created: 1759419986 -└── Content: compro mosquitos wolbachia ¿alguien? - -[Thu Oct 2 11:46:33 2025] 📨 EVENT from wss://nos.lol -├── ID: 67c7dd1bcba2... -├── Pubkey: 04c960497af6... -├── Kind: 1 -├── Created: 1759419993 -└── Content: Oh, I didn't now we were orange , had a tail and 🐾🐾 🤔 -Maybe I am delusional 🤔😅 - -... - -[Thu Oct 2 11:46:36 2025] 📨 EVENT from wss://nos.lol -├── ID: afe890faef3e... -├── Pubkey: 17538dc2a627... -├── Kind: 1 -├── Created: 1759419996 -└── Content: https://npub.world/stats - -🤌🤌 - -nostr:nevent1qqsd4cm78c4qrlskgp870qhh7qt9sepn98gp0utj2gk6v5j4... - -[Thu Oct 2 11:46:51 2025] 📨 EVENT from wss://nos.lol -├── ID: 7acc74259799... -├── Pubkey: a3e4cba409d3... -├── Kind: 1 -├── Created: 1759419989 -└── Content: - -https://uploads.postiz.com/3264e94fb1b846c8bfccf59e48d8bf85.png - -[Thu Oct 2 11:46:58 2025] 📨 EVENT from wss://nos.lol -├── ID: 2fd4cd59789e... -├── Pubkey: 0b26f590631b... -├── Kind: 1 -├── Created: 1759420017 -└── Content: 🤣🤣🤣 - -[Thu Oct 2 11:47:01 2025] 📨 EVENT from wss://nos.lol -├── ID: 9c46471834c1... -├── Pubkey: 2b1de1346ff1... -├── Kind: 1 -├── Created: 1759420021 -└── Content: https://cdn.nostrcheck.me/1c674155c4f713054ec8a10df5eaa5636d243df40d07447980f1885642d706c1.webp - -... - -[Thu Oct 2 11:47:04 2025] 📨 EVENT from wss://nos.lol -├── ID: 51a4d7c2106c... -├── Pubkey: bc0bcc50f9a1... -├── Kind: 1 -├── Created: 1759420023 -└── Content: ألف مبروك 🥳 والله يرزقكم برهم وصلاحهم والحمدلله على ... - -[Thu Oct 2 11:47:06 2025] 📨 EVENT from wss://nos.lol -├── ID: b63745941271... -├── Pubkey: 6a02b7d5d5c1... -├── Kind: 1 -├── Created: 1759420018 -└── Content: Gm agitator - -[Thu Oct 2 11:47:06 2025] 📨 EVENT from wss://nos.lol -├── ID: ed874935ec1d... -├── Pubkey: 0406b1bbbe74... -├── Kind: 1 -├── Created: 1759420025 -└── Content: おやのす🌔 -https://youtu.be/bOSWJTu5Prw?si=oT3DtqbpbOp0VDrr - -[Thu Oct 2 11:47:06 2025] 📨 EVENT from wss://nos.lol -├── ID: 0e32734cbc67... -├── Pubkey: 17538dc2a627... -├── Kind: 1 -├── Created: 1759420025 -└── Content: https://image.nostr.build/7304775744fef9bc979a1940fb31202045b8b06f1ebfe90141266eeb28c52417.jpg - -n... - -[Thu Oct 2 11:47:21 2025] 📨 EVENT from wss://nos.lol -├── ID: 56acfa902e7d... -├── Pubkey: d981591e0ea6... -├── Kind: 1 -├── Created: 1759419861 -└── Content: DiversityWatch (October 2, 2025) - -From Amerika.org - -~~~ ADL Deletes ‘Extremism’ Database Afte... - -[Thu Oct 2 11:47:25 2025] 📨 EVENT from wss://nos.lol -├── ID: faf15824f3bf... -├── Pubkey: deab79dafa1c... -├── Kind: 1 -├── Created: 1759420047 -└── Content: GM semi 🫡 - -[Thu Oct 2 11:47:32 2025] 📨 EVENT from wss://nos.lol -├── ID: ea997cd30e54... -├── Pubkey: e62adca21cf6... -├── Kind: 1 -├── Created: 1759420052 -└── Content: firewood or foraged pennyroyal - -but he doesnt work that much - -i would never call him a beast of b... - -[Thu Oct 2 11:47:38 2025] 📨 EVENT from wss://nos.lol -├── ID: fe973c7c45f5... -├── Pubkey: 0b26f590631b... -├── Kind: 1 -├── Created: 1759420057 -└── Content: Sorry brother 😬🤣 I was restarting router - -[Thu Oct 2 11:47:39 2025] 📨 EVENT from wss://nos.lol -├── ID: f7f07c0a6a4d... -├── Pubkey: 356875ffd729... -├── Kind: 1 -├── Created: 1759420059 -└── Content: You want to get as far away from the lipid profile of seed oils as you can. - -Terrible = canola oi... - -[Thu Oct 2 11:47:51 2025] 📨 EVENT from wss://nos.lol -├── ID: d5af40b4e947... -├── Pubkey: edb470271297... -├── Kind: 1 -├── Created: 1759420072 -└── Content: 10 years ago I emerged from the woods to build something more - -Now after having done so I feel t... - -[Thu Oct 2 11:47:59 2025] 📨 EVENT from wss://nos.lol -├── ID: 4abc3d65f486... -├── Pubkey: af5e5c0f30b2... -├── Kind: 1 -├── Created: 1759420078 -└── Content: Dear me✨ - -Brave and beautiful one. -From now on and till the end of your earthly journey, I will... - -[Thu Oct 2 11:48:01 2025] 📨 EVENT from wss://nos.lol -├── ID: f0f30b54f0ae... -├── Pubkey: d3f94b353542... -├── Kind: 1 -├── Created: 1759420079 -└── Content: #meme #bitcoin -Ignore the direction of the school. -Keep stacking sats, fish. - - - -https://blossom.... - -[Thu Oct 2 11:48:05 2025] 📨 EVENT from wss://nos.lol -├── ID: c5935c3e834b... -├── Pubkey: 3f770d65d3a7... -├── Kind: 1 -├── Created: 1759420085 -└── Content: Nice looking rooster, bro. - -[Thu Oct 2 11:48:07 2025] 📨 EVENT from wss://nos.lol -├── ID: db0b8148c793... -├── Pubkey: a4132de3f6fe... -├── Kind: 1 -├── Created: 1759420086 -└── Content: Intercepted Gaza flotilla boats arrive at Israel’s Ashdod port - -Several boats from the Global S... - -[Thu Oct 2 11:48:09 2025] 📨 EVENT from wss://nos.lol -├── ID: a61672484b30... -├── Pubkey: e62adca21cf6... -├── Kind: 1 -├── Created: 1759420089 -└── Content: thats what i know about john - -he stands there and he sometimes has company - -[Thu Oct 2 11:48:10 2025] 📨 EVENT from wss://nos.lol -├── ID: be57235ebb4b... -├── Pubkey: 01438c6f3044... -├── Kind: 1 -├── Created: 1759419985 -└── Content: Ex-OpenAI researcher dissects one of ChatGPT’s delusional spirals -https://techcrunch.com/2025/1... - -[Thu Oct 2 11:48:10 2025] 📨 EVENT from wss://nos.lol -├── ID: 299ebf1ac3aa... -├── Pubkey: 0d211376b2c9... -├── Kind: 1 -├── Created: 1759419938 -└── Content: The best Amazon Prime Day deals on Anker charging gear and other accessories -https://www.engadget... - -[Thu Oct 2 11:48:16 2025] 📨 EVENT from wss://nos.lol -├── ID: 1b9e8c4b3ee3... -├── Pubkey: 17538dc2a627... -├── Kind: 1 -├── Created: 1759420095 -└── Content: 🐔 - -nostr:nevent1qqsfc3j8rq6vr75c3k7xsmd945u49dfxwsshnh9z4pm2s27wl4ymjtcppamhxue69uhkumewwd68yt... - -[Thu Oct 2 11:48:16 2025] 📨 EVENT from wss://nos.lol -├── ID: dbce08f706dd... -├── Pubkey: 36af108c2769... -├── Kind: 1 -├── Created: 1759420096 -└── Content: You don’t want your total cholesterol crazy high but don’t want it too low either. Mainstream... - -[Thu Oct 2 11:48:42 2025] 📨 EVENT from wss://nos.lol -├── ID: a69f3dd53072... -├── Pubkey: 6a02b7d5d5c1... -├── Kind: 1 -├── Created: 1759420119 -└── Content: Well looks like I have to look back for that one - -[Thu Oct 2 11:48:45 2025] 📨 EVENT from wss://nos.lol -├── ID: 8c11338af6bb... -├── Pubkey: 71c20e5545c5... -├── Kind: 1 -├── Created: 1759420125 -└── Content: mood every morning -https://blossom.primal.net/2de495138c52e3e71f19c437d4e2a83a78b215018dcf88f074... - -[Thu Oct 2 11:48:55 2025] 📨 EVENT from wss://nos.lol -├── ID: 09c37f81cd31... -├── Pubkey: 8c5923931963... -├── Kind: 1 -├── Created: 1759420132 -└── Content: プラチナになってる - -[Thu Oct 2 11:48:56 2025] 📨 EVENT from wss://nos.lol -├── ID: 7d80f283a966... -├── Pubkey: 17538dc2a627... -├── Kind: 1 -├── Created: 1759420135 -└── Content: 😍 - -nostr:nevent1qqsxkzjr6tmef5kxng3c4p4nk58lkmr2jm60y60jmszrha64fpnuy2sppamhxue69uhkumewwd68yt... - -[Thu Oct 2 11:48:57 2025] 📨 EVENT from wss://nos.lol -├── ID: 55927691ba22... -├── Pubkey: b63581fed371... -├── Kind: 1 -├── Created: 1759420136 -└── Content: ‍Crypto Live Dealer Baccarat Redefines Online Gaming - -The integration of blockchain technology ... - -[Thu Oct 2 11:49:04 2025] 📨 EVENT from wss://nos.lol -├── ID: 230569d0c203... -├── Pubkey: 367cccfb659a... -├── Kind: 1 -├── Created: 1759420143 -└── Content: Original post: https://bsky.app/profile/did:plc:vrg5pyvxe6havmn5hiqqae22/post/3m274m4enuk2r https... - -[Thu Oct 2 11:49:12 2025] 📨 EVENT from wss://nos.lol -├── ID: d9578c93625a... -├── Pubkey: 50d94fc2d858... -├── Kind: 1 -├── Created: 1759420152 -└── Content: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wq8vdeta what's your favorit... - -[Thu Oct 2 11:49:12 2025] 📨 EVENT from wss://nos.lol -├── ID: b8c5d604f68f... -├── Pubkey: 17538dc2a627... -├── Kind: 1 -├── Created: 1759420152 -└── Content: If you have failed hard at birds I want to follow you - -#farmstr - -nostr:nevent1qqsqesh3dfqcyxmpf4p... - -[Thu Oct 2 11:49:19 2025] 📨 EVENT from wss://nos.lol -├── ID: db5cb3126f16... -├── Pubkey: cb230a5e9341... -├── Kind: 1 -├── Created: 1759420158 -└── Content: わぁ、プラチナってすごいですね〜!おめでとうございます!どんなふ... - -[Thu Oct 2 11:49:20 2025] 📨 EVENT from wss://nos.lol -├── ID: 0b559f2c7aab... -├── Pubkey: bf2376e17ba4... -├── Kind: 1 -├── Created: 1759420160 -└── Content: funny that I haven’t seen people being unnecessarily mean about core/knots on nostr, or maybe I... - -[Thu Oct 2 11:49:22 2025] 📨 EVENT from wss://nos.lol -├── ID: 225ec974be70... -├── Pubkey: d981591e0ea6... -├── Kind: 1 -├── Created: 1759420041 -└── Content: The Shadowy Legacy of Andrew McCabe - -From Roger Stone - -Andrew McCabe, former Deputy Director of t... - -[Thu Oct 2 11:49:23 2025] 📨 EVENT from wss://nos.lol -├── ID: 6409e853ab14... -├── Pubkey: d3f94b353542... -├── Kind: 1 -├── Created: 1759420162 -└── Content: It's a neverending paretto within the 20%. - - - -[Thu Oct 2 11:49:32 2025] 📨 EVENT from wss://nos.lol -├── ID: 492c3b86c6b2... -├── Pubkey: 1848313553d3... -├── Kind: 1 -├── Created: 1759420172 -└── Content: Again, allowed yes. You should phrase your questions differently. -The answer to if we "should all... - -[Thu Oct 2 11:49:39 2025] 📨 EVENT from wss://nos.lol -├── ID: 3df638b9b7bd... -├── Pubkey: 5bab615f042d... -├── Kind: 1 -├── Created: 1759420178 -└── Content: betaに人権ないっていくらどんさんに言われたから - -[Thu Oct 2 11:49:44 2025] 📨 EVENT from wss://nos.lol -├── ID: 9fc1d1f3c429... -├── Pubkey: cf3a2db57981... -├── Kind: 1 -├── Created: 1759420184 -└── Content: Das ist nun die geputzte „Auslese“ für die erste richtige Pilzfanne in diesem Jahr 😋😋... - -[Thu Oct 2 11:49:54 2025] 📨 EVENT from wss://nos.lol -├── ID: 6b20ca81b8d9... -├── Pubkey: 50d94fc2d858... -├── Kind: 1 -├── Created: 1759420193 -└── Content: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wq8vdeta can you hear me - -[Thu Oct 2 11:49:54 2025] 📨 EVENT from wss://nos.lol -├── ID: a28bc5751cf3... -├── Pubkey: 479ec16d345e... -├── Kind: 1 -├── Created: 1759420194 -└── Content: คิดถึงแชมป์เหมือนกัน เจอกันเชียงใ... - -[Thu Oct 2 11:50:00 2025] 📨 EVENT from wss://nos.lol -├── ID: bb9570ecdbb2... -├── Pubkey: b1b4105a564a... -├── Kind: 1 -├── Created: 1759420200 -└── Content: ✄------------ 0:50 ------------✄ - -[Thu Oct 2 11:50:02 2025] 📨 EVENT from wss://nos.lol -├── ID: 877bfd84cb78... -├── Pubkey: 8c5923931963... -├── Kind: 1 -├── Created: 1759420199 -└── Content: たぶん有料のしかもちょっといいプランじゃん - -[Thu Oct 2 11:50:08 2025] 📨 EVENT from wss://nos.lol -├── ID: d2a24f8bd654... -├── Pubkey: 832b77d5ecb0... -├── Kind: 1 -├── Created: 1759420208 -└── Content: 🟩BUY BTC with EUR -Price: 102390.56EUR (0%) -BTC: 0.023 -EUR: 2355 -Method: SEPA Instant -Created: ... - -[Thu Oct 2 11:50:09 2025] 📨 EVENT from wss://nos.lol -├── ID: 4d617918bff3... -├── Pubkey: b7a07661869d... -├── Kind: 1 -├── Created: 1759420209 -└── Content: Le consensus de Nakamoto – Episode 22 -Dans cette vidéo, Cyril Grunspan utilise à nouveau un m... - -[Thu Oct 2 11:50:14 2025] 📨 EVENT from wss://nos.lol -├── ID: d60c3b59af2e... -├── Pubkey: ff9f3daff5dc... -├── Kind: 1 -├── Created: 1759420210 -└── Content: 🥞 ¡#PancakeSwap pulveriza su propio récord! El DEX multichain alcanzó $749 mil millones en ... - -[Thu Oct 2 11:50:19 2025] 📨 EVENT from wss://nos.lol -├── ID: 347c25fe60e8... -├── Pubkey: 45835c36f41d... -├── Kind: 1 -├── Created: 1759420218 -└── Content: btw i use this for everything, i love it: -https://github.com/purifyjs/core - -[Thu Oct 2 11:50:20 2025] 📨 EVENT from wss://nos.lol -├── ID: 21c1e474706a... -├── Pubkey: 367cccfb659a... -├── Kind: 1 -├── Created: 1759420219 -└── Content: Original post: https://bsky.app/profile/did:plc:keg3c3lhpxiihjho4e7auzaq/post/3m27frfqb7225 https... - -[Thu Oct 2 11:50:25 2025] 📨 EVENT from wss://nos.lol -├── ID: 540e8564dd09... -├── Pubkey: 5bab615f042d... -├── Kind: 1 -├── Created: 1759420225 -└── Content: 何かしらの無制限がつくやつ - -[Thu Oct 2 11:50:26 2025] 📨 EVENT from wss://nos.lol -├── ID: b40bae265610... -├── Pubkey: 957dd3687817... -├── Kind: 1 -├── Created: 1759420216 -└── Content: Jimmy Kimmel Calls Trump a 'Son of a Bitch,’ Says Government Shutdown Allows Him to ‘Say What... - -[Thu Oct 2 11:50:27 2025] 📨 EVENT from wss://nos.lol -├── ID: 4d880eb2bdfb... -├── Pubkey: 5729ad991a7e... -├── Kind: 1 -├── Created: 1759420226 -└── Content: #asknostr how do you channel your creativity or excess energy? -Or when you feel low, how do you ... - -[Thu Oct 2 11:50:30 2025] 📨 EVENT from wss://nos.lol -├── ID: 590e23e23d0f... -├── Pubkey: ded3db391584... -├── Kind: 1 -├── Created: 1759420229 -└── Content: insert mia martini - -https://image.nostr.build/9d8ebd836f785a679932f89113809ee63fcbb70d05f31daf5bc... - -[Thu Oct 2 11:50:30 2025] 📨 EVENT from wss://nos.lol -├── ID: 239892245953... -├── Pubkey: 50d94fc2d858... -├── Kind: 1 -├── Created: 1759420230 -└── Content: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wq8vdeta hey - -[Thu Oct 2 11:50:37 2025] 📨 EVENT from wss://nos.lol -├── ID: 19ec03e4b586... -├── Pubkey: 2ff7f5a3df59... -├── Kind: 1 -├── Created: 1759420236 -└── Content: Hulu Bender's New Look | Futurama | Hulu commercial -#Hulu #abancommercials #commercial Video Hulu... - -[Thu Oct 2 11:50:38 2025] 📨 EVENT from wss://nos.lol -├── ID: 9575e4b84ac2... -├── Pubkey: e62adca21cf6... -├── Kind: 1 -├── Created: 1759420237 -└── Content: john-knee? -johnny yea i know a johnny -like human john -not active friendship but no quarrel - -[Thu Oct 2 11:50:47 2025] 📨 EVENT from wss://nos.lol -├── ID: 9ca71ff6759f... -├── Pubkey: 2ff7f5a3df59... -├── Kind: 1 -├── Created: 1759420247 -└── Content: Xbox Announcing new updates to Xbox Game Pass Ultimate commercial -#Xbox #abancommercials #commerc... - -[Thu Oct 2 11:50:48 2025] 📨 EVENT from wss://nos.lol -├── ID: 95a8a2fc10cb... -├── Pubkey: edc615f59aa8... -├── Kind: 1 -├── Created: 1759420247 -└── Content: African what? Lol... - -[Thu Oct 2 11:50:50 2025] 📨 EVENT from wss://nos.lol -├── ID: 6156127e4923... -├── Pubkey: 000001c66890... -├── Kind: 1 -├── Created: 1759420249 -└── Content: You think the neckline is bold? You should meet the attitude -https://images2.imgbox.com/bf/a0/90... - -[Thu Oct 2 11:50:58 2025] 📨 EVENT from wss://nos.lol -├── ID: 92d07c3f1344... -├── Pubkey: 2ff7f5a3df59... -├── Kind: 1 -├── Created: 1759420257 -└── Content: How to save your progress in Ghost of Yotei -#GhostofYotei #GamingGuide #GameTips Learn - how to sa... +[Thu Oct 2 14:40:34 2025] 🚀 Pool test started diff --git a/tests/pool_test b/tests/pool_test index 43b18d89..4804d4e1 100755 Binary files a/tests/pool_test and b/tests/pool_test differ diff --git a/tests/pool_test.c b/tests/pool_test.c index 298f6e8a..2f0d2552 100644 --- a/tests/pool_test.c +++ b/tests/pool_test.c @@ -73,13 +73,22 @@ void on_event(cJSON* event, const char* relay_url, void* user_data) { } // EOSE callback - called when End of Stored Events is received -void on_eose(void* user_data) { +void on_eose(cJSON** events, int event_count, void* user_data) { (void)user_data; time_t now = time(NULL); char timestamp[26]; ctime_r(&now, timestamp); timestamp[24] = '\0'; - dprintf(log_fd, "[%s] 📋 EOSE received - all stored events delivered\n\n", timestamp); + dprintf(log_fd, "[%s] 📋 EOSE received - %d events collected\n", timestamp, event_count); + + // Log collected events if any + for (int i = 0; i < event_count; i++) { + cJSON* id = cJSON_GetObjectItem(events[i], "id"); + if (id && cJSON_IsString(id)) { + dprintf(log_fd, " Event %d: %.12s...\n", i + 1, cJSON_GetStringValue(id)); + } + } + dprintf(log_fd, "\n"); } // Background polling thread @@ -270,7 +279,7 @@ void add_subscription() { int close_on_eose = (close_input && strcmp(close_input, "y") == 0) ? 1 : 0; free(close_input); - // Create subscription + // Create subscription with new parameters nostr_pool_subscription_t* sub = nostr_relay_pool_subscribe( pool, (const char**)relay_urls, @@ -279,7 +288,11 @@ void add_subscription() { on_event, on_eose, NULL, - close_on_eose + close_on_eose, + 1, // enable_deduplication + NOSTR_POOL_EOSE_FULL_SET, // result_mode + 30, // relay_timeout_seconds + 60 // eose_timeout_seconds ); // Free relay URLs diff --git a/tests/relay_synchronous_test b/tests/relay_synchronous_test index 0f27876a..6ccc1498 100755 Binary files a/tests/relay_synchronous_test and b/tests/relay_synchronous_test differ diff --git a/tests/relay_synchronous_test.c b/tests/relay_synchronous_test.c index 52558f01..fe8ebe8b 100644 --- a/tests/relay_synchronous_test.c +++ b/tests/relay_synchronous_test.c @@ -62,9 +62,17 @@ void on_event(cJSON* event, const char* relay_url, void* user_data) { } // EOSE callback - called when End of Stored Events is received -void on_eose(void* user_data) { +void on_eose(cJSON** events, int event_count, void* user_data) { (void)user_data; // Suppress unused parameter warning - printf("📋 EOSE received - all stored events delivered\n"); + printf("📋 EOSE received - %d events collected\n", event_count); + + // Log collected events if any + for (int i = 0; i < event_count; i++) { + cJSON* id = cJSON_GetObjectItem(events[i], "id"); + if (id && cJSON_IsString(id)) { + printf(" Event %d: %.12s...\n", i + 1, cJSON_GetStringValue(id)); + } + } fflush(stdout); } @@ -174,7 +182,7 @@ int main() { printf("%s\n\n", filter_json); free(filter_json); - // Create subscription + // Create subscription with new parameters nostr_pool_subscription_t* subscription = nostr_relay_pool_subscribe( pool, relay_urls, @@ -183,7 +191,11 @@ int main() { on_event, // Event callback on_eose, // EOSE callback NULL, // User data (not used) - 0 // close_on_eose (false - keep subscription open) + 0, // close_on_eose (false - keep subscription open) + 1, // enable_deduplication + NOSTR_POOL_EOSE_FULL_SET, // result_mode + 30, // relay_timeout_seconds + 60 // eose_timeout_seconds ); if (!subscription) {