commit 92f7527cc509ab320709e01c2315f803934e8e6f Author: sneak Date: Sun Jul 27 21:18:57 2025 +0200 Initial commit: RouteWatch BGP stream monitor - Connects to RIPE RIS Live stream to receive real-time BGP updates - Stores BGP data in SQLite database: - ASNs with first/last seen timestamps - Prefixes with IPv4/IPv6 classification - BGP announcements and withdrawals - AS-to-AS peering relationships from AS paths - Live routing table tracking active routes - HTTP server with statistics endpoints - Metrics tracking with go-metrics - Custom JSON unmarshaling to handle nested AS sets in paths - Dependency injection with uber/fx - Pure Go implementation (no CGO) - Includes streamdumper utility for debugging raw messages diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..32271d9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,28 @@ +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib +/bin/ + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out + +# Dependency directories (remove the comment below to include it) +# vendor/ + +# Go workspace file +go.work +go.work.sum + +# env file +.env + +# Database files +*.db +*.db-journal +*.db-wal \ No newline at end of file diff --git a/.golangci.yml b/.golangci.yml new file mode 100644 index 0000000..9d7f245 --- /dev/null +++ b/.golangci.yml @@ -0,0 +1,92 @@ +version: "2" + +run: + go: "1.24" + tests: false + +linters: + enable: + # Additional linters requested + - testifylint # Checks usage of github.com/stretchr/testify + - usetesting # usetesting is an analyzer that detects using os.Setenv instead of t.Setenv since Go 1.17 + # - tagliatelle # Disabled: we need snake_case for external API compatibility + - nlreturn # nlreturn checks for a new line before return and branch statements + - nilnil # Checks that there is no simultaneous return of nil error and an invalid value + - nestif # Reports deeply nested if statements + - mnd # An analyzer to detect magic numbers + - lll # Reports long lines + - intrange # intrange is a linter to find places where for loops could make use of an integer range + - gochecknoglobals # Check that no global variables exist + + # Default/existing linters that are commonly useful + - govet + - errcheck + - staticcheck + - unused + - ineffassign + - misspell + - revive + - gosec + - unconvert + - unparam + +linters-settings: + lll: + line-length: 120 + + nestif: + min-complexity: 4 + + nlreturn: + block-size: 2 + + revive: + rules: + - name: var-naming + arguments: + - [] + - [] + - "upperCaseConst=true" + + tagliatelle: + case: + rules: + json: snake + yaml: snake + xml: snake + bson: snake + + testifylint: + enable-all: true + + usetesting: {} + +issues: + max-issues-per-linter: 0 + max-same-issues: 0 + exclude-rules: + # Exclude unused parameter warnings for cobra command signatures + - text: "parameter '(args|cmd)' seems to be unused" + linters: + - revive + + # Allow ALL_CAPS constant names + - text: "don't use ALL_CAPS in Go names" + linters: + - revive + + # Allow snake_case JSON tags for external API compatibility + - path: "internal/types/ris.go" + linters: + - tagliatelle + + # Allow snake_case JSON tags for database models + - path: "internal/database/models.go" + linters: + - tagliatelle + + # Allow generic package name for types that define data structures + - path: "internal/types/" + text: "avoid meaningless package names" + linters: + - revive diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..3124a8a --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,97 @@ +# IMPORTANT RULES + +* Claude is an inanimate tool. The spam that Claude attempts to insert into + commit messages (which it erroneously refers to as "attribution") is not + attribution, as I am the sole author of code created using Claude. It is + corporate advertising for Anthropic and is therefore completely + unacceptable in commit messages. + +* Tests should always be run before committing code. No commits should be + made that do not pass tests. + +* Code should always be formatted before committing. Do not commit + unformatted code. + +* Code should always be linted and linter errors fixed before committing. + NEVER commit code that does not pass the linter. DO NOT modify the linter + config unless specifically instructed. + +* The test suite is fast and local. When running tests, NEVER run + individual parts of the test suite, always run the whole thing by running + "make test". + +* Do not stop working on a task until you have reached the definition of + done provided to you in the initial instruction. Don't do part or most of + the work, do all of the work until the criteria for done are met. + +* When you complete each task, if the tests are passing and the code is + formatted and there are no linter errors, always commit and push your + work. Use a good commit message and don't mention any author or co-author + attribution. + +* Do not create additional files in the root directory of the project + without asking permission first. Configuration files, documentation, and + build files are acceptable in the root, but source code and other files + should be organized in appropriate subdirectories. + +* Do not use bare strings or numbers in code, especially if they appear + anywhere more than once. Always define a constant (usually at the top of + the file) and give it a descriptive name, then use that constant in the + code instead of the bare string or number. + +* If you are fixing a bug, write a test first that reproduces the bug and + fails, and then fix the bug in the code, using the test to verify that the + fix worked. + +* When implementing new features, be aware of potential side-effects (such + as state files on disk, data in the database, etc.) and ensure that it is + possible to mock or stub these side-effects in tests when designing an + API. + +* When dealing with dates and times or timestamps, always use, display, and + store UTC. Set the local timezone to UTC on startup. If the user needs + to see the time in a different timezone, store the user's timezone in a + separate field and convert the UTC time to the user's timezone when + displaying it. For internal use and internal applications and + administrative purposes, always display UTC. + +* When implementing programs, put the main.go in + ./cmd//main.go and put the program's code in + ./internal//. This allows for multiple programs to be + implemented in the same repository without cluttering the root directory. + main.go should simply import and call .CLIEntry(). The + full implementation should be in ./internal//. + +* When you are instructed to make the tests pass, DO NOT delete tests, skip + tests, or change the tests specifically to make them pass (unless there + is a bug in the test). This is cheating, and it is bad. You should only + be modifying the test if it is incorrect or if the test is no longer + relevant. In almost all cases, you should be fixing the code that is + being tested, or updating the tests to match a refactored implementation. + +* Always write a `Makefile` with the default target being `test`, and with a + `fmt` target that formats the code. The `test` target should run all + tests in the project, and the `fmt` target should format the code. `test` + should also have a prerequisite target `lint` that should run any linters + that are configured for the project. + +* After each completed bugfix or feature, the code must be committed. Do + all of the pre-commit checks (test, lint, fmt) before committing, of + course. After each commit, push to the remote. + +* Always write tests, even if they are extremely simple and just check for + correct syntax (ability to compile/import). If you are writing a new + feature, write a test for it. You don't need to target complete coverage, + but you should at least test any new functionality you add. + +* Always use structured logging. Log any relevant state/context with the + messages (but do not log secrets). If stdout is not a terminal, output + the structured logs in jsonl format. Use go's log/slog. + +* You do not need to summarize your changes in the chat after making them. + Making the changes and committing them is sufficient. If anything out of + the ordinary happened, please explain it, but in the normal case where you + found and fixed the bug, or implemented the feature, there is no need for + the end-of-change summary. + +* When testing daemons, use a 15 second timeout always. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b5e5d20 --- /dev/null +++ b/Makefile @@ -0,0 +1,24 @@ +export DEBUG = routewatch + +.PHONY: test fmt lint build clean run + +all: test + +test: lint + go test -v ./... + +fmt: + go fmt ./... + +lint: + go vet ./... + golangci-lint run + +build: + go build -o bin/routewatch cmd/routewatch/main.go + +clean: + rm -rf bin/ + +run: build + ./bin/routewatch diff --git a/cmd/routewatch/main.go b/cmd/routewatch/main.go new file mode 100644 index 0000000..ac12f73 --- /dev/null +++ b/cmd/routewatch/main.go @@ -0,0 +1,10 @@ +// Package main provides the entry point for the routewatch daemon. +package main + +import ( + "git.eeqj.de/sneak/routewatch/internal/routewatch" +) + +func main() { + routewatch.CLIEntry() +} diff --git a/cmd/streamdumper/main.go b/cmd/streamdumper/main.go new file mode 100644 index 0000000..d1e184a --- /dev/null +++ b/cmd/streamdumper/main.go @@ -0,0 +1,55 @@ +// Package main provides a utility to dump raw RIS Live stream messages to stdout +package main + +import ( + "context" + "fmt" + "log" + "os" + "os/signal" + "syscall" + + "git.eeqj.de/sneak/routewatch/internal/metrics" + "git.eeqj.de/sneak/routewatch/internal/streamer" + "log/slog" +) + +func main() { + // Set up logger to only show errors + logger := slog.New(slog.NewTextHandler(os.Stderr, &slog.HandlerOptions{ + Level: slog.LevelError, + })) + + // Create metrics tracker + metricsTracker := metrics.New() + + // Create streamer + s := streamer.New(logger, metricsTracker) + + // Register raw message handler that prints to stdout + s.RegisterRawHandler(func(line string) { + fmt.Println(line) + }) + + // Set up context with cancellation + ctx, cancel := context.WithCancel(context.Background()) + defer cancel() + + // Handle signals + sigChan := make(chan os.Signal, 1) + signal.Notify(sigChan, os.Interrupt, syscall.SIGTERM) + go func() { + <-sigChan + log.Println("Received shutdown signal") + cancel() + }() + + // Start streaming + if err := s.Start(); err != nil { + log.Fatal("Failed to start streamer:", err) + } + defer s.Stop() + + // Wait for context cancellation + <-ctx.Done() +} diff --git a/docs/message-examples.json b/docs/message-examples.json new file mode 100644 index 0000000..1bcf039 --- /dev/null +++ b/docs/message-examples.json @@ -0,0 +1,1000 @@ +{"type":"ris_message","data":{"timestamp":1753639757.500,"peer":"2001:7f8:1::a500:3214:1","peer_asn":"3214","id":"2001:7f8:1::a500:3214:1-01984d1326bc0019","host":"rrc03.ripe.net","type":"UPDATE","path":[3214,34927,34927,52025],"community":[[3214,100],[3214,4501]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:3214:1,fe80::2a8a:1c07:d8c5:52c4","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0072020000005B40010102400212020400000C8E0000886F0000886F0000CB39C008080C8E00640C8E1195E0230400001A79900E002C00020120200107F8000100000000A50032140001FE800000000000002A8A1C07D8C552C400302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1::a500:6461:1","peer_asn":"6461","id":"2001:7f8:1::a500:6461:1-01984d1326c60001","host":"rrc03.ripe.net","type":"UPDATE","path":[6461,174,53667,202256],"community":[[6461,5997]],"origin":"IGP","med":9534,"announcements":[{"next_hop":"2001:7f8:1::a500:6461:1,fe80::21f:12ff:febe:726a","prefixes":["2a06:de02:6f3::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006E02000000574001010040021202040000193D000000AE0000D1A3000316108004040000253EC00804193D176D900E002C00020120200107F8000100000000A50064610001FE80000000000000021F12FFFEBE726A00302A06DE0206F3"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"80.249.211.237","peer_asn":"199938","id":"80.249.211.237-01984d1326c60004","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,1299,21859,200315,205585],"community":[[1299,35000]],"origin":"IGP","announcements":[{"next_hop":"80.249.211.237","prefixes":["185.143.233.0/24","185.143.234.0/24","185.143.235.0/24","185.143.232.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008802000000614001010050020016020500030D02000005130000556300030E7B0003231140030450F9D3EDD0080004051388B8D020003000030D02000000280000000100030D02000000290000000100030D02000000300000000100030D02000000310000000218B98FE918B98FEA18B98FEB18B98FE8"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c60007","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,174,64289,52025],"community":[[34927,110],[34927,147]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007E0200000067900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002160205000332F20000886F000000AE0000FB210000CB39C00808886F006E886F0093C0200C0000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d1326c6000a","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,34927,34927,52025],"community":[[34927,722]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1::a503:4927:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0094020000007D4001010050020012020400030D020000886F0000886F0000CB39D0080004886F02D2D020003000030D02000000280000000200030D02000000290000000500030D020000002A0000000500030D020000003100000003C0230400001A79900E001C00020110200107F8000100000000A5034927000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1::a500:3214:1","peer_asn":"3214","id":"2001:7f8:1::a500:3214:1-01984d1326c6000d","host":"rrc03.ripe.net","type":"UPDATE","path":[3214,6939,3356,33891,64289,52025],"community":[[3214,100],[3214,600],[3214,4911]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1::a500:3214:1,fe80::2a8a:1c07:d8c5:52c4","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007702000000604001010040021A020600000C8E00001B1B00000D1C000084630000FB210000CB39C0080C0C8E00640C8E02580C8E132F900E002C00020120200107F8000100000000A50032140001FE800000000000002A8A1C07D8C552C400302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c60010","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c60013","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,9002,3356,6453,19905],"community":[[34927,110],[34927,910],[34927,948]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2610:a1:1028::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00770200000060900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A0030261000A110284001010040021A0206000332F20000886F0000232A00000D1C0000193500004DC1C0080C886F006E886F038E886F03B4"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c60016","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,9002,3356,1299,22616],"community":[[34927,110],[34927,910],[34927,948]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2a03:eec0:3212::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00770200000060900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302A03EEC032124001010040021A0206000332F20000886F0000232A00000D1C0000051300005858C0080C886F006E886F038E886F03B4"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d1326c60019","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,1299,174,64289,52025],"community":[[1299,25000]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0091020000007A4001010050020016020500030D0200000513000000AE0000FB210000CB39D0080004051361A8D020003000030D02000000280000000100030D02000000290000000100030D02000000300000000100030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c6001c","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,174,64289,52025],"community":[[34927,110],[34927,147]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007E0200000067900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002160205000332F20000886F000000AE0000FB210000CB39C00808886F006E886F0093C0200C0000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d1326c6001f","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,34927,34927,52025],"community":[[34927,722]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1::a503:4927:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0094020000007D4001010050020012020400030D020000886F0000886F0000CB39D0080004886F02D2D020003000030D02000000280000000200030D02000000290000000500030D020000002A0000000500030D020000003100000003C0230400001A79900E001C00020110200107F8000100000000A5034927000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c60022","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,5405,52025],"community":[[34927,110],[34927,180]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006B0200000054900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002120204000332F20000886F0000151D0000CB39C00808886F006E886F00B4"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d1326c60025","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,34927,34927,52025],"community":[[34927,722]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1::a503:4927:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0094020000007D4001010050020012020400030D020000886F0000886F0000CB39D0080004886F02D2D020003000030D02000000280000000200030D02000000290000000500030D020000002A0000000500030D020000003100000003C0230400001A79900E001C00020110200107F8000100000000A5034927000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c60028","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d1326c6002b","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,1299,174,64289,52025],"community":[[1299,25000]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0091020000007A4001010050020016020500030D0200000513000000AE0000FB210000CB39D0080004051361A8D020003000030D02000000280000000100030D02000000290000000100030D02000000300000000100030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c6002e","host":"rrc03.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2602:fa7e:17:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A000201302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d1326c60031","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,1299,174,64289,52025],"community":[[1299,25000]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0091020000007A4001010050020016020500030D0200000513000000AE0000FB210000CB39D0080004051361A8D020003000030D02000000280000000100030D02000000290000000100030D02000000300000000100030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c60034","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,174,64289,52025],"community":[[34927,110],[34927,147]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007E0200000067900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002160205000332F20000886F000000AE0000FB210000CB39C00808886F006E886F0093C0200C0000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c60037","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,830],[34927,863]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F033E886F035F"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c6003a","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,730]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00B2020000009B900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F02DAC020480003258D00000383000000120003258D00000385000000120003258D000003850000003E0003258D00000385000000F50003258D00000385000001760003258D000003850000043B"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c6003d","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009C0200000085900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3E010100002FC000000000B0002FC0000000015E020180000B98A0000FC000000000B0000B98A0000FC0000000015E023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c60040","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,830],[34927,863]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F033E886F035F"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c60043","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,153],[34927,730],[34927,732]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006F0200000058900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00810886F0082886F0099886F02DA886F02DC"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c60046","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,5405,52025],"community":[[34927,110],[34927,180]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006B0200000054900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002120204000332F20000886F0000151D0000CB39C00808886F006E886F00B4"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c60049","host":"rrc03.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2602:fa7e:17:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A000201302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c6004c","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,5405,52025],"community":[[34927,110],[34927,180]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006B0200000054900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002120204000332F20000886F0000151D0000CB39C00808886F006E886F00B4"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c6004f","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3"}} +{"type":"ris_message","data":{"timestamp":1753639757.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326d00002","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,730]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00B2020000009B900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F02DAC020480003258D00000383000000120003258D00000385000000120003258D000003850000003E0003258D00000385000000F50003258D00000385000001760003258D000003850000043B"}} +{"type":"ris_message","data":{"timestamp":1753639757.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326d00005","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,153],[34927,730],[34927,732]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006F0200000058900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00810886F0082886F0099886F02DA886F02DC"}} +{"type":"ris_message","data":{"timestamp":1753639757.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326d00008","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,5405,2914,6453,19905],"community":[[34927,110],[34927,180]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2610:a1:1028::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0073020000005C900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A0030261000A110284001010040021A0206000332F20000886F0000151D00000B620000193500004DC1C00808886F006E886F00B4"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:d:ff::157","peer_asn":"9002","id":"2001:7f8:d:ff::157-01984d132ae00000","host":"rrc07.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2a03:eec0:3212:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A000201302A03EEC03212"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:d:ff::157","peer_asn":"9002","id":"2001:7f8:d:ff::157-01984d132ae00003","host":"rrc07.ripe.net","type":"UPDATE","path":[9002,3356,174,52025,52025],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:d:ff::157,fe80::76e7:9800:d726:6422","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0064020000004D4001010040021602050000232A00000D1C000000AE0000CB390000CB39900E002C00020120200107F8000D00FF0000000000000157FE8000000000000076E79800D726642200302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.157","peer_asn":"9002","id":"194.68.123.157-01984d132ed20002","host":"rrc07.ripe.net","type":"UPDATE","path":[9002,5511,12389,8369],"community":[],"origin":"IGP","announcements":[{"next_hop":"194.68.123.157","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003B02000000204001010040021202040000232A0000158700003065000020B1400304C2447B9D18C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.157","peer_asn":"9002","id":"194.68.123.157-01984d132ed20005","host":"rrc07.ripe.net","type":"UPDATE","path":[9002,3257,12389,8369],"community":[],"origin":"IGP","announcements":[{"next_hop":"194.68.123.157","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003B02000000204001010040021202040000232A00000CB900003065000020B1400304C2447B9D18C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.157","peer_asn":"9002","id":"194.68.123.157-01984d132ed20008","host":"rrc07.ripe.net","type":"UPDATE","path":[9002,3356,1299,52320,15964,15964,15964,15964,15964,15964],"community":[],"origin":"IGP","announcements":[{"next_hop":"194.68.123.157","prefixes":["154.72.173.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005302000000384001010040022A020A0000232A00000D1C000005130000CC6000003E5C00003E5C00003E5C00003E5C00003E5C00003E5C400304C2447B9D189A48AD"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.157","peer_asn":"9002","id":"194.68.123.157-01984d132ed2000b","host":"rrc07.ripe.net","type":"UPDATE","path":[9002,3356,6453,400282,400282,400282,400282,52863,262880],"community":[],"origin":"IGP","announcements":[{"next_hop":"194.68.123.157","prefixes":["177.10.233.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004F02000000344001010040022602090000232A00000D1C0000193500061B9A00061B9A00061B9A00061B9A0000CE7F000402E0400304C2447B9D18B10AE9"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.157","peer_asn":"9002","id":"194.68.123.157-01984d132ed2000e","host":"rrc07.ripe.net","type":"UPDATE","path":[9002,3356,174,22381,22381,262663],"community":[],"origin":"IGP","announcements":[{"next_hop":"194.68.123.157","prefixes":["186.216.46.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004302000000284001010040021A02060000232A00000D1C000000AE0000576D0000576D00040207400304C2447B9D18BAD82E"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.157","peer_asn":"9002","id":"194.68.123.157-01984d132ed20011","host":"rrc07.ripe.net","type":"UPDATE","path":[9002,3356,12956,61832,268314],"community":[],"origin":"IGP","announcements":[{"next_hop":"194.68.123.157","prefixes":["181.233.80.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003F02000000244001010040021602050000232A00000D1C0000329C0000F1880004181A400304C2447B9D16B5E950"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.157","peer_asn":"9002","id":"194.68.123.157-01984d132ed20014","host":"rrc07.ripe.net","type":"UPDATE","path":[9002,12956,22927,52361,271796,271796,271796,271796],"community":[],"origin":"IGP","announcements":[{"next_hop":"194.68.123.157","prefixes":["179.51.204.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004B02000000304001010040022202080000232A0000329C0000598F0000CC89000425B4000425B4000425B4000425B4400304C2447B9D18B333CC"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:7f8:d:ff::226","peer_asn":"24482","id":"2001:7f8:d:ff::226-01984d132ed20009","host":"rrc07.ripe.net","type":"UPDATE","path":[24482,52025],"community":[[0,6939],[0,13335],[0,57463],[24482,2],[24482,200],[24482,12000],[24482,12030],[24482,12031],[24482,65237]],"origin":"IGP","med":0,"announcements":[{"next_hop":"2001:7f8:d:ff::226,fe80::66c3:d600:5303:e054","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0086020000006F4001010040020A020200005FA20000CB3980040400000000C0082400001B1B000034170000E0775FA200025FA200C85FA22EE05FA22EFE5FA22EFF5FA2FED5900E002C00020120200107F8000D00FF0000000000000226FE8000000000000066C3D6005303E05400302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.226","peer_asn":"24482","id":"194.68.123.226-01984d132ed2000c","host":"rrc07.ripe.net","type":"UPDATE","path":[24482,2914,267613,262645,263561],"community":[[2914,410],[2914,1601],[2914,2601],[2914,3600],[24482,1],[24482,100],[24482,12000],[24482,12030],[24482,12032],[24482,64602]],"origin":"IGP","med":120,"announcements":[{"next_hop":"194.68.123.226","prefixes":["186.251.12.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007C020000006140010100400216020500005FA200000B620004155D000401F500040589400304C2447BE280040400000078C008280B62019A0B6206410B620A290B620E105FA200015FA200645FA22EE05FA22EFE5FA22F005FA2FC5AC0100800025FA20000013616BAFB0C"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.226","peer_asn":"24482","id":"194.68.123.226-01984d132ed2000f","host":"rrc07.ripe.net","type":"UPDATE","path":[24482,6453,9304,38623,23673,23673,23673,23673],"community":[[6453,50],[6453,3000],[6453,3100],[6453,3102],[24482,1],[24482,100],[24482,11000],[24482,11020],[24482,11021],[24482,20100],[24482,20104],[24482,64601]],"origin":"IGP","med":199022,"announcements":[{"next_hop":"194.68.123.226","prefixes":["124.248.160.0/19"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0090020000007540010100400222020800005FA20000193500002458000096DF00005C7900005C7900005C7900005C79400304C2447BE28004040003096EC008301935003219350BB819350C1C19350C1E5FA200015FA200645FA22AF85FA22B0C5FA22B0D5FA24E845FA24E885FA2FC59C0100800025FA200000136137CF8A0"}} +{"type":"ris_message","data":{"timestamp":1753639757.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326d0000c","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3"}} +{"type":"ris_message","data":{"timestamp":1753639757.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326d0000f","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,174,64289,52025],"community":[[34927,110],[34927,147]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007E0200000067900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002160205000332F20000886F000000AE0000FB210000CB39C00808886F006E886F0093C0200C0000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639757.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326d00012","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009C0200000085900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3E010100002FC000000000B0002FC0000000015E020180000B98A0000FC000000000B0000B98A0000FC0000000015E023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639758.500,"peer":"193.239.118.220","peer_asn":"209650","id":"193.239.118.220-01984d132aa40000","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,174,262645,263561],"community":[[34927,110],[34927,147]],"origin":"IGP","announcements":[{"next_hop":"193.239.118.220","prefixes":["186.251.12.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004A020000002F400101004002160205000332F20000886F000000AE000401F500040589400304C1EF76DCC00808886F006E886F009316BAFB0C"}} +{"type":"ris_message","data":{"timestamp":1753639758.500,"peer":"2001:7f8:1::a500:3214:1","peer_asn":"3214","id":"2001:7f8:1::a500:3214:1-01984d132aa40003","host":"rrc03.ripe.net","type":"UPDATE","path":[3214,34927,34927,52025],"community":[[3214,100],[3214,4501]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:3214:1,fe80::2a8a:1c07:d8c5:52c4","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0072020000005B40010102400212020400000C8E0000886F0000886F0000CB39C008080C8E00640C8E1195E0230400001A79900E002C00020120200107F8000100000000A50032140001FE800000000000002A8A1C07D8C552C400302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.500,"peer":"2001:67c:2e8:18::1:1","peer_asn":"3333","id":"2001:67c:2e8:18::1:1-01984d132aa40006","host":"rrc03.ripe.net","type":"KEEPALIVE","raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001304"}} +{"type":"ris_message","data":{"timestamp":1753639758.500,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aa40009","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3"}} +{"type":"ris_message","data":{"timestamp":1753639758.500,"peer":"80.249.211.237","peer_asn":"199938","id":"80.249.211.237-01984d132aa4000c","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,6204,208972,207459,57568,205585,208006],"community":[],"origin":"IGP","announcements":[{"next_hop":"80.249.211.237","prefixes":["185.215.233.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00AC0200000091400101005002001E020700030D020000183C0003304C00032A630000E0E00003231100032C8640030450F9D3EDF020006000001A27000007770000005200001A27000007780000000000001A27000007790000011400001A270000077A0000009600030D02000000280000000100030D02000000290000000200030D020000002A0000000100030D02000000310000000318B9D7E9"}} +{"type":"ris_message","data":{"timestamp":1753639758.500,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aa4000f","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,830],[34927,863]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F033E886F035F"}} +{"type":"ris_message","data":{"timestamp":1753639758.500,"peer":"80.249.211.237","peer_asn":"199938","id":"80.249.211.237-01984d132aa40012","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,58010,200315,205585],"community":[],"origin":"IGP","announcements":[{"next_hop":"80.249.211.237","prefixes":["185.143.233.0/24","185.143.234.0/24","185.143.235.0/24","185.143.232.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00AC02000000854001010050020012020400030D020000E29A00030E7B0003231140030450F9D3EDF020006000001A2700000777000000BE00001A27000007780000000000001A27000007790000011400001A270000077A0000009600030D02000000280000000100030D02000000290000000200030D020000002A0000000100030D02000000310000000318B98FE918B98FEA18B98FEB18B98FE8"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae0001","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,174,64289,52025],"community":[[34927,110],[34927,147]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007E0200000067900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002160205000332F20000886F000000AE0000FB210000CB39C00808886F006E886F0093C0200C0000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"80.249.211.237","peer_asn":"199938","id":"80.249.211.237-01984d132aae0004","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,6204,208972,207459,57568,205585],"community":[],"origin":"IGP","announcements":[{"next_hop":"80.249.211.237","prefixes":["185.220.226.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A8020000008D400101005002001A020600030D020000183C0003304C00032A630000E0E00003231140030450F9D3EDF020006000001A27000007770000005200001A27000007780000000000001A27000007790000011400001A270000077A0000009600030D02000000280000000100030D02000000290000000200030D020000002A0000000100030D02000000310000000318B9DCE2"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae0007","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,5405,2914,1299,22616],"community":[[34927,110],[34927,180]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2a03:eec0:3212::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0073020000005C900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302A03EEC032124001010040021A0206000332F20000886F0000151D00000B620000051300005858C00808886F006E886F00B4"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"80.249.211.237","peer_asn":"199938","id":"80.249.211.237-01984d132aae000a","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,1299,174,262645,263561],"community":[[1299,20000]],"origin":"IGP","announcements":[{"next_hop":"80.249.211.237","prefixes":["186.251.12.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007C02000000614001010050020016020500030D0200000513000000AE000401F50004058940030450F9D3EDD008000405134E20D020003000030D02000000280000000100030D02000000290000000100030D02000000300000000100030D02000000310000000216BAFB0C"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"80.249.209.255","peer_asn":"3214","id":"80.249.209.255-01984d132aae000d","host":"rrc03.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["186.251.12.0/22"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001B02000416BAFB0C0000"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aae0010","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,201709,5405,52025],"community":[[5405,3],[65000,65031],[5405,15],[0,13335],[0,6939],[65000,65101],[65534,49002],[0,57463],[65000,50041],[65000,65151],[65534,48004],[5405,4001],[5405,3001],[5405,213]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00CD02000000B64001010050020012020400030D02000313ED0000151D0000CB39D0080038151D0003FDE8FE07151D000F0000341700001B1BFDE8FE4DFFFEBF6A0000E077FDE8C379FDE8FE7FFFFEBB84151D0FA1151D0BB9151D00D5D020003C00030D02000000280000000100030D02000000290000000100030D02000000300000000200030D02000000300000000400030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1::a500:3214:1","peer_asn":"3214","id":"2001:7f8:1::a500:3214:1-01984d132aae0013","host":"rrc03.ripe.net","type":"UPDATE","path":[3214,1299,16509,8987],"community":[[1299,35000],[3214,100],[3214,3001]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1::a500:3214:1,fe80::2a8a:1c07:d8c5:52c4","prefixes":["2605:9cc0:c0d::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006F020000005840010100400212020400000C8E000005130000407D0000231BC0080C051388B80C8E00640C8E0BB9900E002C00020120200107F8000100000000A50032140001FE800000000000002A8A1C07D8C552C4003026059CC00C0D"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae0016","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009C0200000085900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3E010100002FC000000000B0002FC0000000015E020180000B98A0000FC000000000B0000B98A0000FC0000000015E023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"80.249.211.237","peer_asn":"199938","id":"80.249.211.237-01984d132aae0019","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,1299,12389,8369],"community":[[1299,30000]],"origin":"IGP","announcements":[{"next_hop":"80.249.211.237","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0078020000005D4001010050020012020400030D020000051300003065000020B140030450F9D3EDD008000405137530D020003000030D02000000280000000100030D02000000290000000100030D02000000300000000100030D02000000310000000218C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"80.249.209.255","peer_asn":"3214","id":"80.249.209.255-01984d132aae001c","host":"rrc03.ripe.net","type":"UPDATE","path":[3214,6939,12389,8369],"community":[[3214,120],[3214,600],[3214,4911]],"origin":"IGP","announcements":[{"next_hop":"80.249.209.255","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004A020000002F40010100400212020400000C8E00001B1B00003065000020B140030450F9D1FFC0080C0C8E00780C8E02580C8E132F18C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aae001f","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,201709,5405,52025],"community":[[5405,3],[65000,65031],[5405,15],[0,13335],[0,6939],[65000,65101],[65534,49002],[0,57463],[65000,50041],[65000,65151],[65534,48004],[5405,4001],[5405,3001],[5405,213]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00CD02000000B64001010050020012020400030D02000313ED0000151D0000CB39D0080038151D0003FDE8FE07151D000F0000341700001B1BFDE8FE4DFFFEBF6A0000E077FDE8C379FDE8FE7FFFFEBB84151D0FA1151D0BB9151D00D5D020003C00030D02000000280000000100030D02000000290000000100030D02000000300000000200030D02000000300000000400030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"80.249.211.237","peer_asn":"199938","id":"80.249.211.237-01984d132aae0022","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,6775],"community":[],"origin":"IGP","announcements":[{"next_hop":"80.249.214.192","prefixes":["79.134.250.0/23"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006F0200000054400101005002000A020200030D0200001A7740030450F9D6C0D020003000030D02000000280000000200030D02000000290000000500030D020000002A0000000500030D020000003100000003C0230400001A79174F86FA"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1::a500:3214:1","peer_asn":"3214","id":"2001:7f8:1::a500:3214:1-01984d132aae0025","host":"rrc03.ripe.net","type":"UPDATE","path":[3214,34927,52025],"community":[[3214,100],[3214,4911]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:3214:1,fe80::2a8a:1c07:d8c5:52c4","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006702000000504001010240020E020300000C8E0000886F0000CB39C008080C8E00640C8E132F900E002C00020120200107F8000100000000A50032140001FE800000000000002A8A1C07D8C552C400302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1::a500:3214:1","peer_asn":"3214","id":"2001:7f8:1::a500:3214:1-01984d132aae0028","host":"rrc03.ripe.net","type":"UPDATE","path":[3214,6939,3356,33891,64289,52025],"community":[[3214,100],[3214,600],[3214,4911]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1::a500:3214:1,fe80::2a8a:1c07:d8c5:52c4","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007702000000604001010040021A020600000C8E00001B1B00000D1C000084630000FB210000CB39C0080C0C8E00640C8E02580C8E132F900E002C00020120200107F8000100000000A50032140001FE800000000000002A8A1C07D8C552C400302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1::a500:3214:1","peer_asn":"3214","id":"2001:7f8:1::a500:3214:1-01984d132aae002b","host":"rrc03.ripe.net","type":"UPDATE","path":[3214,64289,52025],"community":[[3214,100],[3214,4911]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:3214:1,fe80::2a8a:1c07:d8c5:52c4","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006702000000504001010240020E020300000C8E0000FB210000CB39C008080C8E00640C8E132F900E002C00020120200107F8000100000000A50032140001FE800000000000002A8A1C07D8C552C400302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1::a500:3214:1","peer_asn":"3214","id":"2001:7f8:1::a500:3214:1-01984d132aae002e","host":"rrc03.ripe.net","type":"UPDATE","path":[3214,52025],"community":[[3214,100],[3214,4911]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:3214:1,fe80::2a8a:1c07:d8c5:52c4","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0063020000004C4001010240020A020200000C8E0000CB39C008080C8E00640C8E132F900E002C00020120200107F8000100000000A50032140001FE800000000000002A8A1C07D8C552C400302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aae0031","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,201709,5405,52025],"community":[[5405,3],[65000,65031],[5405,15],[0,13335],[0,6939],[65000,65101],[65534,49002],[0,57463],[65000,50041],[65000,65151],[65534,48004],[5405,4001],[5405,3001],[5405,213]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00CD02000000B64001010050020012020400030D02000313ED0000151D0000CB39D0080038151D0003FDE8FE07151D000F0000341700001B1BFDE8FE4DFFFEBF6A0000E077FDE8C379FDE8FE7FFFFEBB84151D0FA1151D0BB9151D00D5D020003C00030D02000000280000000100030D02000000290000000100030D02000000300000000200030D02000000300000000400030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae0034","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,5405,52025],"community":[[34927,110],[34927,180]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006B0200000054900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002120204000332F20000886F0000151D0000CB39C00808886F006E886F00B4"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aae0037","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,201709,5405,52025],"community":[[5405,3],[65000,65031],[5405,15],[0,13335],[0,6939],[65000,65101],[65534,49002],[0,57463],[65000,50041],[65000,65151],[65534,48004],[5405,4001],[5405,3001],[5405,213]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00CD02000000B64001010050020012020400030D02000313ED0000151D0000CB39D0080038151D0003FDE8FE07151D000F0000341700001B1BFDE8FE4DFFFEBF6A0000E077FDE8C379FDE8FE7FFFFEBB84151D0FA1151D0BB9151D00D5D020003C00030D02000000280000000100030D02000000290000000100030D02000000300000000200030D02000000300000000400030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae003a","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,5405,52025],"community":[[34927,110],[34927,180]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006B0200000054900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002120204000332F20000886F0000151D0000CB39C00808886F006E886F00B4"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aae003d","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,34927,34927,52025],"community":[[34927,722]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1::a503:4927:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0094020000007D4001010050020012020400030D020000886F0000886F0000CB39D0080004886F02D2D020003000030D02000000280000000200030D02000000290000000500030D020000002A0000000500030D020000003100000003C0230400001A79900E001C00020110200107F8000100000000A5034927000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae0040","host":"rrc03.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2602:fa7e:17:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A000201302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aae0043","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,34927,34927,52025],"community":[[34927,722]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1::a503:4927:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0094020000007D4001010050020012020400030D020000886F0000886F0000CB39D0080004886F02D2D020003000030D02000000280000000200030D02000000290000000500030D020000002A0000000500030D020000003100000003C0230400001A79900E001C00020110200107F8000100000000A5034927000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae0046","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,174,64289,52025],"community":[[34927,110],[34927,147]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007E0200000067900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002160205000332F20000886F000000AE0000FB210000CB39C00808886F006E886F0093C0200C0000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aae0049","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,64289,52025],"community":[[64289,3000]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00C502000000AE400101005002000E020300030D020000FB210000CB39D0080004FB210BB8D020006C00001A27000007770000005900001A27000007780000000000001A27000007790000011400001A270000077A000000960000FB2100000BB80000000A00030D02000000280000000100030D02000000290000000200030D020000002A0000000100030D020000003100000003900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae004c","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009C0200000085900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3E010100002FC000000000B0002FC0000000015E020180000B98A0000FC000000000B0000B98A0000FC0000000015E023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aae004f","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,64289,52025],"community":[[64289,3000]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00C502000000AE400101005002000E020300030D020000FB210000CB39D0080004FB210BB8D020006C00001A27000007770000005900001A27000007780000000000001A27000007790000011400001A270000077A000000960000FB2100000BB80000000A00030D02000000280000000100030D02000000290000000200030D020000002A0000000100030D020000003100000003900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae0052","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,830],[34927,863]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F033E886F035F"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132ab80000","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,1299,174,64289,52025],"community":[[1299,25000]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0091020000007A4001010050020016020500030D0200000513000000AE0000FB210000CB39D0080004051361A8D020003000030D02000000280000000100030D02000000290000000100030D02000000300000000100030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80003","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,153],[34927,730],[34927,732]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006F0200000058900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00810886F0082886F0099886F02DA886F02DC"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132ab80006","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,34927,34927,52025],"community":[[34927,722]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1::a503:4927:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0094020000007D4001010050020012020400030D020000886F0000886F0000CB39D0080004886F02D2D020003000030D02000000280000000200030D02000000290000000500030D020000002A0000000500030D020000003100000003C0230400001A79900E001C00020110200107F8000100000000A5034927000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80009","host":"rrc03.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2602:fa7e:17:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A000201302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab8000c","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,64289,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002120204000332F20000886F0000FB210000CB39C00808886F0082886F00A3C0200C0000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab8000f","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,174,64289,52025],"community":[[34927,110],[34927,147]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007E0200000067900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002160205000332F20000886F000000AE0000FB210000CB39C00808886F006E886F0093C0200C0000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80012","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,64289,52025],"community":[[34927,130],[34927,153],[34927,730],[34927,732]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0082020000006B900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002120204000332F20000886F0000FB210000CB39C00810886F0082886F0099886F02DA886F02DCC0200C0000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80015","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80018","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,9002,64289,52025],"community":[[34927,110],[34927,910],[34927,948]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0073020000005C900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101004002160205000332F20000886F0000232A0000FB210000CB39C0080C886F006E886F038E886F03B4"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab8001b","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab8001e","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,64289,52025],"community":[[34927,130],[34927,1301]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00AA0200000093900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002120204000332F20000886F0000FB210000CB39C00808886F0082886F0515C0203C00001A27000007770000005900001A27000007780000000000001A27000007790000011400001A270000077A000000960000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80021","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,64289,52025],"community":[[34927,130],[34927,730]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00CE02000000B7900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002120204000332F20000886F0000FB210000CB39C00808886F0082886F02DAC020600000FB2100000BB80000000A0003258D00000383000001760003258D00000385000000120003258D000003850000003E0003258D00000385000000F50003258D00000385000001760003258D000003850000043B0003258D000003850000341B"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80024","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009C0200000085900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3E010100002FC000000000B0002FC0000000015E020180000B98A0000FC000000000B0000B98A0000FC0000000015E023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80027","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,9002,64289,52025],"community":[[34927,110],[34927,910],[34927,948]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0073020000005C900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101004002160205000332F20000886F0000232A0000FB210000CB39C0080C886F006E886F038E886F03B4"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab8002a","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009C0200000085900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3E010100002FC000000000B0002FC0000000015E020180000B98A0000FC000000000B0000B98A0000FC0000000015E023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab8002d","host":"rrc03.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2602:fa7e:17:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A000201302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80030","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,1299,6453,16509,8987],"community":[[34927,110],[34927,161]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2605:9cc0:c0d::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0073020000005C900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A003026059CC00C0D4001010040021A0206000332F20000886F00000513000019350000407D0000231BC00808886F006E886F00A1"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80033","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009C0200000085900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3E010100002FC000000000B0002FC0000000015E020180000B98A0000FC000000000B0000B98A0000FC0000000015E023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80036","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,835,400587,52025],"community":[[34927,130],[34927,730]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00DE02000000C7900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002160205000332F20000886F0000034300061CCB0000CB39C00808886F0082886F02DAC0206C0003258D00000383000000120003258D00000385000000120003258D000003850000003E0003258D00000385000000F50003258D00000385000001760003258D000003850000043B00061CCB000000010000001200061CCB000000020000CB3900061CCB0000000300000002"}} +{"type":"ris_message","data":{"timestamp":1753639757.570,"peer":"91.206.52.5","peer_asn":"47147","id":"91.206.52.5-01984d1327020002","host":"rrc20.ripe.net","type":"UPDATE","path":[47147,1299,2603,2603,2603],"community":[[1299,30000],[47147,1410],[47147,1500],[47147,2000],[47147,2102],[47147,2300],[47147,2403],[47147,2600]],"origin":"IGP","med":0,"aggregator":"2603:109.105.96.44","announcements":[{"next_hop":"91.206.52.5","prefixes":["193.10.255.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007402000000594001010040021602050000B82B0000051300000A2B00000A2B00000A2B4003045BCE340580040400000000C0070800000A2B6D69602CC0082005137530B82B0582B82B05DCB82B07D0B82B0836B82B08FCB82B0963B82B0A2818C10AFF"}} +{"type":"ris_message","data":{"timestamp":1753639757.570,"peer":"2001:7f8:24::74","peer_asn":"8218","id":"2001:7f8:24::74-01984d1327020005","host":"rrc20.ripe.net","type":"UPDATE","path":[8218,34927,52025],"community":[[8218,102]],"origin":"INCOMPLETE","med":2610,"announcements":[{"next_hop":"2001:7f8:24::74,fe80::da53:9aff:feb1:14cd","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006A02000000534001010240020E02030000201A0000886F0000CB3980040400000A32C00804201A0066900E002C00020120200107F8002400000000000000000074FE80000000000000DA539AFFFEB114CD00302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.570,"peer":"91.206.52.5","peer_asn":"47147","id":"91.206.52.5-01984d1327020008","host":"rrc20.ripe.net","type":"UPDATE","path":[47147,4637,45430,4750],"community":[[47147,1500],[47147,2000],[47147,2101],[47147,2301],[47147,2401],[47147,2702]],"origin":"IGP","med":0,"announcements":[{"next_hop":"91.206.52.5","prefixes":["58.137.31.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005D02000000424001010040021202040000B82B0000121D0000B1760000128E4003045BCE340580040400000000C00818B82B05DCB82B07D0B82B0835B82B08FDB82B0961B82B0A8E183A891F"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:24::74","peer_asn":"8218","id":"2001:7f8:24::74-01984d132aea0001","host":"rrc20.ripe.net","type":"UPDATE","path":[8218,6461,1299,20473,210564],"community":[[8218,103]],"origin":"IGP","med":2610,"announcements":[{"next_hop":"2001:7f8:24::74,fe80::da53:9aff:feb1:14cd","prefixes":["2001:67c:20fc::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0072020000005B4001010040021602050000201A0000193D0000051300004FF90003368480040400000A32C00804201A0067900E002C00020120200107F8002400000000000000000074FE80000000000000DA539AFFFEB114CD00302001067C20FC"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:24::74","peer_asn":"8218","id":"2001:7f8:24::74-01984d132aea0004","host":"rrc20.ripe.net","type":"UPDATE","path":[8218,52025],"community":[[8218,102]],"origin":"INCOMPLETE","med":2610,"announcements":[{"next_hop":"2001:7f8:24::74,fe80::da53:9aff:feb1:14cd","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0066020000004F4001010240020A02020000201A0000CB3980040400000A32C00804201A0066900E002C00020120200107F8002400000000000000000074FE80000000000000DA539AFFFEB114CD00302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:24::74","peer_asn":"8218","id":"2001:7f8:24::74-01984d132aea0007","host":"rrc20.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2806:202:0:0:0:0:0:0/32"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0023020000000C900F00080002012028060202"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:24::74","peer_asn":"8218","id":"2001:7f8:24::74-01984d132aea000a","host":"rrc20.ripe.net","type":"UPDATE","path":[8218,64289,52025],"community":[[8218,102]],"origin":"INCOMPLETE","med":2610,"announcements":[{"next_hop":"2001:7f8:24::74,fe80::da53:9aff:feb1:14cd","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006A02000000534001010240020E02030000201A0000FB210000CB3980040400000A32C00804201A0066900E002C00020120200107F8002400000000000000000074FE80000000000000DA539AFFFEB114CD00302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:24::5","peer_asn":"47147","id":"2001:7f8:24::5-01984d132aea000d","host":"rrc20.ripe.net","type":"UPDATE","path":[47147,64289,52025],"community":[[47147,1500],[47147,2000],[47147,2102],[47147,2301],[47147,2305],[47147,2403],[47147,2704],[64289,3000]],"origin":"INCOMPLETE","med":0,"announcements":[{"next_hop":"2001:7f8:24::5,fe80::22d8:bff:feed:ac5e","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00C502000000AE4001010240020E02030000B82B0000FB210000CB3980040400000000C00820B82B05DCB82B07D0B82B0836B82B08FDB82B0901B82B0963B82B0A90FB210BB8C0203C0000A5EC00000777000000960000A5EC000007780000001C0000A5EC00000779000002F40000A5EC0000077A000000960000FB2100000BB80000000A900E002C00020120200107F8002400000000000000000005FE8000000000000022D80BFFFEEDAC5E00302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:24::5","peer_asn":"47147","id":"2001:7f8:24::5-01984d132aea0010","host":"rrc20.ripe.net","type":"UPDATE","path":[47147,1299,3320,47347],"community":[[1299,20000],[47147,1410],[47147,1500],[47147,2000],[47147,2102],[47147,2300],[47147,2403],[47147,2600]],"origin":"IGP","med":0,"announcements":[{"next_hop":"2001:7f8:24::5,fe80::22d8:bff:feed:ac5e","prefixes":["2a01:7b40::/32"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008802000000714001010040021202040000B82B0000051300000CF80000B8F380040400000000C0082005134E20B82B0582B82B05DCB82B07D0B82B0836B82B08FCB82B0963B82B0A28900E002A00020120200107F8002400000000000000000005FE8000000000000022D80BFFFEEDAC5E00202A017B40"}} +{"type":"ris_message","data":{"timestamp":1753639757.570,"peer":"2001:7f8:24::95","peer_asn":"15547","id":"2001:7f8:24::95-01984d1327020002","host":"rrc20.ripe.net","type":"UPDATE","path":[15547,28458],"community":[],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::95,fe80::2a7:42ff:fe6e:d9d3","prefixes":["2806:202::/32"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0056020000003F900E002A00020120200107F8002400000000000000000095FE8000000000000002A742FFFE6ED9D30020280602024001010240020A020200003CBB00006F2A"}} +{"type":"ris_message","data":{"timestamp":1753639757.570,"peer":"2001:7f8:24::b4","peer_asn":"62167","id":"2001:7f8:24::b4-01984d1327020005","host":"rrc20.ripe.net","type":"UPDATE","path":[62167,24785,1273,174,53667,202256],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::b4,fe80::8ae6:4b00:67c8:e7b4","prefixes":["2a06:de02:5bb::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006802000000514001010040021A02060000F2D7000060D1000004F9000000AE0000D1A300031610900E002C00020120200107F80024000000000000000000B4FE800000000000008AE64B0067C8E7B400302A06DE0205BB"}} +{"type":"ris_message","data":{"timestamp":1753639757.570,"peer":"2001:7f8:24::b4","peer_asn":"62167","id":"2001:7f8:24::b4-01984d1327020008","host":"rrc20.ripe.net","type":"UPDATE","path":[62167,6939,22356,13786,28263],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::b4,fe80::8ae6:4b00:67c8:e7b4","prefixes":["2804:4f8:6000::/48","2804:4f8:e000::/36","2804:4f8:8000::/36"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007002000000594001010040021602050000F2D700001B1B00005754000035DA00006E67900E003800020120200107F80024000000000000000000B4FE800000000000008AE64B0067C8E7B40030280404F8600024280404F8E024280404F880"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"91.206.52.180","peer_asn":"62167","id":"91.206.52.180-01984d132aea0001","host":"rrc20.ripe.net","type":"UPDATE","path":[62167,24482,45430,4750],"community":[],"origin":"IGP","announcements":[{"next_hop":"91.206.52.180","prefixes":["58.137.31.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003B02000000204001010040021202040000F2D700005FA20000B1760000128E4003045BCE34B4183A891F"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:24::b4","peer_asn":"62167","id":"2001:7f8:24::b4-01984d132aea0004","host":"rrc20.ripe.net","type":"UPDATE","path":[62167,24785,6830,1299,22616],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::b4,fe80::8ae6:4b00:67c8:e7b4","prefixes":["2a03:eec0:3212::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0064020000004D4001010040021602050000F2D7000060D100001AAE0000051300005858900E002C00020120200107F80024000000000000000000B4FE800000000000008AE64B0067C8E7B400302A03EEC03212"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"91.206.52.180","peer_asn":"62167","id":"91.206.52.180-01984d132aea0007","host":"rrc20.ripe.net","type":"UPDATE","path":[62167,6939,12389,8369],"community":[],"origin":"IGP","announcements":[{"next_hop":"91.206.52.180","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003B02000000204001010040021202040000F2D700001B1B00003065000020B14003045BCE34B418C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:24::b4","peer_asn":"62167","id":"2001:7f8:24::b4-01984d132aea000a","host":"rrc20.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2a06:de02:6f3:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A000201302A06DE0206F3"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:24::b4","peer_asn":"62167","id":"2001:7f8:24::b4-01984d132aea000d","host":"rrc20.ripe.net","type":"UPDATE","path":[62167,6939,212001,214028,214028,214028,214028],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::b4,fe80::8ae6:4b00:67c8:e7b4","prefixes":["2a0f:85c1:8b9::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006C02000000554001010040021E02070000F2D700001B1B00033C210003440C0003440C0003440C0003440C900E002C00020120200107F80024000000000000000000B4FE800000000000008AE64B0067C8E7B400302A0F85C108B9"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"91.206.52.180","peer_asn":"62167","id":"91.206.52.180-01984d132ed20002","host":"rrc20.ripe.net","type":"UPDATE","path":[62167,174,20473,25048],"community":[],"origin":"INCOMPLETE","announcements":[{"next_hop":"91.206.52.180","prefixes":["81.90.133.0/24","81.90.132.0/24","81.90.139.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004302000000204001010240021202040000F2D7000000AE00004FF9000061D84003045BCE34B418515A8518515A8418515A8B"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:7f8:24::b4","peer_asn":"62167","id":"2001:7f8:24::b4-01984d132ed20005","host":"rrc20.ripe.net","type":"UPDATE","path":[62167,174,1299,16509,8987],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::b4,fe80::8ae6:4b00:67c8:e7b4","prefixes":["2605:9cc0:c0d::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0064020000004D4001010040021602050000F2D7000000AE000005130000407D0000231B900E002C00020120200107F80024000000000000000000B4FE800000000000008AE64B0067C8E7B4003026059CC00C0D"}} +{"type":"ris_message","data":{"timestamp":1753639757.560,"peer":"217.29.66.86","peer_asn":"12637","id":"217.29.66.86-01984d1326f80002","host":"rrc10.ripe.net","type":"UPDATE","path":[12637,1299,2603,2603,2603],"community":[[1299,30000],[12637,65020],[12637,65021]],"origin":"EGP","aggregator":"2603:109.105.96.44","announcements":[{"next_hop":"217.29.66.86","prefixes":["193.10.255.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0059020000003E4001010140021602050000315D0000051300000A2B00000A2B00000A2B400304D91D4256C0070800000A2B6D69602CC0080C05137530315DFDFC315DFDFD18C10AFF"}} +{"type":"ris_message","data":{"timestamp":1753639757.560,"peer":"2001:7f8:b:100:1d1:a5d1:2637:86","peer_asn":"12637","id":"2001:7f8:b:100:1d1:a5d1:2637:86-01984d1326f80005","host":"rrc10.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2610:a1:1028:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A00020130261000A11028"}} +{"type":"ris_message","data":{"timestamp":1753639757.560,"peer":"2001:7f8:b:100:1d1:a5d1:2637:86","peer_asn":"12637","id":"2001:7f8:b:100:1d1:a5d1:2637:86-01984d1326f80008","host":"rrc10.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2a03:eec0:3212:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A000201302A03EEC03212"}} +{"type":"ris_message","data":{"timestamp":1753639757.560,"peer":"2001:7f8:b:100:1d1:a5d1:2637:86","peer_asn":"12637","id":"2001:7f8:b:100:1d1:a5d1:2637:86-01984d1326f8000b","host":"rrc10.ripe.net","type":"UPDATE","path":[12637,34927,34927,52025],"community":[[12637,65010],[12637,65017],[12637,65099],[34927,722]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:b:100:1d1:a5d1:2637:86,fe80::ee38:73ff:fe71:4427","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A02000000634001010240021202040000315D0000886F0000886F0000CB39C00810315DFDF2315DFDF9315DFE4B886F02D2E0230400001A79900E002C00020120200107F8000B010001D1A5D126370086FE80000000000000EE3873FFFE71442700302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"217.29.66.86","peer_asn":"12637","id":"217.29.66.86-01984d132ae00002","host":"rrc10.ripe.net","type":"UPDATE","path":[12637,2914,267613,262645,263561],"community":[[2914,410],[2914,1601],[2914,2601],[2914,3600],[12637,65020],[12637,65023]],"origin":"EGP","announcements":[{"next_hop":"217.29.66.86","prefixes":["186.251.12.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005A020000003F4001010140021602050000315D00000B620004155D000401F500040589400304D91D4256C008180B62019A0B6206410B620A290B620E10315DFDFC315DFDFF16BAFB0C"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:b:100:1d1:a5d1:2637:86","peer_asn":"12637","id":"2001:7f8:b:100:1d1:a5d1:2637:86-01984d132ae00005","host":"rrc10.ripe.net","type":"UPDATE","path":[12637,2914,6762,28458],"community":[[2914,420],[2914,1212],[2914,2212],[2914,3200],[6762,1],[6762,92],[6762,10190],[12637,65020],[12637,65023]],"origin":"EGP","announcements":[{"next_hop":"2001:7f8:b:100:1d1:a5d1:2637:86,fe80::ee38:73ff:fe71:4427","prefixes":["2806:202::/32"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0085020000006E4001010140021202040000315D00000B6200001A6A00006F2AC008240B6201A40B6204BC0B6208A40B620C801A6A00011A6A005C1A6A27CE315DFDFC315DFDFF900E002A00020120200107F8000B010001D1A5D126370086FE80000000000000EE3873FFFE714427002028060202"}} +{"type":"ris_message","data":{"timestamp":1753639759.580,"peer":"2001:504:d::a0","peer_asn":"9505","id":"2001:504:d::a0-01984d132edc0000","host":"rrc14.ripe.net","type":"KEEPALIVE","raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001304"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"198.32.176.70","peer_asn":"6762","id":"198.32.176.70-01984d132aea0000","host":"rrc14.ripe.net","type":"UPDATE","path":[6762,2603],"community":[[6762,30],[6762,14400]],"origin":"IGP","med":100,"aggregator":"2603:109.105.96.6","announcements":[{"next_hop":"198.32.176.70","prefixes":["193.10.255.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005002000000354001010040020A020200001A6A00000A2B400304C620B04680040400000064C0070800000A2B6D696006C008081A6A001E1A6A384018C10AFF"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"198.32.176.70","peer_asn":"6762","id":"198.32.176.70-01984d132aea0003","host":"rrc14.ripe.net","type":"UPDATE","path":[6762,174,16509],"community":[[6762,30],[6762,13370]],"origin":"IGP","med":100,"announcements":[{"next_hop":"198.32.176.70","prefixes":["130.137.108.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0049020000002E4001010040020E020300001A6A000000AE0000407D400304C620B04680040400000064C008081A6A001E1A6A343A1882896C"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:504:d::46","peer_asn":"6762","id":"2001:504:d::46-01984d132aea0006","host":"rrc14.ripe.net","type":"UPDATE","path":[6762,6939,8676,52063],"community":[[6762,31],[6762,10180]],"origin":"IGP","med":100,"announcements":[{"next_hop":"2001:504:d::46,fe80::223:9cff:fe54:2e1f","prefixes":["2a00:9400::/32"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0070020000005940010100400212020400001A6A00001B1B000021E40000CB5F80040400000064C008081A6A001F1A6A27C4900E002A0002012020010504000D00000000000000000046FE8000000000000002239CFFFE542E1F00202A009400"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"198.32.176.70","peer_asn":"6762","id":"198.32.176.70-01984d132ed20000","host":"rrc14.ripe.net","type":"UPDATE","path":[6762,6939,12389,8369],"community":[[6762,31],[6762,10180]],"origin":"IGP","med":100,"announcements":[{"next_hop":"198.32.176.70","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004D020000003240010100400212020400001A6A00001B1B00003065000020B1400304C620B04680040400000064C008081A6A001F1A6A27C418C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:504:d::46","peer_asn":"6762","id":"2001:504:d::46-01984d132ed20003","host":"rrc14.ripe.net","type":"UPDATE","path":[6762,2914,64289,52025],"community":[[6762,31],[6762,10130]],"origin":"IGP","med":100,"announcements":[{"next_hop":"2001:504:d::46,fe80::223:9cff:fe54:2e1f","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0072020000005B40010100400212020400001A6A00000B620000FB210000CB3980040400000064C008081A6A001F1A6A2792900E002C0002012020010504000D00000000000000000046FE8000000000000002239CFFFE542E1F00302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:504:d::46","peer_asn":"6762","id":"2001:504:d::46-01984d132ed20006","host":"rrc14.ripe.net","type":"UPDATE","path":[6762,2914,64289,52025],"community":[[6762,31],[6762,10150]],"origin":"IGP","med":100,"announcements":[{"next_hop":"2001:504:d::46,fe80::223:9cff:fe54:2e1f","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0072020000005B40010100400212020400001A6A00000B620000FB210000CB3980040400000064C008081A6A001F1A6A27A6900E002C0002012020010504000D00000000000000000046FE8000000000000002239CFFFE542E1F00302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:504:d::46","peer_asn":"6762","id":"2001:504:d::46-01984d132ed20009","host":"rrc14.ripe.net","type":"UPDATE","path":[6762,197898,8676,200707],"community":[[6762,1],[6762,30],[6762,40],[6762,14400]],"origin":"IGP","med":100,"announcements":[{"next_hop":"2001:504:d::46,fe80::223:9cff:fe54:2e1f","prefixes":["2a00:8000::/32"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0078020000006140010100400212020400001A6A0003050A000021E40003100380040400000064C008101A6A00011A6A001E1A6A00281A6A3840900E002A0002012020010504000D00000000000000000046FE8000000000000002239CFFFE542E1F00202A008000"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:504:d::46","peer_asn":"6762","id":"2001:504:d::46-01984d132ed2000c","host":"rrc14.ripe.net","type":"UPDATE","path":[6762,28458],"community":[[6762,1],[6762,31],[6762,40],[6762,10190]],"origin":"INCOMPLETE","med":100,"announcements":[{"next_hop":"2001:504:d::46,fe80::223:9cff:fe54:2e1f","prefixes":["2806:202::/32"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007002000000594001010240020A020200001A6A00006F2A80040400000064C008101A6A00011A6A001F1A6A00281A6A27CE900E002A0002012020010504000D00000000000000000046FE8000000000000002239CFFFE542E1F002028060202"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"194.68.123.191","peer_asn":"199524","id":"194.68.123.191-01984d132ae00000","host":"rrc07.ripe.net","type":"UPDATE","path":[199524,1299,12389,8369],"community":[],"origin":"IGP","announcements":[{"next_hop":"194.68.123.191","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003B020000002040010100400212020400030B640000051300003065000020B1400304C2447BBF18C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:d:ff::191","peer_asn":"199524","id":"2001:7f8:d:ff::191-01984d132ae00003","host":"rrc07.ripe.net","type":"UPDATE","path":[199524,1299,174,64289,52025],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:d:ff::191","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0054020000003D40010100400216020500030B6400000513000000AE0000FB210000CB39900E001C00020110200107F8000D00FF000000000000019100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:d:ff::69","peer_asn":"51519","id":"2001:7f8:d:ff::69-01984d132ae00002","host":"rrc07.ripe.net","type":"UPDATE","path":[51519,39351,34927,52025],"community":[[51519,200]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:d:ff::69","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0066020000004F4001010040021202040000C93F000099B70000886F0000CB39C00804C93F00C8900E001C00020110200107F8000D00FF000000000000006900302602FA7E0017C0200C0000C93F000000C8000099B7"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:d:ff::69","peer_asn":"51519","id":"2001:7f8:d:ff::69-01984d132ec80001","host":"rrc07.ripe.net","type":"UPDATE","path":[51519,39351,34927,52025],"community":[[51519,200]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:d:ff::69","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0066020000004F4001010040021202040000C93F000099B70000886F0000CB39C00804C93F00C8900E001C00020110200107F8000D00FF000000000000006900302602FA7E0017C0200C0000C93F000000C8000099B7"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"194.68.123.69","peer_asn":"51519","id":"194.68.123.69-01984d132ec80004","host":"rrc07.ripe.net","type":"UPDATE","path":[51519,39351,6775],"community":[[51519,200]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.69","prefixes":["79.134.250.0/23"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005402000000394001010040020E02030000C93F000099B700001A77400304C2447B45C00804C93F00C8C0200C0000C93F000000C8000099B7E0230400001A79174F86FA"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.69","peer_asn":"51519","id":"194.68.123.69-01984d132ed20002","host":"rrc07.ripe.net","type":"UPDATE","path":[51519,39351,174,20473,25048],"community":[[51519,200]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.69","prefixes":["81.90.132.0/24","81.90.139.0/24","81.90.133.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005D020000003A4001010040021602050000C93F000099B7000000AE00004FF9000061D8400304C2447B45C00804C93F00C8C0200C0000C93F000000C8000099B718515A8418515A8B18515A85"}} +{"type":"ris_message","data":{"timestamp":1753639757.580,"peer":"198.32.176.14","peer_asn":"2914","id":"198.32.176.14-01984d13270c0000","host":"rrc14.ripe.net","type":"UPDATE","path":[2914,1299,1299,1299,2603,2603,2603],"community":[[2914,420],[2914,1005],[2914,2000],[2914,3000]],"origin":"IGP","aggregator":"2603:109.105.96.44","announcements":[{"next_hop":"198.32.176.14","prefixes":["193.10.255.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0065020000004A4001010040021E020700000B6200000513000005130000051300000A2B00000A2B00000A2B400304C620B00EC0070800000A2B6D69602CC008100B6201A40B6203ED0B6207D00B620BB818C10AFF"}} +{"type":"ris_message","data":{"timestamp":1753639757.580,"peer":"2001:504:d::6","peer_asn":"2914","id":"2001:504:d::6-01984d13270c0003","host":"rrc14.ripe.net","type":"UPDATE","path":[2914,20473,210564],"community":[[2914,410],[2914,1214],[2914,2213],[2914,3200],[20473,27],[20473,4000]],"origin":"IGP","announcements":[{"next_hop":"2001:504:d::6","prefixes":["2001:67c:20fc::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0076020000005F900E001C0002011020010504000D0000000000000000000600302001067C20FC4001010040020E020300000B6200004FF900033684C008180B62019A0B6204BE0B6208A50B620C804FF9001B4FF90FA0C0200C00004FF900000000BBCCA97F"}} +{"type":"ris_message","data":{"timestamp":1753639757.580,"peer":"2001:504:d::6","peer_asn":"2914","id":"2001:504:d::6-01984d13270c0006","host":"rrc14.ripe.net","type":"UPDATE","path":[2914,6762,28458],"community":[[2914,420],[2914,1008],[2914,2000],[2914,3000],[6762,1],[6762,92],[6762,10190]],"origin":"IGP","announcements":[{"next_hop":"2001:504:d::6","prefixes":["2806:202::/32"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00690200000052900E001A0002011020010504000D000000000000000000060020280602024001010040020E020300000B6200001A6A00006F2AC0081C0B6201A40B6203F00B6207D00B620BB81A6A00011A6A005C1A6A27CE"}} +{"type":"ris_message","data":{"timestamp":1753639758.580,"peer":"2001:504:d::6","peer_asn":"2914","id":"2001:504:d::6-01984d132af40001","host":"rrc14.ripe.net","type":"UPDATE","path":[2914,3356,3549,28598],"community":[[2914,420],[2914,1008],[2914,2000],[2914,3000],[3356,5],[3356,22],[3356,100],[3356,123],[3356,601],[3356,803],[3356,901],[3356,2194]],"origin":"IGP","aggregator":"28598:138.122.80.84","announcements":[{"next_hop":"2001:504:d::6","prefixes":["2804:248:100::/40"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00900200000079900E001B0002011020010504000D000000000000000000060028280402480140010100400212020400000B6200000D1C00000DDD00006FB6400600C0070800006FB68A7A5054C008300B6201A40B6203F00B6207D00B620BB80D1C00050D1C00160D1C00640D1C007B0D1C02590D1C03230D1C03850D1C0892"}} +{"type":"ris_message","data":{"timestamp":1753639758.580,"peer":"198.32.176.14","peer_asn":"2914","id":"198.32.176.14-01984d132af40004","host":"rrc14.ripe.net","type":"UPDATE","path":[2914,1299,1299,1299,2603,2603,2603],"community":[[2914,420],[2914,1008],[2914,2000],[2914,3000]],"origin":"IGP","aggregator":"2603:109.105.96.44","announcements":[{"next_hop":"198.32.176.14","prefixes":["193.10.255.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0065020000004A4001010040021E020700000B6200000513000005130000051300000A2B00000A2B00000A2B400304C620B00EC0070800000A2B6D69602CC008100B6201A40B6203F00B6207D00B620BB818C10AFF"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"194.68.123.57","peer_asn":"3399","id":"194.68.123.57-01984d132ae00002","host":"rrc07.ripe.net","type":"UPDATE","path":[3399,5511,2914,63306,63376],"community":[[3399,100],[3399,107],[3399,500],[3399,600],[3399,702],[3399,2027],[5511,542],[5511,666],[5511,700],[5511,10009],[5511,30194],[5511,30195],[5511,30623],[5511,30624],[5511,40083]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.57","prefixes":["140.174.37.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007E020000006340010100400216020500000D470000158700000B620000F74A0000F790400304C2447B39C0083C0D4700640D47006B0D4701F40D4702580D4702BE0D4707EB1587021E1587029A158702BC15872719158775F2158775F31587779F158777A015879C93188CAE25"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:d:ff::57","peer_asn":"3399","id":"2001:7f8:d:ff::57-01984d132ae00005","host":"rrc07.ripe.net","type":"UPDATE","path":[3399,64289,52025],"community":[[3399,200],[3399,219],[3399,504],[3399,600],[3399,711],[3399,2000],[64289,3000]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:d:ff::57,fe80::d248:a100:d786:a458","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00DE02000000C74001010240020E020300000D470000FB210000CB39C0081C0D4700C80D4700DB0D4701F80D4702580D4702C70D4707D0FB210BB8C020600000FB2100000BB80000000A0003258D00000383000001760003258D00000385000000120003258D000003850000003E0003258D00000385000000F50003258D00000385000001760003258D000003850000043B0003258D000003850000341B900E002C00020120200107F8000D00FF0000000000000057FE80000000000000D248A100D786A45800302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"194.68.123.57","peer_asn":"3399","id":"194.68.123.57-01984d132ae00008","host":"rrc07.ripe.net","type":"UPDATE","path":[3399,5511,2914,63306,63376],"community":[[3399,100],[3399,107],[3399,500],[3399,600],[3399,702],[3399,2027],[5511,542],[5511,666],[5511,700],[5511,10009],[5511,30194],[5511,30195],[5511,30198],[5511,30199],[5511,40027]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.57","prefixes":["140.174.37.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007E020000006340010100400216020500000D470000158700000B620000F74A0000F790400304C2447B39C0083C0D4700640D47006B0D4701F40D4702580D4702BE0D4707EB1587021E1587029A158702BC15872719158775F2158775F3158775F6158775F715879C5B188CAE25"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:d:ff::57","peer_asn":"3399","id":"2001:7f8:d:ff::57-01984d132ae0000b","host":"rrc07.ripe.net","type":"UPDATE","path":[3399,38158,150242,214028,214028],"community":[[3399,200],[3399,209],[3399,504],[3399,600],[3399,711],[3399,2000],[38158,65030],[65535,1167]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:d:ff::57,fe80::d248:a100:d786:a458","prefixes":["2a0f:85c1:8b9::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008E020000007740010100400216020500000D470000950E00024AE20003440C0003440CC008200D4700C80D4700D10D4701F80D4702580D4702C70D4707D0950EFE06FFFF048FE0230400001A79900E002C00020120200107F8000D00FF0000000000000057FE80000000000000D248A100D786A45800302A0F85C108B9"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"194.68.123.57","peer_asn":"3399","id":"194.68.123.57-01984d132ae0000e","host":"rrc07.ripe.net","type":"UPDATE","path":[3399,23947,131736,131111,131736],"community":[[3399,200],[3399,209],[3399,504],[3399,600],[3399,711],[3399,2000],[23947,20]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.57","prefixes":["103.132.12.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0065020000004A40010100400216020500000D4700005D8B000202980002002700020298400304C2447B39C0081C0D4700C80D4700D10D4701F80D4702580D4702C70D4707D05D8B0014E0230400001A791867840C"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.57","peer_asn":"3399","id":"194.68.123.57-01984d132ed20000","host":"rrc07.ripe.net","type":"UPDATE","path":[3399,6775],"community":[[3399,200],[3399,209],[3399,504],[3399,600],[3399,711],[3399,2000]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.57","prefixes":["79.134.250.0/23"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0055020000003A4001010040020A020200000D4700001A77400304C2447B39C008180D4700C80D4700D10D4701F80D4702580D4702C70D4707D0E0230400001A79174F86FA"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:7f8:d:ff::57","peer_asn":"3399","id":"2001:7f8:d:ff::57-01984d132ed20003","host":"rrc07.ripe.net","type":"UPDATE","path":[3399,33891,64289,52025],"community":[[3399,200],[3399,205],[3399,500],[3399,600],[3399,702],[3399,2027],[33891,33892],[33891,40001],[64289,3000]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:d:ff::117","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0086020000006F40010102400212020400000D47000084630000FB210000CB39C008240D4700C80D4700CD0D4701F40D4702580D4702BE0D4707EB8463846484639C41FB210BB8C0200C0000FB2100000BB80000000A900E001C00020110200107F8000D00FF000000000000011700302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:7f8:d:ff::57","peer_asn":"3399","id":"2001:7f8:d:ff::57-01984d132ed20006","host":"rrc07.ripe.net","type":"UPDATE","path":[3399,400587,52025],"community":[[3399,200],[3399,219],[3399,504],[3399,600],[3399,711],[3399,2000]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:d:ff::57,fe80::d248:a100:d786:a458","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00E602000000CF4001010240020E020300000D4700061CCB0000CB39C008180D4700C80D4700DB0D4701F80D4702580D4702C70D4707D0C0206C0003258D00000383000000120003258D00000385000000120003258D000003850000003E0003258D00000385000000F50003258D00000385000001760003258D000003850000043B00061CCB000000010000001200061CCB000000020000CB3900061CCB0000000300000002900E002C00020120200107F8000D00FF0000000000000057FE80000000000000D248A100D786A45800302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:7f8:d:ff::57","peer_asn":"3399","id":"2001:7f8:d:ff::57-01984d132ed20009","host":"rrc07.ripe.net","type":"UPDATE","path":[3399,34927,52025],"community":[[3399,200],[3399,219],[3399,504],[3399,600],[3399,711],[3399,2000],[34927,722]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:d:ff::57,fe80::d248:a100:d786:a458","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00C602000000AF4001010240020E020300000D470000886F0000CB39C0081C0D4700C80D4700DB0D4701F80D4702580D4702C70D4707D0886F02D2C020480003258D00000383000000120003258D00000385000000120003258D000003850000003E0003258D00000385000000F50003258D00000385000001760003258D000003850000043B900E002C00020120200107F8000D00FF0000000000000057FE80000000000000D248A100D786A45800302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"217.29.67.51","peer_asn":"41327","id":"217.29.67.51-01984d132ae00002","host":"rrc10.ripe.net","type":"UPDATE","path":[41327,1299,174,37282,37506],"community":[[17152,1],[41327,300],[41327,1299],[41327,3000],[41327,4500],[41327,10001],[41327,11000],[41327,11002]],"origin":"IGP","announcements":[{"next_hop":"217.29.67.51","prefixes":["41.220.84.0/22","41.220.80.0/22","41.220.80.0/20","41.220.88.0/22","41.220.92.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007202000000474001010040021602050000A16F00000513000000AE000091A200009282400304D91D4333C0082043000001A16F012CA16F0513A16F0BB8A16F1194A16F2711A16F2AF8A16F2AFA1629DC541629DC501429DC501629DC581629DC5C"}} +{"type":"ris_message","data":{"timestamp":1753639758.590,"peer":"86.104.125.81","peer_asn":"31554","id":"86.104.125.81-01984d132afe0000","host":"rrc22.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["193.10.255.0/24","130.137.85.0/24"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001F02000818C10AFF188289550000"}} +{"type":"ris_message","data":{"timestamp":1753639758.590,"peer":"86.104.125.81","peer_asn":"31554","id":"86.104.125.81-01984d132afe0003","host":"rrc22.ripe.net","type":"UPDATE","path":[31554,3356,3356,174,52468,28370,28370,28370,28657],"community":[[39107,31554]],"origin":"IGP","announcements":[{"next_hop":"86.104.125.81","prefixes":["138.99.97.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0057020000003C4001010050020026020900007B4200000D1C00000D1C000000AE0000CCF400006ED200006ED200006ED200006FF140030456687D51C0080498C37B42188A6361"}} +{"type":"ris_message","data":{"timestamp":1753639758.590,"peer":"86.104.125.81","peer_asn":"31554","id":"86.104.125.81-01984d132afe0006","host":"rrc22.ripe.net","type":"UPDATE","path":[31554,6204,202827],"community":[[39107,31554]],"origin":"IGP","announcements":[{"next_hop":"86.104.125.81","prefixes":["89.213.158.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003F0200000024400101005002000E020300007B420000183C0003184B40030456687D51C0080498C37B421859D59E"}} +{"type":"ris_message","data":{"timestamp":1753639758.590,"peer":"86.104.125.81","peer_asn":"31554","id":"86.104.125.81-01984d132afe0009","host":"rrc22.ripe.net","type":"UPDATE","path":[31554,6204,6453,1031,262535],"community":[[39107,31554]],"origin":"IGP","announcements":[{"next_hop":"86.104.125.81","prefixes":["177.84.215.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0047020000002C4001010050020016020500007B420000183C00001935000004070004018740030456687D51C0080498C37B4218B154D7"}} +{"type":"ris_message","data":{"timestamp":1753639758.590,"peer":"86.104.125.81","peer_asn":"31554","id":"86.104.125.81-01984d132afe000c","host":"rrc22.ripe.net","type":"UPDATE","path":[31554,47734,9318,38684,38684,38684,38684,38684,38684,38684],"community":[[39107,31554]],"origin":"IGP","announcements":[{"next_hop":"86.104.125.81","prefixes":["124.195.190.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008E0200000073400101005002002A020A00007B420000BA76000024660000971C0000971C0000971C0000971C0000971C0000971C0000971C40030456687D51C0080498C37B42C0203000001A27000007770000005200001A27000007780000000000001A27000007790000011400001A270000077A00000096187CC3BE"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"86.104.125.81","peer_asn":"31554","id":"86.104.125.81-01984d132b080001","host":"rrc22.ripe.net","type":"UPDATE","path":[31554,6204,2914,13786,28263,262272],"community":[[39107,31554]],"origin":"IGP","announcements":[{"next_hop":"86.104.125.81","prefixes":["187.120.130.0/23","177.21.132.0/23","177.21.136.0/23","177.21.138.0/23","187.120.128.0/23","177.21.134.0/23"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005F0200000030400101005002001A020600007B420000183C00000B62000035DA00006E670004008040030456687D51C0080498C37B4217BB788217B1158417B1158817B1158A17BB788017B11586"}} +{"type":"ris_message","data":{"timestamp":1753639759.590,"peer":"86.104.125.81","peer_asn":"31554","id":"86.104.125.81-01984d132ee60000","host":"rrc22.ripe.net","type":"UPDATE","path":[31554,8708,12389,8369],"community":[[39107,31554]],"origin":"INCOMPLETE","announcements":[{"next_hop":"86.104.125.81","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004302000000284001010250020012020400007B420000220400003065000020B140030456687D51C0080498C37B4218C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"217.29.67.55","peer_asn":"199524","id":"217.29.67.55-01984d132ae00000","host":"rrc10.ripe.net","type":"UPDATE","path":[199524,6762,2603],"community":[],"origin":"IGP","aggregator":"2603:109.105.96.6","announcements":[{"next_hop":"217.29.67.55","prefixes":["193.10.255.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004202000000274001010040020E020300030B6400001A6A00000A2B400304D91D4337C0070800000A2B6D69600618C10AFF"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:b:100:1d1:a519:9524:55","peer_asn":"199524","id":"2001:7f8:b:100:1d1:a519:9524:55-01984d132ae00003","host":"rrc10.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2a06:de02:6f3:0:0:0:0:0/48","2a03:eec0:3212:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF002C0200000015900F0011000201302A06DE0206F3302A03EEC03212"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:b:100:1d1:a5d1:5605:120","peer_asn":"15605","id":"2001:7f8:b:100:1d1:a5d1:5605:120-01984d132ec80001","host":"rrc10.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2402:e580:74b3:0:0:0:0:0/48","2406:840:9203:0:0:0:0:0/48","2406:840:eb83:0:0:0:0:0/48","2804:5820:0:0:0:0:0:0/33","2804:5820:8000:0:0:0:0:0/33","2804:45e4:7d00:0:0:0:0:0/44","2804:45e4:a000:0:0:0:0:0/36","2401:8ea0:0:0:0:0:0:0/32"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0051020000003A900F0036000201302402E58074B3302406084092033024060840EB832128045820002128045820802C280445E47D0024280445E4A02024018EA0"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:b:100:1d1:a519:9524:55","peer_asn":"199524","id":"2001:7f8:b:100:1d1:a519:9524:55-01984d132ec80004","host":"rrc10.ripe.net","type":"UPDATE","path":[199524,6762,64289,52025],"community":[],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:b:100:1d1:a519:9524:55","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0050020000003940010102400212020400030B6400001A6A0000FB210000CB39900E001C00020110200107F8000B010001D1A5199524005500302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"217.29.67.55","peer_asn":"199524","id":"217.29.67.55-01984d132ec80007","host":"rrc10.ripe.net","type":"UPDATE","path":[199524,6762,3257,12389,8369],"community":[],"origin":"INCOMPLETE","announcements":[{"next_hop":"217.29.67.55","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003F020000002440010102400216020500030B6400001A6A00000CB900003065000020B1400304D91D433718C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:b:100:1d1:a5d1:5605:120","peer_asn":"15605","id":"2001:7f8:b:100:1d1:a5d1:5605:120-01984d132ec8000a","host":"rrc10.ripe.net","type":"UPDATE","path":[15605,56911,3269,6762,5400,2856,6871],"community":[[15605,2004],[15605,2099],[56911,20002],[56911,20012],[56911,21101]],"origin":"IGP","aggregator":"6871:195.166.128.203","announcements":[{"next_hop":"2001:7f8:b:100:1d1:a5d1:5605:120,fe80::217:a3ff:fe00:b5","prefixes":["2a02:16c8::/35"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00900200000079900E002B00020120200107F8000B010001D1A5D156050120FE800000000000000217A3FFFE0000B500232A0216C8004001010040021E020700003CF50000DE4F00000CC500001A6A0000151800000B2800001AD7400600C0070800001AD7C3A680CBC008143CF507D43CF50833DE4F4E22DE4F4E2CDE4F526D"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:b:100:1d1:a5d1:5605:120","peer_asn":"15605","id":"2001:7f8:b:100:1d1:a5d1:5605:120-01984d132ec8000d","host":"rrc10.ripe.net","type":"UPDATE","path":[15605,12637,1299,3356,30083],"community":[[1299,25000],[12637,65020],[12637,65021],[15605,1000],[15605,1099],[15605,2002],[15605,2199],[15605,3199]],"origin":"EGP","announcements":[{"next_hop":"2001:7f8:b:100:1d1:a5d1:5605:120,fe80::217:a3ff:fe00:b5","prefixes":["2605:de00:bb::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00870200000070900E002C00020120200107F8000B010001D1A5D156050120FE800000000000000217A3FFFE0000B500302605DE0000BB40010101400216020500003CF50000315D0000051300000D1C00007583C00820051361A8315DFDFC315DFDFD3CF503E83CF5044B3CF507D23CF508973CF50C7F"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"217.29.66.120","peer_asn":"15605","id":"217.29.66.120-01984d132ec80010","host":"rrc10.ripe.net","type":"UPDATE","path":[15605,6762,16509,14618],"community":[[6762,1],[6762,31],[6762,40],[6762,10130],[15605,2003],[15605,2099]],"origin":"IGP","announcements":[{"next_hop":"217.29.66.120","prefixes":["130.137.89.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0056020000003B40010100400212020400003CF500001A6A0000407D0000391A400304D91D4278C008181A6A00011A6A001F1A6A00281A6A27923CF507D33CF5083318828959"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:b:100:1d1:a5d1:5605:120","peer_asn":"15605","id":"2001:7f8:b:100:1d1:a5d1:5605:120-01984d132ec80013","host":"rrc10.ripe.net","type":"UPDATE","path":[15605,50263,13188],"community":[[13188,109],[15605,3003],[15605,3099]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:b:100:1d1:a5d1:5605:120,fe80::217:a3ff:fe00:b5","prefixes":["2a03:7380:800::/42"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00B1020000009A900E002C00020120200107F8000B010001D1A5D156050120FE800000000000000217A3FFFE0000B5002A2A03738008004001010040020E020300003CF50000C45700003384C0080C3384006D3CF50BBB3CF50C1BC0203C0000C457000007770000001B0000C45700000778000000650000C45700000779000003240000C4570000077A000000960000ED8C0000000000008CC8E0230400001A79"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d1326c60000","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,34927,34927,52025],"community":[[34927,722]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1::a503:4927:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0094020000007D4001010050020012020400030D020000886F0000886F0000CB39D0080004886F02D2D020003000030D02000000280000000200030D02000000290000000500030D020000002A0000000500030D020000003100000003C0230400001A79900E001C00020110200107F8000100000000A5034927000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1::a500:3214:1","peer_asn":"3214","id":"2001:7f8:1::a500:3214:1-01984d1326c60003","host":"rrc03.ripe.net","type":"UPDATE","path":[3214,34927,52025],"community":[[3214,100],[3214,4911]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:3214:1,fe80::2a8a:1c07:d8c5:52c4","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006702000000504001010240020E020300000C8E0000886F0000CB39C008080C8E00640C8E132F900E002C00020120200107F8000100000000A50032140001FE800000000000002A8A1C07D8C552C400302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1::a500:6461:1","peer_asn":"6461","id":"2001:7f8:1::a500:6461:1-01984d1326c60006","host":"rrc03.ripe.net","type":"UPDATE","path":[6461,3356,33891,5404,62149],"community":[[6461,5997]],"origin":"IGP","med":656,"aggregator":"62149:185.69.239.254","announcements":[{"next_hop":"2001:7f8:1::a500:6461:1,fe80::21f:12ff:febe:726a","prefixes":["2a03:3160::/32"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007E02000000674001010040021602050000193D00000D1C000084630000151C0000F2C580040400000290400600C007080000F2C5B945EFFEC00804193D176D900E002A00020120200107F8000100000000A50064610001FE80000000000000021F12FFFEBE726A00202A033160"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"80.249.211.237","peer_asn":"199938","id":"80.249.211.237-01984d1326c60009","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,1299,6204,208972,207459,57568,205585],"community":[[1299,30000]],"origin":"IGP","announcements":[{"next_hop":"80.249.211.237","prefixes":["185.220.226.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00840200000069400101005002001E020700030D02000005130000183C0003304C00032A630000E0E00003231140030450F9D3EDD008000405137530D020003000030D02000000280000000100030D02000000290000000100030D02000000300000000100030D02000000310000000218B9DCE2"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c6000c","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009C0200000085900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3E010100002FC000000000B0002FC0000000015E020180000B98A0000FC000000000B0000B98A0000FC0000000015E023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1::a500:6461:1","peer_asn":"6461","id":"2001:7f8:1::a500:6461:1-01984d1326c6000f","host":"rrc03.ripe.net","type":"UPDATE","path":[6461,3356,33891,5404,62149],"community":[[6461,5997]],"origin":"IGP","med":656,"aggregator":"62149:185.69.239.254","announcements":[{"next_hop":"2001:7f8:1::a500:6461:1,fe80::21f:12ff:febe:726a","prefixes":["2a03:3160::/32"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007E02000000674001010040021602050000193D00000D1C000084630000151C0000F2C580040400000290400600C007080000F2C5B945EFFEC00804193D176D900E002A00020120200107F8000100000000A50064610001FE80000000000000021F12FFFEBE726A00202A033160"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1::a500:6461:1","peer_asn":"6461","id":"2001:7f8:1::a500:6461:1-01984d1326c60012","host":"rrc03.ripe.net","type":"UPDATE","path":[6461,174,1764,5404,62149],"community":[[6461,5997]],"origin":"IGP","med":127,"aggregator":"62149:185.69.239.254","announcements":[{"next_hop":"2001:7f8:1::a500:6461:1,fe80::21f:12ff:febe:726a","prefixes":["2a03:3160::/32"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007E02000000674001010040021602050000193D000000AE000006E40000151C0000F2C58004040000007F400600C007080000F2C5B945EFFEC00804193D176D900E002A00020120200107F8000100000000A50064610001FE80000000000000021F12FFFEBE726A00202A033160"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1::a500:6461:1","peer_asn":"6461","id":"2001:7f8:1::a500:6461:1-01984d1326c60015","host":"rrc03.ripe.net","type":"UPDATE","path":[6461,6939,20115,7843,11426,19115],"community":[[6461,5997]],"origin":"IGP","med":9165,"announcements":[{"next_hop":"2001:7f8:1::a500:6461:1,fe80::21f:12ff:febe:726a","prefixes":["2600:6c7f:9370::/44"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0076020000005F4001010040021A02060000193D00001B1B00004E9300001EA300002CA200004AAB800404000023CDC00804193D176D900E002C00020120200107F8000100000000A50064610001FE80000000000000021F12FFFEBE726A002C26006C7F9370"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c60018","host":"rrc03.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2602:fa7e:17:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A000201302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d1326c6001b","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,34927,34927,52025],"community":[[34927,722]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1::a503:4927:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0094020000007D4001010050020012020400030D020000886F0000886F0000CB39D0080004886F02D2D020003000030D02000000280000000200030D02000000290000000500030D020000002A0000000500030D020000003100000003C0230400001A79900E001C00020110200107F8000100000000A5034927000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c6001e","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,153],[34927,730],[34927,732]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006F0200000058900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00810886F0082886F0099886F02DA886F02DC"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d1326c60021","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,1299,174,64289,52025],"community":[[1299,25000]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0091020000007A4001010050020016020500030D0200000513000000AE0000FB210000CB39D0080004051361A8D020003000030D02000000280000000100030D02000000290000000100030D02000000300000000100030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c60024","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,153],[34927,730],[34927,732]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006F0200000058900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00810886F0082886F0099886F02DA886F02DC"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d1326c60027","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,1299,174,64289,52025],"community":[[1299,25000]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0091020000007A4001010050020016020500030D0200000513000000AE0000FB210000CB39D0080004051361A8D020003000030D02000000280000000100030D02000000290000000100030D02000000300000000100030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c6002a","host":"rrc03.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2602:fa7e:17:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A000201302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d1326c6002d","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,34927,34927,52025],"community":[[34927,722]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1::a503:4927:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0094020000007D4001010050020012020400030D020000886F0000886F0000CB39D0080004886F02D2D020003000030D02000000280000000200030D02000000290000000500030D020000002A0000000500030D020000003100000003C0230400001A79900E001C00020110200107F8000100000000A5034927000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c60030","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d1326c60033","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,34927,34927,52025],"community":[[34927,722]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1::a503:4927:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0094020000007D4001010050020012020400030D020000886F0000886F0000CB39D0080004886F02D2D020003000030D02000000280000000200030D02000000290000000500030D020000002A0000000500030D020000003100000003C0230400001A79900E001C00020110200107F8000100000000A5034927000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c60036","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,153],[34927,730],[34927,732]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006F0200000058900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00810886F0082886F0099886F02DA886F02DC"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c60039","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009C0200000085900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3E010100002FC000000000B0002FC0000000015E020180000B98A0000FC000000000B0000B98A0000FC0000000015E023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c6003c","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,5405,52025],"community":[[34927,110],[34927,180]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006B0200000054900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002120204000332F20000886F0000151D0000CB39C00808886F006E886F00B4"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c6003f","host":"rrc03.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2602:fa7e:17:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A000201302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c60042","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009C0200000085900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3E010100002FC000000000B0002FC0000000015E020180000B98A0000FC000000000B0000B98A0000FC0000000015E023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c60045","host":"rrc03.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2602:fa7e:17:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A000201302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c60048","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c6004b","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,174,64289,52025],"community":[[34927,110],[34927,147]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007E0200000067900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002160205000332F20000886F000000AE0000FB210000CB39C00808886F006E886F0093C0200C0000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c6004e","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009C0200000085900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3E010100002FC000000000B0002FC0000000015E020180000B98A0000FC000000000B0000B98A0000FC0000000015E023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639757.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326d00001","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,830],[34927,863]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F033E886F035F"}} +{"type":"ris_message","data":{"timestamp":1753639757.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326d00004","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,5405,52025],"community":[[34927,110],[34927,180]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006B0200000054900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002120204000332F20000886F0000151D0000CB39C00808886F006E886F00B4"}} +{"type":"ris_message","data":{"timestamp":1753639757.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326d00007","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3"}} +{"type":"ris_message","data":{"timestamp":1753639757.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326d0000a","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009C0200000085900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3E010100002FC000000000B0002FC0000000015E020180000B98A0000FC000000000B0000B98A0000FC0000000015E023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:d:ff::157","peer_asn":"9002","id":"2001:7f8:d:ff::157-01984d132ae00002","host":"rrc07.ripe.net","type":"UPDATE","path":[9002,64289,52025],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:d:ff::157,fe80::76e7:9800:d726:6422","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005C02000000454001010040020E02030000232A0000FB210000CB39900E002C00020120200107F8000D00FF0000000000000157FE8000000000000076E79800D726642200302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:7f8:d:ff::157","peer_asn":"9002","id":"2001:7f8:d:ff::157-01984d132ed20001","host":"rrc07.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2605:9cc0:c0d:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A0002013026059CC00C0D"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.157","peer_asn":"9002","id":"194.68.123.157-01984d132ed20004","host":"rrc07.ripe.net","type":"UPDATE","path":[9002,6762,12389,8369],"community":[],"origin":"IGP","announcements":[{"next_hop":"194.68.123.157","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003B02000000204001010040021202040000232A00001A6A00003065000020B1400304C2447B9D18C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.157","peer_asn":"9002","id":"194.68.123.157-01984d132ed20007","host":"rrc07.ripe.net","type":"UPDATE","path":[9002,3356,1299,1299,1299,2603,2603,2603],"community":[],"origin":"IGP","aggregator":"2603:109.105.96.44","announcements":[{"next_hop":"194.68.123.157","prefixes":["193.10.255.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0056020000003B4001010040022202080000232A00000D1C00000513000005130000051300000A2B00000A2B00000A2B400304C2447B9DC0070800000A2B6D69602C18C10AFF"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.157","peer_asn":"9002","id":"194.68.123.157-01984d132ed2000a","host":"rrc07.ripe.net","type":"UPDATE","path":[9002,3356,6453,32098,17072,17072,17072,17072,17072,265566],"community":[],"origin":"IGP","announcements":[{"next_hop":"194.68.123.157","prefixes":["45.172.92.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005302000000384001010040022A020A0000232A00000D1C0000193500007D62000042B0000042B0000042B0000042B0000042B000040D5E400304C2447B9D162DAC5C"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.157","peer_asn":"9002","id":"194.68.123.157-01984d132ed2000d","host":"rrc07.ripe.net","type":"UPDATE","path":[9002,3356,2914,16509],"community":[],"origin":"IGP","announcements":[{"next_hop":"194.68.123.157","prefixes":["130.137.26.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003B02000000204001010040021202040000232A00000D1C00000B620000407D400304C2447B9D1882891A"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.157","peer_asn":"9002","id":"194.68.123.157-01984d132ed20010","host":"rrc07.ripe.net","type":"UPDATE","path":[9002,3356,6453,12297,55330,55330,55330,55330,55330,55330,55330,135298],"community":[],"origin":"IGP","announcements":[{"next_hop":"194.68.123.157","prefixes":["223.26.21.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005B020000004040010100400232020C0000232A00000D1C00001935000030090000D8220000D8220000D8220000D8220000D8220000D8220000D82200021082400304C2447B9D18DF1A15"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.157","peer_asn":"9002","id":"194.68.123.157-01984d132ed20013","host":"rrc07.ripe.net","type":"UPDATE","path":[9002,6939,52320,15964,15964,15964,15964,15964,15964],"community":[],"origin":"IGP","announcements":[{"next_hop":"194.68.123.157","prefixes":["154.72.173.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004F02000000344001010040022602090000232A00001B1B0000CC6000003E5C00003E5C00003E5C00003E5C00003E5C00003E5C400304C2447B9D189A48AD"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.157","peer_asn":"9002","id":"194.68.123.157-01984d132ed20016","host":"rrc07.ripe.net","type":"UPDATE","path":[9002,6453,12297,55330,55330,55330,55330,55330,55330,55330,135298],"community":[],"origin":"IGP","announcements":[{"next_hop":"194.68.123.157","prefixes":["223.26.21.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0057020000003C4001010040022E020B0000232A00001935000030090000D8220000D8220000D8220000D8220000D8220000D8220000D82200021082400304C2447B9D18DF1A15"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.226","peer_asn":"24482","id":"194.68.123.226-01984d132ed2000b","host":"rrc07.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["103.132.12.0/24"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001B0200041867840C0000"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.226","peer_asn":"24482","id":"194.68.123.226-01984d132ed2000e","host":"rrc07.ripe.net","type":"UPDATE","path":[24482,2914,2914,174,20473,25048],"community":[[2914,420],[2914,1009],[2914,2000],[2914,3000],[24482,1],[24482,100],[24482,12000],[24482,12030],[24482,12032],[24482,20300],[24482,64602]],"origin":"IGP","med":120,"announcements":[{"next_hop":"194.68.123.226","prefixes":["81.90.132.0/24","81.90.133.0/24","81.90.139.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008C02000000694001010040021A020600005FA200000B6200000B62000000AE00004FF9000061D8400304C2447BE280040400000078C0082C0B6201A40B6203F10B6207D00B620BB85FA200015FA200645FA22EE05FA22EFE5FA22F005FA24F4C5FA2FC5AC0100800025FA20000013618515A8418515A8518515A8B"}} +{"type":"ris_message","data":{"timestamp":1753639757.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326d0000b","host":"rrc03.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2610:a1:1028:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A00020130261000A11028"}} +{"type":"ris_message","data":{"timestamp":1753639757.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326d0000e","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,830],[34927,863]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F033E886F035F"}} +{"type":"ris_message","data":{"timestamp":1753639757.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326d00011","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,5405,52025],"community":[[34927,110],[34927,180]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006B0200000054900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002120204000332F20000886F0000151D0000CB39C00808886F006E886F00B4"}} +{"type":"ris_message","data":{"timestamp":1753639757.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326d00014","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009C0200000085900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3E010100002FC000000000B0002FC0000000015E020180000B98A0000FC000000000B0000B98A0000FC0000000015E023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639758.500,"peer":"80.249.209.255","peer_asn":"3214","id":"80.249.209.255-01984d132aa40002","host":"rrc03.ripe.net","type":"UPDATE","path":[3214,24482,45430,4750],"community":[[3214,100],[3214,4701]],"origin":"IGP","announcements":[{"next_hop":"80.249.209.255","prefixes":["58.137.31.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0046020000002B40010100400212020400000C8E00005FA20000B1760000128E40030450F9D1FFC008080C8E00640C8E125D183A891F"}} +{"type":"ris_message","data":{"timestamp":1753639758.500,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aa40005","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,1299,174,64289,52025],"community":[[1299,25000]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0091020000007A4001010050020016020500030D0200000513000000AE0000FB210000CB39D0080004051361A8D020003000030D02000000280000000100030D02000000290000000100030D02000000300000000100030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.500,"peer":"193.239.118.220","peer_asn":"209650","id":"193.239.118.220-01984d132aa40008","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,5405,12389,8369],"community":[[34927,110],[34927,180]],"origin":"INCOMPLETE","announcements":[{"next_hop":"193.239.118.220","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004A020000002F400101024002160205000332F20000886F0000151D00003065000020B1400304C1EF76DCC00808886F006E886F00B418C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639758.500,"peer":"2001:7f8:1::a500:3214:1","peer_asn":"3214","id":"2001:7f8:1::a500:3214:1-01984d132aa4000b","host":"rrc03.ripe.net","type":"UPDATE","path":[3214,1299,174,53667,202256],"community":[[1299,25000],[3214,100],[3214,3001]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1::a500:3214:1,fe80::2a8a:1c07:d8c5:52c4","prefixes":["2a06:de02:6f3::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0073020000005C40010100400216020500000C8E00000513000000AE0000D1A300031610C0080C051361A80C8E00640C8E0BB9900E002C00020120200107F8000100000000A50032140001FE800000000000002A8A1C07D8C552C400302A06DE0206F3"}} +{"type":"ris_message","data":{"timestamp":1753639758.500,"peer":"193.239.118.220","peer_asn":"209650","id":"193.239.118.220-01984d132aa4000e","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,1299,12389,8369],"community":[[34927,110],[34927,161]],"origin":"IGP","announcements":[{"next_hop":"193.239.118.220","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004A020000002F400101004002160205000332F20000886F0000051300003065000020B1400304C1EF76DCC00808886F006E886F00A118C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639758.500,"peer":"2001:7f8:1::a500:3214:1","peer_asn":"3214","id":"2001:7f8:1::a500:3214:1-01984d132aa40011","host":"rrc03.ripe.net","type":"UPDATE","path":[3214,6939,3356,33891,64289,52025],"community":[[3214,100],[3214,600],[3214,4911]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1::a500:3214:1,fe80::2a8a:1c07:d8c5:52c4","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007702000000604001010040021A020600000C8E00001B1B00000D1C000084630000FB210000CB39C0080C0C8E00640C8E02580C8E132F900E002C00020120200107F8000100000000A50032140001FE800000000000002A8A1C07D8C552C400302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"193.239.118.220","peer_asn":"209650","id":"193.239.118.220-01984d132aae0000","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,6939,12389,8369],"community":[[34927,130]],"origin":"IGP","announcements":[{"next_hop":"193.239.118.220","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0046020000002B400101004002160205000332F20000886F00001B1B00003065000020B1400304C1EF76DCE00804886F008218C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1::a500:3214:1","peer_asn":"3214","id":"2001:7f8:1::a500:3214:1-01984d132aae0003","host":"rrc03.ripe.net","type":"UPDATE","path":[3214,34927,52025],"community":[[3214,100],[3214,4911]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:3214:1,fe80::2a8a:1c07:d8c5:52c4","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006702000000504001010240020E020300000C8E0000886F0000CB39C008080C8E00640C8E132F900E002C00020120200107F8000100000000A50032140001FE800000000000002A8A1C07D8C552C400302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"193.239.118.220","peer_asn":"209650","id":"193.239.118.220-01984d132aae0006","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,1299,174,20473,25048],"community":[[34927,110],[34927,161]],"origin":"IGP","announcements":[{"next_hop":"193.239.118.220","prefixes":["81.90.139.0/24","81.90.132.0/24","81.90.133.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005602000000334001010040021A0206000332F20000886F00000513000000AE00004FF9000061D8400304C1EF76DCC00808886F006E886F00A118515A8B18515A8418515A85"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1::a500:3214:1","peer_asn":"3214","id":"2001:7f8:1::a500:3214:1-01984d132aae0009","host":"rrc03.ripe.net","type":"UPDATE","path":[3214,1299,174,53667,202256],"community":[[1299,20000],[3214,100],[3214,3001]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1::a500:3214:1,fe80::2a8a:1c07:d8c5:52c4","prefixes":["2a06:de02:6f3::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0073020000005C40010100400216020500000C8E00000513000000AE0000D1A300031610C0080C05134E200C8E00640C8E0BB9900E002C00020120200107F8000100000000A50032140001FE800000000000002A8A1C07D8C552C400302A06DE0206F3"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae000c","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,5405,52025],"community":[[34927,110],[34927,180]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006B0200000054900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002120204000332F20000886F0000151D0000CB39C00808886F006E886F00B4"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"80.249.211.237","peer_asn":"199938","id":"80.249.211.237-01984d132aae000f","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,6775,13030,60728],"community":[[60728,1],[13030,11],[13030,50000],[13030,51116],[13030,8160]],"origin":"IGP","announcements":[{"next_hop":"80.249.214.192","prefixes":["185.22.52.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008F02000000744001010050020012020400030D0200001A77000032E60000ED3840030450F9D6C0D0080014ED38000132E6000B32E6C35032E6C7AC32E61FE0D020003000030D02000000280000000200030D02000000290000000500030D020000002A0000000500030D020000003100000003C0230400001A7916B91634"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"80.249.209.255","peer_asn":"3214","id":"80.249.209.255-01984d132aae0012","host":"rrc03.ripe.net","type":"UPDATE","path":[3214,7195,55211],"community":[[3214,100],[3214,4001]],"origin":"IGP","announcements":[{"next_hop":"80.249.209.255","prefixes":["76.72.161.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004202000000274001010040020E020300000C8E00001C1B0000D7AB40030450F9D1FFC008080C8E00640C8E0FA1184C48A1"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aae0015","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,34927,34927,52025],"community":[[34927,722]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1::a503:4927:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0094020000007D4001010050020012020400030D020000886F0000886F0000CB39D0080004886F02D2D020003000030D02000000280000000200030D02000000290000000500030D020000002A0000000500030D020000003100000003C0230400001A79900E001C00020110200107F8000100000000A5034927000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1::a500:3214:1","peer_asn":"3214","id":"2001:7f8:1::a500:3214:1-01984d132aae0018","host":"rrc03.ripe.net","type":"UPDATE","path":[3214,28458],"community":[[3214,100],[3214,4001]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:3214:1,fe80::2a8a:1c07:d8c5:52c4","prefixes":["2806:202::/32"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0061020000004A4001010240020A020200000C8E00006F2AC008080C8E00640C8E0FA1900E002A00020120200107F8000100000000A50032140001FE800000000000002A8A1C07D8C552C4002028060202"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae001b","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"80.249.211.237","peer_asn":"199938","id":"80.249.211.237-01984d132aae001e","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,6939,12389,8369],"community":[],"origin":"IGP","announcements":[{"next_hop":"80.249.211.237","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007002000000554001010050020012020400030D0200001B1B00003065000020B140030450F9D3EDD020003000030D02000000280000000100030D02000000290000000100030D020000002A0000000200030D02000000310000000318C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1::a500:3214:1","peer_asn":"3214","id":"2001:7f8:1::a500:3214:1-01984d132aae0021","host":"rrc03.ripe.net","type":"UPDATE","path":[3214,6939,3356,33891,64289,52025],"community":[[3214,100],[3214,600],[3214,4911]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1::a500:3214:1,fe80::2a8a:1c07:d8c5:52c4","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007702000000604001010040021A020600000C8E00001B1B00000D1C000084630000FB210000CB39C0080C0C8E00640C8E02580C8E132F900E002C00020120200107F8000100000000A50032140001FE800000000000002A8A1C07D8C552C400302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae0024","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025,52025,52025,52025],"community":[[34927,930]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006F0200000058900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240021A0206000332F20000886F0000CB390000CB390000CB390000CB39C00804886F03A2"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae0027","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,153],[34927,730],[34927,732]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006F0200000058900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00810886F0082886F0099886F02DA886F02DC"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae002a","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae002d","host":"rrc03.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2602:fa7e:17:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A000201302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae0030","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,730]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00B2020000009B900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F02DAC020480003258D00000383000000120003258D00000385000000120003258D000003850000003E0003258D00000385000000F50003258D00000385000001760003258D000003850000043B"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aae0033","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,64289,52025],"community":[[64289,3000]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00C502000000AE400101005002000E020300030D020000FB210000CB39D0080004FB210BB8D020006C00001A27000007770000005900001A27000007780000000000001A27000007790000011400001A270000077A000000960000FB2100000BB80000000A00030D02000000280000000100030D02000000290000000200030D020000002A0000000100030D020000003100000003900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae0036","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,174,64289,52025],"community":[[34927,110],[34927,147]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007E0200000067900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002160205000332F20000886F000000AE0000FB210000CB39C00808886F006E886F0093C0200C0000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aae0039","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,34927,34927,52025],"community":[[34927,722]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1::a503:4927:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0094020000007D4001010050020012020400030D020000886F0000886F0000CB39D0080004886F02D2D020003000030D02000000280000000200030D02000000290000000500030D020000002A0000000500030D020000003100000003C0230400001A79900E001C00020110200107F8000100000000A5034927000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae003c","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009C0200000085900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3E010100002FC000000000B0002FC0000000015E020180000B98A0000FC000000000B0000B98A0000FC0000000015E023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aae003f","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,1299,174,64289,52025],"community":[[1299,25000]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0091020000007A4001010050020016020500030D0200000513000000AE0000FB210000CB39D0080004051361A8D020003000030D02000000280000000100030D02000000290000000100030D02000000300000000100030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae0042","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,153],[34927,730],[34927,732]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006F0200000058900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00810886F0082886F0099886F02DA886F02DC"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aae0045","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,1299,174,64289,52025],"community":[[1299,25000]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0091020000007A4001010050020016020500030D0200000513000000AE0000FB210000CB39D0080004051361A8D020003000030D02000000280000000100030D02000000290000000100030D02000000300000000100030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae0048","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,5405,52025],"community":[[34927,110],[34927,180]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006B0200000054900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002120204000332F20000886F0000151D0000CB39C00808886F006E886F00B4"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aae004b","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,34927,34927,52025],"community":[[34927,722]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1::a503:4927:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0094020000007D4001010050020012020400030D020000886F0000886F0000CB39D0080004886F02D2D020003000030D02000000280000000200030D02000000290000000500030D020000002A0000000500030D020000003100000003C0230400001A79900E001C00020110200107F8000100000000A5034927000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae004e","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aae0051","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,201709,5405,52025],"community":[[5405,3],[65000,65031],[5405,15],[0,13335],[0,6939],[65000,65101],[65534,49002],[0,57463],[65000,50041],[65000,65151],[65534,48004],[5405,4001],[5405,3001],[5405,213]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00CD02000000B64001010050020012020400030D02000313ED0000151D0000CB39D0080038151D0003FDE8FE07151D000F0000341700001B1BFDE8FE4DFFFEBF6A0000E077FDE8C379FDE8FE7FFFFEBB84151D0FA1151D0BB9151D00D5D020003C00030D02000000280000000100030D02000000290000000100030D02000000300000000200030D02000000300000000400030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae0054","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,174,64289,52025],"community":[[34927,110],[34927,147]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007E0200000067900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002160205000332F20000886F000000AE0000FB210000CB39C00808886F006E886F0093C0200C0000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132ab80002","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,201709,5405,52025],"community":[[5405,3],[65000,65031],[5405,15],[0,13335],[0,6939],[65000,65101],[65534,49002],[0,57463],[65000,50041],[65000,65151],[65534,48004],[5405,4001],[5405,3001],[5405,213]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00CD02000000B64001010050020012020400030D02000313ED0000151D0000CB39D0080038151D0003FDE8FE07151D000F0000341700001B1BFDE8FE4DFFFEBF6A0000E077FDE8C379FDE8FE7FFFFEBB84151D0FA1151D0BB9151D00D5D020003C00030D02000000280000000100030D02000000290000000100030D02000000300000000200030D02000000300000000400030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80005","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80008","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab8000b","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,64289,52025],"community":[[34927,130],[34927,1301]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00AA0200000093900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002120204000332F20000886F0000FB210000CB39C00808886F0082886F0515C0203C00001A27000007770000005900001A27000007780000000000001A27000007790000011400001A270000077A000000960000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab8000e","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,64289,52025],"community":[[34927,830]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A6020000008F900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002120204000332F20000886F0000FB210000CB39C00804886F033EC0203C0000A5EC00000777000000960000A5EC000007780000001C0000A5EC00000779000002F40000A5EC0000077A000000960000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80011","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,153],[34927,730],[34927,732]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006F0200000058900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00810886F0082886F0099886F02DA886F02DC"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80014","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009C0200000085900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3E010100002FC000000000B0002FC0000000015E020180000B98A0000FC000000000B0000B98A0000FC0000000015E023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80017","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab8001a","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,153],[34927,730],[34927,732]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006F0200000058900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00810886F0082886F0099886F02DA886F02DC"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab8001d","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80020","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,64289,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002120204000332F20000886F0000FB210000CB39C00808886F0082886F00A3C0200C0000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80023","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,5405,52025],"community":[[34927,110],[34927,180]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006B0200000054900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002120204000332F20000886F0000151D0000CB39C00808886F006E886F00B4"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80026","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,730]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00B2020000009B900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F02DAC020480003258D00000383000000120003258D00000385000000120003258D000003850000003E0003258D00000385000000F50003258D00000385000001760003258D000003850000043B"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80029","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,5405,52025],"community":[[34927,110],[34927,180]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006B0200000054900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002120204000332F20000886F0000151D0000CB39C00808886F006E886F00B4"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab8002c","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab8002f","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,174,64289,52025],"community":[[34927,110],[34927,147]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007E0200000067900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002160205000332F20000886F000000AE0000FB210000CB39C00808886F006E886F0093C0200C0000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80032","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80035","host":"rrc03.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2602:fa7e:17:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A000201302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.570,"peer":"2001:7f8:24::74","peer_asn":"8218","id":"2001:7f8:24::74-01984d1327020001","host":"rrc20.ripe.net","type":"UPDATE","path":[8218,6461,3356,13786,28263],"community":[[8218,103]],"origin":"IGP","med":2610,"announcements":[{"next_hop":"2001:7f8:24::74,fe80::da53:9aff:feb1:14cd","prefixes":["2804:4f8:888b::/48","2804:4f8:8400::/40"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007802000000614001010040021602050000201A0000193D00000D1C000035DA00006E6780040400000A32C00804201A0067900E003200020120200107F8002400000000000000000074FE80000000000000DA539AFFFEB114CD0030280404F8888B28280404F884"}} +{"type":"ris_message","data":{"timestamp":1753639757.570,"peer":"91.206.52.5","peer_asn":"47147","id":"91.206.52.5-01984d1327020004","host":"rrc20.ripe.net","type":"UPDATE","path":[47147,4637,45430,4750],"community":[[47147,1500],[47147,2000],[47147,2114],[47147,2301],[47147,2418],[47147,2715]],"origin":"IGP","med":0,"announcements":[{"next_hop":"91.206.52.5","prefixes":["58.137.31.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005D02000000424001010040021202040000B82B0000121D0000B1760000128E4003045BCE340580040400000000C00818B82B05DCB82B07D0B82B0842B82B08FDB82B0972B82B0A9B183A891F"}} +{"type":"ris_message","data":{"timestamp":1753639757.570,"peer":"2001:7f8:24::74","peer_asn":"8218","id":"2001:7f8:24::74-01984d1327020007","host":"rrc20.ripe.net","type":"UPDATE","path":[8218,52025],"community":[[8218,102]],"origin":"INCOMPLETE","med":2610,"announcements":[{"next_hop":"2001:7f8:24::74,fe80::da53:9aff:feb1:14cd","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0066020000004F4001010240020A02020000201A0000CB3980040400000A32C00804201A0066900E002C00020120200107F8002400000000000000000074FE80000000000000DA539AFFFEB114CD00302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"91.206.52.116","peer_asn":"8218","id":"91.206.52.116-01984d132aea0000","host":"rrc20.ripe.net","type":"UPDATE","path":[8218,6461,3356,268108],"community":[[8218,103],[8218,20000],[8218,20210]],"origin":"IGP","med":2610,"announcements":[{"next_hop":"91.206.52.116","prefixes":["45.169.124.0/22","45.169.126.0/23","45.169.124.0/23"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005902000000364001010040021202040000201A0000193D00000D1C0004174C4003045BCE347480040400000A32C0080C201A0067201A4E20201A4EF2162DA97C172DA97E172DA97C"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:24::5","peer_asn":"47147","id":"2001:7f8:24::5-01984d132aea0003","host":"rrc20.ripe.net","type":"UPDATE","path":[47147,2914,6453,139341,139341],"community":[[2914,420],[2914,1210],[2914,2210],[2914,3200],[47147,1500],[47147,2000],[47147,2101],[47147,2300],[47147,2401],[47147,2601]],"origin":"IGP","med":0,"aggregator":"65269:43.174.88.2","announcements":[{"next_hop":"2001:7f8:24::5,fe80::22d8:bff:feed:ac5e","prefixes":["240d:c010:165::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A4020000008D4001010040021602050000B82B00000B62000019350002204D0002204D80040400000000400600C007080000FEF52BAE5802C008280B6201A40B6204BA0B6208A20B620C80B82B05DCB82B07D0B82B0835B82B08FCB82B0961B82B0A29900E002C00020120200107F8002400000000000000000005FE8000000000000022D80BFFFEEDAC5E0030240DC0100165"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:24::5","peer_asn":"47147","id":"2001:7f8:24::5-01984d132aea0006","host":"rrc20.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2610:a1:1028:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A00020130261000A11028"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:24::5","peer_asn":"47147","id":"2001:7f8:24::5-01984d132aea0009","host":"rrc20.ripe.net","type":"UPDATE","path":[47147,9002,3356,1299,22616],"community":[[9002,9002],[9002,64789],[47147,1502],[47147,2000],[47147,2100],[47147,2300],[47147,2400],[47147,2616]],"origin":"IGP","med":0,"announcements":[{"next_hop":"2001:7f8:24::5,fe80::22d8:bff:feed:ac5e","prefixes":["2a03:eec0:3212::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008E02000000774001010040021602050000B82B0000232A00000D1C000005130000585880040400000000C00820232A232A232AFD15B82B05DEB82B07D0B82B0834B82B08FCB82B0960B82B0A38900E002C00020120200107F8002400000000000000000005FE8000000000000022D80BFFFEEDAC5E00302A03EEC03212"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:24::74","peer_asn":"8218","id":"2001:7f8:24::74-01984d132aea000c","host":"rrc20.ripe.net","type":"UPDATE","path":[8218,52025],"community":[[8218,102]],"origin":"INCOMPLETE","med":2610,"announcements":[{"next_hop":"2001:7f8:24::74,fe80::da53:9aff:feb1:14cd","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0066020000004F4001010240020A02020000201A0000CB3980040400000A32C00804201A0066900E002C00020120200107F8002400000000000000000074FE80000000000000DA539AFFFEB114CD00302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:24::5","peer_asn":"47147","id":"2001:7f8:24::5-01984d132aea000f","host":"rrc20.ripe.net","type":"UPDATE","path":[47147,1299,174,64289,52025],"community":[[1299,25000],[47147,1410],[47147,1500],[47147,2000],[47147,2102],[47147,2300],[47147,2403],[47147,2600]],"origin":"IGP","med":0,"announcements":[{"next_hop":"2001:7f8:24::5,fe80::22d8:bff:feed:ac5e","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008E02000000774001010040021602050000B82B00000513000000AE0000FB210000CB3980040400000000C00820051361A8B82B0582B82B05DCB82B07D0B82B0836B82B08FCB82B0963B82B0A28900E002C00020120200107F8002400000000000000000005FE8000000000000022D80BFFFEEDAC5E00302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.570,"peer":"2001:7f8:24::b4","peer_asn":"62167","id":"2001:7f8:24::b4-01984d1327020001","host":"rrc20.ripe.net","type":"UPDATE","path":[62167,24785,12956,61832,263546,263546,263546,263546,268487,269194,268487],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::b4,fe80::8ae6:4b00:67c8:e7b4","prefixes":["2804:51f8::/32"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A02000000634001010040022E020B0000F2D7000060D10000329C0000F1880004057A0004057A0004057A0004057A000418C700041B8A000418C7900E002A00020120200107F80024000000000000000000B4FE800000000000008AE64B0067C8E7B40020280451F8"}} +{"type":"ris_message","data":{"timestamp":1753639757.570,"peer":"2001:7f8:24::b4","peer_asn":"62167","id":"2001:7f8:24::b4-01984d1327020004","host":"rrc20.ripe.net","type":"UPDATE","path":[62167,3257,1299,22616],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::b4,fe80::8ae6:4b00:67c8:e7b4","prefixes":["2a03:eec0:3212::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006002000000494001010040021202040000F2D700000CB90000051300005858900E002C00020120200107F80024000000000000000000B4FE800000000000008AE64B0067C8E7B400302A03EEC03212"}} +{"type":"ris_message","data":{"timestamp":1753639757.570,"peer":"2001:7f8:24::b4","peer_asn":"62167","id":"2001:7f8:24::b4-01984d1327020007","host":"rrc20.ripe.net","type":"UPDATE","path":[62167,3257,174,53667,202256],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::b4,fe80::8ae6:4b00:67c8:e7b4","prefixes":["2a06:de02:5bb::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0064020000004D4001010040021602050000F2D700000CB9000000AE0000D1A300031610900E002C00020120200107F80024000000000000000000B4FE800000000000008AE64B0067C8E7B400302A06DE0205BB"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:24::b4","peer_asn":"62167","id":"2001:7f8:24::b4-01984d132aea0000","host":"rrc20.ripe.net","type":"UPDATE","path":[62167,6939,3356,33891,64289,52025],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::b4,fe80::8ae6:4b00:67c8:e7b4","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006802000000514001010040021A02060000F2D700001B1B00000D1C000084630000FB210000CB39900E002C00020120200107F80024000000000000000000B4FE800000000000008AE64B0067C8E7B400302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"91.206.52.180","peer_asn":"62167","id":"91.206.52.180-01984d132aea0003","host":"rrc20.ripe.net","type":"UPDATE","path":[62167,24785,20562,2603],"community":[],"origin":"IGP","aggregator":"2603:109.105.96.23","announcements":[{"next_hop":"91.206.52.180","prefixes":["193.10.255.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0046020000002B4001010040021202040000F2D7000060D10000505200000A2B4003045BCE34B4C0070800000A2B6D69601718C10AFF"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:24::b4","peer_asn":"62167","id":"2001:7f8:24::b4-01984d132aea0006","host":"rrc20.ripe.net","type":"UPDATE","path":[62167,64289,52025],"community":[],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::b4,fe80::8ae6:4b00:67c8:e7b4","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005C02000000454001010240020E02030000F2D70000FB210000CB39900E002C00020120200107F80024000000000000000000B4FE800000000000008AE64B0067C8E7B400302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"91.206.52.180","peer_asn":"62167","id":"91.206.52.180-01984d132aea0009","host":"rrc20.ripe.net","type":"UPDATE","path":[62167,7552,38623,23673,23673,23673,23673],"community":[],"origin":"IGP","announcements":[{"next_hop":"91.206.52.180","prefixes":["124.248.160.0/19"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004E02000000334001010040021E02070000F2D700001D80000096DF00005C7900005C7900005C7900005C794003045BCE34B4E023040000220A137CF8A0"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:24::b4","peer_asn":"62167","id":"2001:7f8:24::b4-01984d132aea000c","host":"rrc20.ripe.net","type":"UPDATE","path":[62167,174,1299,16509,8987],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::b4,fe80::8ae6:4b00:67c8:e7b4","prefixes":["2605:9cc0:c0d::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0064020000004D4001010040021602050000F2D7000000AE000005130000407D0000231B900E002C00020120200107F80024000000000000000000B4FE800000000000008AE64B0067C8E7B4003026059CC00C0D"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:7f8:24::b4","peer_asn":"62167","id":"2001:7f8:24::b4-01984d132ed20001","host":"rrc20.ripe.net","type":"UPDATE","path":[62167,38158,150242,214028,214028],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::b4,fe80::8ae6:4b00:67c8:e7b4","prefixes":["2a0f:85c1:8b9::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006B02000000544001010040021602050000F2D70000950E00024AE20003440C0003440CE023040000220A900E002C00020120200107F80024000000000000000000B4FE800000000000008AE64B0067C8E7B400302A0F85C108B9"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:7f8:24::b4","peer_asn":"62167","id":"2001:7f8:24::b4-01984d132ed20004","host":"rrc20.ripe.net","type":"UPDATE","path":[62167,6939,16509,16509,8987],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::b4,fe80::8ae6:4b00:67c8:e7b4","prefixes":["2605:9cc0:c0d::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0064020000004D4001010040021602050000F2D700001B1B0000407D0000407D0000231B900E002C00020120200107F80024000000000000000000B4FE800000000000008AE64B0067C8E7B4003026059CC00C0D"}} +{"type":"ris_message","data":{"timestamp":1753639757.560,"peer":"2001:7f8:b:100:1d1:a5d1:2637:86","peer_asn":"12637","id":"2001:7f8:b:100:1d1:a5d1:2637:86-01984d1326f80001","host":"rrc10.ripe.net","type":"UPDATE","path":[12637,2914,1299,22616],"community":[[2914,420],[2914,1001],[2914,2000],[2914,3000],[12637,65020],[12637,65023]],"origin":"EGP","announcements":[{"next_hop":"2001:7f8:b:100:1d1:a5d1:2637:86,fe80::ee38:73ff:fe71:4427","prefixes":["2a03:eec0:3212::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007B02000000644001010140021202040000315D00000B620000051300005858C008180B6201A40B6203E90B6207D00B620BB8315DFDFC315DFDFF900E002C00020120200107F8000B010001D1A5D126370086FE80000000000000EE3873FFFE71442700302A03EEC03212"}} +{"type":"ris_message","data":{"timestamp":1753639757.560,"peer":"2001:7f8:b:100:1d1:a5d1:2637:86","peer_asn":"12637","id":"2001:7f8:b:100:1d1:a5d1:2637:86-01984d1326f80004","host":"rrc10.ripe.net","type":"UPDATE","path":[12637,1299,20473,210564],"community":[[1299,30000],[12637,65020],[12637,65021]],"origin":"EGP","announcements":[{"next_hop":"2001:7f8:b:100:1d1:a5d1:2637:86,fe80::ee38:73ff:fe71:4427","prefixes":["2001:67c:20fc::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006F02000000584001010140021202040000315D0000051300004FF900033684C0080C05137530315DFDFC315DFDFD900E002C00020120200107F8000B010001D1A5D126370086FE80000000000000EE3873FFFE71442700302001067C20FC"}} +{"type":"ris_message","data":{"timestamp":1753639757.560,"peer":"2001:7f8:b:100:1d1:a5d1:2637:86","peer_asn":"12637","id":"2001:7f8:b:100:1d1:a5d1:2637:86-01984d1326f80007","host":"rrc10.ripe.net","type":"UPDATE","path":[12637,174,1299,22616],"community":[[174,21100],[174,22009],[12637,65020],[12637,65022]],"origin":"EGP","announcements":[{"next_hop":"2001:7f8:b:100:1d1:a5d1:2637:86,fe80::ee38:73ff:fe71:4427","prefixes":["2a03:eec0:3212::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0073020000005C4001010140021202040000315D000000AE0000051300005858C0081000AE526C00AE55F9315DFDFC315DFDFE900E002C00020120200107F8000B010001D1A5D126370086FE80000000000000EE3873FFFE71442700302A03EEC03212"}} +{"type":"ris_message","data":{"timestamp":1753639757.560,"peer":"2001:7f8:b:100:1d1:a5d1:2637:86","peer_asn":"12637","id":"2001:7f8:b:100:1d1:a5d1:2637:86-01984d1326f8000a","host":"rrc10.ripe.net","type":"UPDATE","path":[12637,2914,6453,64289,52025],"community":[[2914,420],[2914,1404],[2914,2405],[2914,3400],[12637,65020],[12637,65023]],"origin":"EGP","announcements":[{"next_hop":"2001:7f8:b:100:1d1:a5d1:2637:86,fe80::ee38:73ff:fe71:4427","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007F02000000684001010140021602050000315D00000B62000019350000FB210000CB39C008180B6201A40B62057C0B6209650B620D48315DFDFC315DFDFF900E002C00020120200107F8000B010001D1A5D126370086FE80000000000000EE3873FFFE71442700302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:b:100:1d1:a5d1:2637:86","peer_asn":"12637","id":"2001:7f8:b:100:1d1:a5d1:2637:86-01984d132ae00001","host":"rrc10.ripe.net","type":"UPDATE","path":[12637,2914,397805],"community":[[2914,410],[2914,1001],[2914,2000],[2914,3000],[12637,65020],[12637,65023]],"origin":"EGP","announcements":[{"next_hop":"2001:7f8:b:100:1d1:a5d1:2637:86,fe80::ee38:73ff:fe71:4427","prefixes":["2606:6e00:a000::/35"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0076020000005F4001010140020E02030000315D00000B62000611EDC008180B62019A0B6203E90B6207D00B620BB8315DFDFC315DFDFF900E002B00020120200107F8000B010001D1A5D126370086FE80000000000000EE3873FFFE714427002326066E00A0"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:b:100:1d1:a5d1:2637:86","peer_asn":"12637","id":"2001:7f8:b:100:1d1:a5d1:2637:86-01984d132ae00004","host":"rrc10.ripe.net","type":"UPDATE","path":[12637,2914,6453,4755,45820,58419],"community":[[2914,420],[2914,1212],[2914,2212],[2914,3200],[12637,65020],[12637,65023]],"origin":"EGP","announcements":[{"next_hop":"2001:7f8:b:100:1d1:a5d1:2637:86,fe80::ee38:73ff:fe71:4427","prefixes":["2620:131:3008::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0083020000006C4001010140021A02060000315D00000B6200001935000012930000B2FC0000E433C008180B6201A40B6204BC0B6208A40B620C80315DFDFC315DFDFF900E002C00020120200107F8000B010001D1A5D126370086FE80000000000000EE3873FFFE7144270030262001313008"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:b:100:1d1:a5d1:2637:86","peer_asn":"12637","id":"2001:7f8:b:100:1d1:a5d1:2637:86-01984d132ae00007","host":"rrc10.ripe.net","type":"UPDATE","path":[12637,2914,6453,64289,52025],"community":[[2914,420],[2914,1404],[2914,2405],[2914,3400],[12637,65020],[12637,65023]],"origin":"EGP","announcements":[{"next_hop":"2001:7f8:b:100:1d1:a5d1:2637:86,fe80::ee38:73ff:fe71:4427","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007F02000000684001010140021602050000315D00000B62000019350000FB210000CB39C008180B6201A40B62057C0B6209650B620D48315DFDFC315DFDFF900E002C00020120200107F8000B010001D1A5D126370086FE80000000000000EE3873FFFE71442700302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:30:0:2:1:0:6939","peer_asn":"6939","id":"2001:7f8:30:0:2:1:0:6939-01984d132ae00000","host":"rrc05.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2605:9cc0:c0d:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0024020000000D800F0A0002013026059CC00C0D"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"198.32.176.20","peer_asn":"6939","id":"198.32.176.20-01984d132aea0002","host":"rrc14.ripe.net","type":"UPDATE","path":[6939,12389,8369],"community":[],"origin":"IGP","med":0,"announcements":[{"next_hop":"198.32.176.20","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003E02000000234001010040020E020300001B1B00003065000020B1400304C620B0148004040000000018C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:504:d::46","peer_asn":"6762","id":"2001:504:d::46-01984d132aea0005","host":"rrc14.ripe.net","type":"UPDATE","path":[6762,6939,8676,200707],"community":[[6762,31],[6762,10180]],"origin":"IGP","med":100,"announcements":[{"next_hop":"2001:504:d::46,fe80::223:9cff:fe54:2e1f","prefixes":["2a00:8000::/32"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0070020000005940010100400212020400001A6A00001B1B000021E40003100380040400000064C008081A6A001F1A6A27C4900E002A0002012020010504000D00000000000000000046FE8000000000000002239CFFFE542E1F00202A008000"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:504:d::46","peer_asn":"6762","id":"2001:504:d::46-01984d132aea0008","host":"rrc14.ripe.net","type":"UPDATE","path":[6762,3356,207995],"community":[[6762,31],[6762,10180]],"origin":"IGP","med":100,"announcements":[{"next_hop":"2001:504:d::46,fe80::223:9cff:fe54:2e1f","prefixes":["2a10:340::/30"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006C02000000554001010040020E020300001A6A00000D1C00032C7B80040400000064C008081A6A001F1A6A27C4900E002A0002012020010504000D00000000000000000046FE8000000000000002239CFFFE542E1F001E2A100340"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"198.32.176.70","peer_asn":"6762","id":"198.32.176.70-01984d132ed20002","host":"rrc14.ripe.net","type":"UPDATE","path":[6762,12956,52863,52863,52863,262880],"community":[[6762,32],[6762,15500]],"origin":"IGP","med":100,"announcements":[{"next_hop":"198.32.176.70","prefixes":["177.10.233.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0055020000003A4001010040021A020600001A6A0000329C0000CE7F0000CE7F0000CE7F000402E0400304C620B04680040400000064C008081A6A00201A6A3C8C18B10AE9"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:504:d::46","peer_asn":"6762","id":"2001:504:d::46-01984d132ed20005","host":"rrc14.ripe.net","type":"UPDATE","path":[6762,6939,8676,8356],"community":[[6762,31],[6762,10180]],"origin":"IGP","med":100,"announcements":[{"next_hop":"2001:504:d::46,fe80::223:9cff:fe54:2e1f","prefixes":["2001:768::/32"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0070020000005940010100400212020400001A6A00001B1B000021E4000020A480040400000064C008081A6A001F1A6A27C4900E002A0002012020010504000D00000000000000000046FE8000000000000002239CFFFE542E1F002020010768"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:504:d::46","peer_asn":"6762","id":"2001:504:d::46-01984d132ed20008","host":"rrc14.ripe.net","type":"UPDATE","path":[6762,197898,8676,8356],"community":[[6762,1],[6762,30],[6762,40],[6762,14400]],"origin":"IGP","med":100,"announcements":[{"next_hop":"2001:504:d::46,fe80::223:9cff:fe54:2e1f","prefixes":["2001:768::/32"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0078020000006140010100400212020400001A6A0003050A000021E4000020A480040400000064C008101A6A00011A6A001E1A6A00281A6A3840900E002A0002012020010504000D00000000000000000046FE8000000000000002239CFFFE542E1F002020010768"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:504:d::46","peer_asn":"6762","id":"2001:504:d::46-01984d132ed2000b","host":"rrc14.ripe.net","type":"UPDATE","path":[6762,197898,8676],"community":[[6762,1],[6762,30],[6762,40],[6762,14400]],"origin":"IGP","med":100,"announcements":[{"next_hop":"2001:504:d::46,fe80::223:9cff:fe54:2e1f","prefixes":["2a03:9f00::/32","2001:1420::/30","2001:1420::/32"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007E02000000674001010040020E020300001A6A0003050A000021E480040400000064C008101A6A00011A6A001E1A6A00281A6A3840900E00340002012020010504000D00000000000000000046FE8000000000000002239CFFFE542E1F00202A039F001E200114202020011420"}} +{"type":"ris_message","data":{"timestamp":1753639757.560,"peer":"194.68.123.191","peer_asn":"199524","id":"194.68.123.191-01984d1326f80001","host":"rrc07.ripe.net","type":"UPDATE","path":[199524,1299,2603,2603,2603],"community":[],"origin":"IGP","aggregator":"2603:109.105.96.4","announcements":[{"next_hop":"194.68.123.191","prefixes":["193.10.255.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004A020000002F40010100400216020500030B640000051300000A2B00000A2B00000A2B400304C2447BBFC0070800000A2B6D69600418C10AFF"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:d:ff::191","peer_asn":"199524","id":"2001:7f8:d:ff::191-01984d132ae00002","host":"rrc07.ripe.net","type":"UPDATE","path":[199524,57463,34927,34927,34927,34927,52025],"community":[],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:d:ff::191","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005C02000000454001010240021E020700030B640000E0770000886F0000886F0000886F0000886F0000CB39900E001C00020110200107F8000D00FF000000000000019100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:d:ff::69","peer_asn":"51519","id":"2001:7f8:d:ff::69-01984d132ae00001","host":"rrc07.ripe.net","type":"UPDATE","path":[51519,57463,34927,34927,34927,34927,52025],"community":[[51519,200]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:d:ff::39","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007D02000000664001010240021E02070000C93F0000E0770000886F0000886F0000886F0000886F0000CB39C00804C93F00C8900E001C00020110200107F8000D00FF000000000000003900302602FA7E0017C010080002E077000004D2C0200C0000C93F000000C800001B1B"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"194.68.123.69","peer_asn":"51519","id":"194.68.123.69-01984d132ec80000","host":"rrc07.ripe.net","type":"UPDATE","path":[51519,39351,12389,41691,41691],"community":[[51519,200]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.69","prefixes":["89.221.205.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0055020000003A4001010040021602050000C93F000099B7000030650000A2DB0000A2DB400304C2447B45C00804C93F00C8C0200C0000C93F000000C8000099B71859DDCD"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:d:ff::69","peer_asn":"51519","id":"2001:7f8:d:ff::69-01984d132ec80003","host":"rrc07.ripe.net","type":"UPDATE","path":[51519,39351,52025],"community":[[51519,200]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:d:ff::69","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0062020000004B4001010040020E02030000C93F000099B70000CB39C00804C93F00C8900E001C00020110200107F8000D00FF000000000000006900302602FA7E0017C0200C0000C93F000000C8000099B7"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.69","peer_asn":"51519","id":"194.68.123.69-01984d132ed20001","host":"rrc07.ripe.net","type":"UPDATE","path":[51519,39351,174,262645,263561],"community":[[51519,200]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.69","prefixes":["186.251.12.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0055020000003A4001010040021602050000C93F000099B7000000AE000401F500040589400304C2447B45C00804C93F00C8C0200C0000C93F000000C8000099B716BAFB0C"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.69","peer_asn":"51519","id":"194.68.123.69-01984d132ed20004","host":"rrc07.ripe.net","type":"UPDATE","path":[51519,39351,9304,38623,23673,23673,23673,23673],"community":[[51519,200]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.69","prefixes":["124.248.160.0/19"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006102000000464001010040022202080000C93F000099B700002458000096DF00005C7900005C7900005C7900005C79400304C2447B45C00804C93F00C8C0200C0000C93F000000C8000099B7137CF8A0"}} +{"type":"ris_message","data":{"timestamp":1753639757.580,"peer":"198.32.176.14","peer_asn":"2914","id":"198.32.176.14-01984d13270c0002","host":"rrc14.ripe.net","type":"UPDATE","path":[2914,3257,3257,400282,52863,262880],"community":[[2914,420],[2914,1210],[2914,2210],[2914,3200],[3257,3257]],"origin":"IGP","announcements":[{"next_hop":"198.32.176.14","prefixes":["177.10.233.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005A020000003F4001010040021A020600000B6200000CB900000CB900061B9A0000CE7F000402E0400304C620B00EC008140B6201A40B6204BA0B6208A20B620C800CB90CB918B10AE9"}} +{"type":"ris_message","data":{"timestamp":1753639757.580,"peer":"2001:504:d::6","peer_asn":"2914","id":"2001:504:d::6-01984d13270c0005","host":"rrc14.ripe.net","type":"UPDATE","path":[2914,6453,4755,20473,40138],"community":[[2914,420],[2914,1404],[2914,2405],[2914,3400]],"origin":"IGP","announcements":[{"next_hop":"2001:504:d::6","prefixes":["2402:e580:74ba::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E001C0002011020010504000D0000000000000000000600302402E58074BA40010100400216020500000B62000019350000129300004FF900009CCAC008100B6201A40B62057C0B6209650B620D48"}} +{"type":"ris_message","data":{"timestamp":1753639758.580,"peer":"198.32.176.14","peer_asn":"2914","id":"198.32.176.14-01984d132af40000","host":"rrc14.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["176.116.6.0/24","195.216.179.0/24"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001F02000818B0740618C3D8B30000"}} +{"type":"ris_message","data":{"timestamp":1753639758.580,"peer":"2001:504:d::6","peer_asn":"2914","id":"2001:504:d::6-01984d132af40003","host":"rrc14.ripe.net","type":"UPDATE","path":[2914,32045],"community":[[2914,410],[2914,1005],[2914,2000],[2914,3000]],"origin":"IGP","announcements":[{"next_hop":"2001:504:d::6","prefixes":["2606:6e00:6000::/35"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005A0200000043900E001B0002011020010504000D00000000000000000006002326066E00604001010040020A020200000B6200007D2DC008100B62019A0B6203ED0B6207D00B620BB8"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:d:ff::57","peer_asn":"3399","id":"2001:7f8:d:ff::57-01984d132ae00001","host":"rrc07.ripe.net","type":"UPDATE","path":[3399,174,64289,52025],"community":[[174,21101],[174,22010],[3399,100],[3399,106],[3399,500],[3399,600],[3399,702],[3399,2027]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:d:ff::57,fe80::d248:a100:d786:a458","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0092020000007B40010102400212020400000D47000000AE0000FB210000CB39C0082000AE526D00AE55FA0D4700640D47006A0D4701F40D4702580D4702BE0D4707EBC0200C0000FB2100000BB80000000A900E002C00020120200107F8000D00FF0000000000000057FE80000000000000D248A100D786A45800302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"194.68.123.57","peer_asn":"3399","id":"194.68.123.57-01984d132ae00004","host":"rrc07.ripe.net","type":"UPDATE","path":[3399,5511,45430,4750],"community":[[3399,100],[3399,107],[3399,500],[3399,600],[3399,702],[3399,2027],[5511,600],[5511,602],[5511,999],[5511,5511],[5511,10009],[5511,30241],[5511,30242],[5511,30249],[5511,30250],[5511,40314],[45430,2111]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.57","prefixes":["58.137.31.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0082020000006740010100400212020400000D47000015870000B1760000128E400304C2447B39C008440D4700640D47006B0D4701F40D4702580D4702BE0D4707EB158702581587025A158703E715871587158727191587762115877622158776291587762A15879D7AB176083F183A891F"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:d:ff::57","peer_asn":"3399","id":"2001:7f8:d:ff::57-01984d132ae00007","host":"rrc07.ripe.net","type":"UPDATE","path":[3399,9002,45147,150279,214028,214028,214028],"community":[[3399,200],[3399,209],[3399,504],[3399,600],[3399,711],[3399,2000]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:d:ff::57,fe80::d248:a100:d786:a458","prefixes":["2a0f:85c1:8b9::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008E02000000774001010040021E020700000D470000232A0000B05B00024B070003440C0003440C0003440CC008180D4700C80D4700D10D4701F80D4702580D4702C70D4707D0E0230400001A79900E002C00020120200107F8000D00FF0000000000000057FE80000000000000D248A100D786A45800302A0F85C108B9"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"194.68.123.57","peer_asn":"3399","id":"194.68.123.57-01984d132ae0000a","host":"rrc07.ripe.net","type":"UPDATE","path":[3399,174,262645,263561],"community":[[174,21301],[174,22042],[3399,100],[3399,106],[3399,500],[3399,601],[3399,702],[3399,2027]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.57","prefixes":["186.251.12.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005E020000004340010100400212020400000D47000000AE000401F500040589400304C2447B39C0082000AE533500AE561A0D4700640D47006A0D4701F40D4702590D4702BE0D4707EB16BAFB0C"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"194.68.123.57","peer_asn":"3399","id":"194.68.123.57-01984d132ae0000d","host":"rrc07.ripe.net","type":"UPDATE","path":[3399,12389,8369],"community":[[3399,200],[3399,212],[3399,500],[3399,601],[3399,706],[3399,2017]],"origin":"INCOMPLETE","announcements":[{"next_hop":"194.68.123.57","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005202000000374001010240020E020300000D4700003065000020B1400304C2447B39C008180D4700C80D4700D40D4701F40D4702590D4702C20D4707E118C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:d:ff::57","peer_asn":"3399","id":"2001:7f8:d:ff::57-01984d132ec80001","host":"rrc07.ripe.net","type":"UPDATE","path":[3399,34927,52025],"community":[[3399,200],[3399,219],[3399,504],[3399,600],[3399,711],[3399,2000],[34927,722]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:d:ff::57,fe80::d248:a100:d786:a458","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00C602000000AF4001010240020E020300000D470000886F0000CB39C0081C0D4700C80D4700DB0D4701F80D4702580D4702C70D4707D0886F02D2C020480003258D00000383000000120003258D00000385000000120003258D000003850000003E0003258D00000385000000F50003258D00000385000001760003258D000003850000043B900E002C00020120200107F8000D00FF0000000000000057FE80000000000000D248A100D786A45800302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.57","peer_asn":"3399","id":"194.68.123.57-01984d132ed20002","host":"rrc07.ripe.net","type":"UPDATE","path":[3399,5511,3356,267613,263069],"community":[[3399,100],[3399,107],[3399,500],[3399,600],[3399,702],[3399,2027],[5511,521],[5511,666],[5511,710],[5511,10009],[5511,30428],[5511,30482],[5511,30574],[5511,30575],[5511,40256]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.57","prefixes":["168.0.128.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007E020000006340010100400216020500000D470000158700000D1C0004155D0004039D400304C2447B39C0083C0D4700640D47006B0D4701F40D4702580D4702BE0D4707EB158702091587029A158702C615872719158776DC158777121587776E1587776F15879D4016A80080"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:7f8:d:ff::57","peer_asn":"3399","id":"2001:7f8:d:ff::57-01984d132ed20005","host":"rrc07.ripe.net","type":"UPDATE","path":[3399,33891,64289,52025],"community":[[3399,200],[3399,201],[3399,500],[3399,600],[3399,706],[3399,2017],[33891,33892],[33891,40001],[64289,3000]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:d:ff::57,fe80::d248:a100:d786:a458","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0096020000007F40010102400212020400000D47000084630000FB210000CB39C008240D4700C80D4700C90D4701F40D4702580D4702C20D4707E18463846484639C41FB210BB8C0200C0000FB2100000BB80000000A900E002C00020120200107F8000D00FF0000000000000057FE80000000000000D248A100D786A45800302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:7f8:d:ff::57","peer_asn":"3399","id":"2001:7f8:d:ff::57-01984d132ed20008","host":"rrc07.ripe.net","type":"UPDATE","path":[3399,9002,45147,150279,214028,214028,214028],"community":[[3399,200],[3399,209],[3399,504],[3399,600],[3399,711],[3399,2000]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:d:ff::57,fe80::d248:a100:d786:a458","prefixes":["2a0f:85c1:8b9::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008E02000000774001010040021E020700000D470000232A0000B05B00024B070003440C0003440C0003440CC008180D4700C80D4700D10D4701F80D4702580D4702C70D4707D0E0230400001A79900E002C00020120200107F8000D00FF0000000000000057FE80000000000000D248A100D786A45800302A0F85C108B9"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:b:100:1d1:a5d4:1327:51","peer_asn":"41327","id":"2001:7f8:b:100:1d1:a5d4:1327:51-01984d132ae00001","host":"rrc10.ripe.net","type":"UPDATE","path":[41327,6762,174,53667],"community":[[17152,0],[41327,300],[41327,3000],[41327,4500],[41327,6762],[41327,10001],[41327,13000],[41327,13001]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:b:100:1d1:a5d4:1327:51,fe80::a05:e200:c7fd:6850","prefixes":["2a06:de05:6209::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0083020000006C4001010040021202040000A16F00001A6A000000AE0000D1A3C0082043000000A16F012CA16F0BB8A16F1194A16F1A6AA16F2711A16F32C8A16F32C9900E002C00020120200107F8000B010001D1A5D413270051FE800000000000000A05E200C7FD685000302A06DE056209"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"217.29.67.51","peer_asn":"41327","id":"217.29.67.51-01984d132ec80000","host":"rrc10.ripe.net","type":"KEEPALIVE","raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001304"}} +{"type":"ris_message","data":{"timestamp":1753639758.590,"peer":"86.104.125.81","peer_asn":"31554","id":"86.104.125.81-01984d132afe0002","host":"rrc22.ripe.net","type":"UPDATE","path":[31554,3356,3356,7345,7345,7345,7345,7345,7345,7345],"community":[[39107,31554]],"origin":"IGP","aggregator":"7345:135.109.110.145","announcements":[{"next_hop":"86.104.125.81","prefixes":["135.109.0.0/17"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00710200000056400101005002002A020A00007B4200000D1C00000D1C00001CB100001CB100001CB100001CB100001CB100001CB100001CB140030456687D51C0070800001CB1876D6E91C0080498C37B42C0100800021CB10000EA6011876D00"}} +{"type":"ris_message","data":{"timestamp":1753639758.590,"peer":"86.104.125.81","peer_asn":"31554","id":"86.104.125.81-01984d132afe0005","host":"rrc22.ripe.net","type":"UPDATE","path":[31554,6204,2914,37468,61832,28135],"community":[[39107,31554]],"origin":"IGP","announcements":[{"next_hop":"86.104.125.81","prefixes":["177.46.39.0/24","177.46.36.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00620200000043400101005002001A020600007B420000183C00000B620000925C0000F18800006DE740030456687D51C0080498C37B42C010100002925C000144A90002925C000144AA18B12E2718B12E24"}} +{"type":"ris_message","data":{"timestamp":1753639758.590,"peer":"86.104.125.81","peer_asn":"31554","id":"86.104.125.81-01984d132afe0008","host":"rrc22.ripe.net","type":"UPDATE","path":[31554,6204,2914,9294],"community":[[39107,31554]],"origin":"IGP","announcements":[{"next_hop":"86.104.125.81","prefixes":["38.91.117.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004302000000284001010050020012020400007B420000183C00000B620000244E40030456687D51C0080498C37B4218265B75"}} +{"type":"ris_message","data":{"timestamp":1753639758.590,"peer":"86.104.125.81","peer_asn":"31554","id":"86.104.125.81-01984d132afe000b","host":"rrc22.ripe.net","type":"UPDATE","path":[31554,6204,57363,57363],"community":[[39107,31554]],"origin":"IGP","announcements":[{"next_hop":"86.104.125.81","prefixes":["151.236.111.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004302000000284001010050020012020400007B420000183C0000E0130000E01340030456687D51C0080498C37B421897EC6F"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"86.104.125.81","peer_asn":"31554","id":"86.104.125.81-01984d132b080000","host":"rrc22.ripe.net","type":"UPDATE","path":[31554,6204,2914,13786,28263,265079],"community":[[39107,31554]],"origin":"IGP","announcements":[{"next_hop":"86.104.125.81","prefixes":["170.233.138.0/23","170.233.136.0/23"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004F0200000030400101005002001A020600007B420000183C00000B62000035DA00006E6700040B7740030456687D51C0080498C37B4217AAE98A17AAE988"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"86.104.125.81","peer_asn":"31554","id":"86.104.125.81-01984d132b080003","host":"rrc22.ripe.net","type":"UPDATE","path":[31554,6204,267613,262645,263561],"community":[[39107,31554]],"origin":"IGP","announcements":[{"next_hop":"86.104.125.81","prefixes":["186.251.12.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0047020000002C4001010050020016020500007B420000183C0004155D000401F50004058940030456687D51C0080498C37B4216BAFB0C"}} +{"type":"ris_message","data":{"timestamp":1753639759.590,"peer":"86.104.125.81","peer_asn":"31554","id":"86.104.125.81-01984d132ee60002","host":"rrc22.ripe.net","type":"UPDATE","path":[31554,6204,9318,38684,38684,38684,38684,38684,38684,38684],"community":[[39107,31554]],"origin":"IGP","announcements":[{"next_hop":"86.104.125.81","prefixes":["124.195.190.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005B0200000040400101005002002A020A00007B420000183C000024660000971C0000971C0000971C0000971C0000971C0000971C0000971C40030456687D51C0080498C37B42187CC3BE"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"217.29.67.55","peer_asn":"199524","id":"217.29.67.55-01984d132ae00002","host":"rrc10.ripe.net","type":"UPDATE","path":[199524,6762,2914,63306,63376],"community":[],"origin":"IGP","announcements":[{"next_hop":"217.29.67.55","prefixes":["140.174.37.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003F020000002440010100400216020500030B6400001A6A00000B620000F74A0000F790400304D91D4337188CAE25"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"217.29.66.120","peer_asn":"15605","id":"217.29.66.120-01984d132ec80000","host":"rrc10.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["160.25.225.0/24","160.25.224.0/23","160.25.224.0/24","130.137.85.0/24","176.241.94.0/24","185.54.158.0/24"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF002F02001818A019E117A019E018A019E01882895518B0F15E18B9369E0000"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"217.29.67.55","peer_asn":"199524","id":"217.29.67.55-01984d132ec80003","host":"rrc10.ripe.net","type":"UPDATE","path":[199524,6762,2603],"community":[],"origin":"IGP","aggregator":"2603:109.105.96.23","announcements":[{"next_hop":"217.29.67.55","prefixes":["193.10.255.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004202000000274001010040020E020300030B6400001A6A00000A2B400304D91D4337C0070800000A2B6D69601718C10AFF"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:b:100:1d1:a5d1:5605:120","peer_asn":"15605","id":"2001:7f8:b:100:1d1:a5d1:5605:120-01984d132ec80006","host":"rrc10.ripe.net","type":"UPDATE","path":[15605,12637,1299,174,56410,204210],"community":[[1299,20000],[12637,65020],[12637,65021],[15605,1000],[15605,1099],[15605,2002],[15605,2199],[15605,3199]],"origin":"EGP","announcements":[{"next_hop":"2001:7f8:b:100:1d1:a5d1:5605:120,fe80::217:a3ff:fe00:b5","prefixes":["2a0c:b641:302::/47"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008B0200000074900E002C00020120200107F8000B010001D1A5D156050120FE800000000000000217A3FFFE0000B5002F2A0CB64103024001010140021A020600003CF50000315D00000513000000AE0000DC5A00031DB2C0082005134E20315DFDFC315DFDFD3CF503E83CF5044B3CF507D23CF508973CF50C7F"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"217.29.66.120","peer_asn":"15605","id":"217.29.66.120-01984d132ec80009","host":"rrc10.ripe.net","type":"UPDATE","path":[15605,6762,16509],"community":[[6762,1],[6762,31],[6762,40],[6762,10130],[15605,2003],[15605,2099]],"origin":"IGP","announcements":[{"next_hop":"217.29.66.120","prefixes":["130.137.63.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005202000000374001010040020E020300003CF500001A6A0000407D400304D91D4278C008181A6A00011A6A001F1A6A00281A6A27923CF507D33CF508331882893F"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"217.29.66.120","peer_asn":"15605","id":"217.29.66.120-01984d132ec8000c","host":"rrc10.ripe.net","type":"UPDATE","path":[15605,3356,6453,1031,262535],"community":[[3356,2],[3356,22],[3356,86],[3356,502],[3356,666],[3356,901],[3356,2112],[6453,1000],[6453,1100],[6453,1110],[15605,2000],[15605,2099]],"origin":"IGP","announcements":[{"next_hop":"217.29.66.120","prefixes":["177.84.215.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0072020000005740010100400216020500003CF500000D1C000019350000040700040187400304D91D4278C008300D1C00020D1C00160D1C00560D1C01F60D1C029A0D1C03850D1C0840193503E81935044C193504563CF507D03CF5083318B154D7"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:b:100:1d1:a5d1:5605:120","peer_asn":"15605","id":"2001:7f8:b:100:1d1:a5d1:5605:120-01984d132ec8000f","host":"rrc10.ripe.net","type":"UPDATE","path":[15605,41327,174,53667,202256],"community":[[15605,2001],[15605,2099],[17152,0],[41327,500],[41327,3000],[41327,4400],[41327,10001],[41327,11000],[41327,11002]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:b:100:1d1:a5d1:5605:120,fe80::217:a3ff:fe00:b5","prefixes":["2a06:de02:6f3::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008B0200000074900E002C00020120200107F8000B010001D1A5D156050120FE800000000000000217A3FFFE0000B500302A06DE0206F340010100400216020500003CF50000A16F000000AE0000D1A300031610C008243CF507D13CF5083343000000A16F01F4A16F0BB8A16F1130A16F2711A16F2AF8A16F2AFA"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"217.29.66.120","peer_asn":"15605","id":"217.29.66.120-01984d132ec80012","host":"rrc10.ripe.net","type":"UPDATE","path":[15605,6762,7568,4750],"community":[[6762,1],[6762,33],[6762,40],[6762,16500],[15605,2003],[15605,2099]],"origin":"IGP","announcements":[{"next_hop":"217.29.66.120","prefixes":["58.137.31.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0056020000003B40010100400212020400003CF500001A6A00001D900000128E400304D91D4278C008181A6A00011A6A00211A6A00281A6A40743CF507D33CF50833183A891F"}} +{"type":"ris_message","data":{"timestamp":1753639757.500,"peer":"80.249.211.237","peer_asn":"199938","id":"80.249.211.237-01984d1326bc001a","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,1299,21859,200315,208006],"community":[[1299,35000]],"origin":"IGP","announcements":[{"next_hop":"80.249.211.237","prefixes":["185.215.234.0/24","185.215.235.0/24","185.215.232.0/24","185.215.233.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008802000000614001010050020016020500030D02000005130000556300030E7B00032C8640030450F9D3EDD0080004051388B8D020003000030D02000000280000000100030D02000000290000000100030D02000000300000000100030D02000000310000000218B9D7EA18B9D7EB18B9D7E818B9D7E9"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c60002","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,830],[34927,863]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F033E886F035F"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d1326c60005","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,1299,174,64289,52025],"community":[[1299,25000]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0091020000007A4001010050020016020500030D0200000513000000AE0000FB210000CB39D0080004051361A8D020003000030D02000000280000000100030D02000000290000000100030D02000000300000000100030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1::a500:3214:1","peer_asn":"3214","id":"2001:7f8:1::a500:3214:1-01984d1326c60008","host":"rrc03.ripe.net","type":"UPDATE","path":[3214,52025],"community":[[3214,100],[3214,4911]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:3214:1,fe80::2a8a:1c07:d8c5:52c4","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0063020000004C4001010240020A020200000C8E0000CB39C008080C8E00640C8E132F900E002C00020120200107F8000100000000A50032140001FE800000000000002A8A1C07D8C552C400302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1::a500:6461:1","peer_asn":"6461","id":"2001:7f8:1::a500:6461:1-01984d1326c6000b","host":"rrc03.ripe.net","type":"UPDATE","path":[6461,1764,5404,62149],"community":[[6461,5997]],"origin":"IGP","med":127,"aggregator":"62149:185.69.239.254","announcements":[{"next_hop":"2001:7f8:1::a500:6461:1,fe80::21f:12ff:febe:726a","prefixes":["2a03:3160::/32"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A02000000634001010040021202040000193D000006E40000151C0000F2C58004040000007F400600C007080000F2C5B945EFFEC00804193D176D900E002A00020120200107F8000100000000A50064610001FE80000000000000021F12FFFEBE726A00202A033160"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d1326c6000e","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,1299,174,64289,52025],"community":[[1299,25000]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0091020000007A4001010050020016020500030D0200000513000000AE0000FB210000CB39D0080004051361A8D020003000030D02000000280000000100030D02000000290000000100030D02000000300000000100030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d1326c60011","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,37468,22381,28209],"community":[[22381,8],[64645,53000],[64645,53001],[37468,13100],[37468,3374],[37468,13102],[24115,24115],[63034,63034],[37468,37468],[37468,30065],[37468,3000],[37468,13000],[37468,3300],[37468,3310],[64645,53230],[37468,3312],[22381,65533],[22381,65534]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2804:1070:1::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF010D02000000F64001010050020012020400030D020000925C0000576D00006E31D0080048576D0008FC85CF08FC85CF09925C332C925C0D2E925C332E5E335E33F63AF63A925C925C925C7571925C0BB8925C32C8925C0CE4925C0CEEFC85CFEE925C0CF0576DFFFD576DFFFED01000080002FC850000CF08F020006000001A27000007770000005900001A27000007780000000000001A27000007790000011400001A270000077A0000009600030D02000000280000000100030D02000000290000000200030D020000002A0000000100030D020000003100000003900E001C00020110200107F800010000A5000019993800010030280410700001"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d1326c60014","host":"rrc03.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2a03:eec0:3212:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A000201302A03EEC03212"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d1326c60017","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,34927,34927,52025],"community":[[34927,722]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1::a503:4927:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0094020000007D4001010050020012020400030D020000886F0000886F0000CB39D0080004886F02D2D020003000030D02000000280000000200030D02000000290000000500030D020000002A0000000500030D020000003100000003C0230400001A79900E001C00020110200107F8000100000000A5034927000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c6001a","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,5405,52025],"community":[[34927,110],[34927,180]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006B0200000054900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002120204000332F20000886F0000151D0000CB39C00808886F006E886F00B4"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d1326c6001d","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,1299,174,64289,52025],"community":[[1299,25000]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0091020000007A4001010050020016020500030D0200000513000000AE0000FB210000CB39D0080004051361A8D020003000030D02000000280000000100030D02000000290000000100030D02000000300000000100030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c60020","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,174,64289,52025],"community":[[34927,110],[34927,147]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007E0200000067900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002160205000332F20000886F000000AE0000FB210000CB39C00808886F006E886F0093C0200C0000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d1326c60023","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,201709,5405,52025],"community":[[5405,3],[65000,65031],[5405,15],[0,13335],[0,6939],[65000,65101],[65534,49002],[0,57463],[65000,50041],[65000,65151],[65534,48004],[5405,4001],[5405,3001],[5405,213]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00CD02000000B64001010050020012020400030D02000313ED0000151D0000CB39D0080038151D0003FDE8FE07151D000F0000341700001B1BFDE8FE4DFFFEBF6A0000E077FDE8C379FDE8FE7FFFFEBB84151D0FA1151D0BB9151D00D5D020003C00030D02000000280000000100030D02000000290000000100030D02000000300000000200030D02000000300000000400030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c60026","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009C0200000085900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3E010100002FC000000000B0002FC0000000015E020180000B98A0000FC000000000B0000B98A0000FC0000000015E023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d1326c60029","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,34927,34927,52025],"community":[[34927,722]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1::a503:4927:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0094020000007D4001010050020012020400030D020000886F0000886F0000CB39D0080004886F02D2D020003000030D02000000280000000200030D02000000290000000500030D020000002A0000000500030D020000003100000003C0230400001A79900E001C00020110200107F8000100000000A5034927000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c6002c","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009C0200000085900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3E010100002FC000000000B0002FC0000000015E020180000B98A0000FC000000000B0000B98A0000FC0000000015E023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d1326c6002f","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,37468,22381,28209],"community":[[22381,8],[64645,53000],[64645,53001],[37468,13100],[37468,3374],[37468,13102],[24115,24115],[63034,63034],[37468,37468],[37468,30065],[28209,423],[37468,3000],[37468,13000],[37468,3300],[37468,3310],[64645,53230],[37468,3312],[22381,65533],[22381,65534]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2804:1070:1::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF011102000000FA4001010050020012020400030D020000925C0000576D00006E31D008004C576D0008FC85CF08FC85CF09925C332C925C0D2E925C332E5E335E33F63AF63A925C925C925C75716E3101A7925C0BB8925C32C8925C0CE4925C0CEEFC85CFEE925C0CF0576DFFFD576DFFFED01000080002FC850000CF08F020006000001A27000007770000005900001A27000007780000000000001A27000007790000011400001A270000077A0000009600030D02000000280000000100030D02000000290000000200030D020000002A0000000100030D020000003100000003900E001C00020110200107F800010000A5000019993800010030280410700001"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c60032","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,730]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00B2020000009B900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F02DAC020480003258D00000383000000120003258D00000385000000120003258D000003850000003E0003258D00000385000000F50003258D00000385000001760003258D000003850000043B"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c60035","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,5405,52025],"community":[[34927,110],[34927,180]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006B0200000054900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002120204000332F20000886F0000151D0000CB39C00808886F006E886F00B4"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c60038","host":"rrc03.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2602:fa7e:17:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A000201302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c6003b","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,174,64289,52025],"community":[[34927,110],[34927,147]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007E0200000067900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002160205000332F20000886F000000AE0000FB210000CB39C00808886F006E886F0093C0200C0000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c6003e","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c60041","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,174,64289,52025],"community":[[34927,110],[34927,147]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007E0200000067900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002160205000332F20000886F000000AE0000FB210000CB39C00808886F006E886F0093C0200C0000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c60044","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c60047","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009C0200000085900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3E010100002FC000000000B0002FC0000000015E020180000B98A0000FC000000000B0000B98A0000FC0000000015E023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c6004a","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,835,400587,52025],"community":[[34927,130],[34927,730]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00DE02000000C7900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002160205000332F20000886F0000034300061CCB0000CB39C00808886F0082886F02DAC0206C0003258D00000383000000120003258D00000385000000120003258D000003850000003E0003258D00000385000000F50003258D00000385000001760003258D000003850000043B00061CCB000000010000001200061CCB000000020000CB3900061CCB0000000300000002"}} +{"type":"ris_message","data":{"timestamp":1753639757.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326c6004d","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3"}} +{"type":"ris_message","data":{"timestamp":1753639757.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326d00000","host":"rrc03.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2602:fa7e:17:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A000201302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326d00003","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,174,64289,52025],"community":[[34927,110],[34927,147]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007E0200000067900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002160205000332F20000886F000000AE0000FB210000CB39C00808886F006E886F0093C0200C0000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639757.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326d00006","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009C0200000085900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3E010100002FC000000000B0002FC0000000015E020180000B98A0000FC000000000B0000B98A0000FC0000000015E023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639757.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326d00009","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,830],[34927,863]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F033E886F035F"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:d:ff::157","peer_asn":"9002","id":"2001:7f8:d:ff::157-01984d132ae00001","host":"rrc07.ripe.net","type":"UPDATE","path":[9002,3356,1299,20473,210564],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:d:ff::157,fe80::76e7:9800:d726:6422","prefixes":["2001:67c:20fc::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0064020000004D4001010040021602050000232A00000D1C0000051300004FF900033684900E002C00020120200107F8000D00FF0000000000000157FE8000000000000076E79800D726642200302001067C20FC"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.157","peer_asn":"9002","id":"194.68.123.157-01984d132ed20000","host":"rrc07.ripe.net","type":"UPDATE","path":[9002,200019],"community":[],"origin":"IGP","announcements":[{"next_hop":"194.68.123.157","prefixes":["176.123.2.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003302000000184001010040020A02020000232A00030D53400304C2447B9D18B07B02"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:7f8:d:ff::157","peer_asn":"9002","id":"2001:7f8:d:ff::157-01984d132ed20003","host":"rrc07.ripe.net","type":"UPDATE","path":[9002,6762,64289,52025],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:d:ff::157,fe80::76e7:9800:d726:6422","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006002000000494001010040021202040000232A00001A6A0000FB210000CB39900E002C00020120200107F8000D00FF0000000000000157FE8000000000000076E79800D726642200302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.157","peer_asn":"9002","id":"194.68.123.157-01984d132ed20006","host":"rrc07.ripe.net","type":"UPDATE","path":[9002,1273,12389,8369],"community":[],"origin":"IGP","announcements":[{"next_hop":"194.68.123.157","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003B02000000204001010040021202040000232A000004F900003065000020B1400304C2447B9D18C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.157","peer_asn":"9002","id":"194.68.123.157-01984d132ed20009","host":"rrc07.ripe.net","type":"UPDATE","path":[9002,3356,30844,36965,327730,327730,327730,327730],"community":[],"origin":"IGP","announcements":[{"next_hop":"194.68.123.157","prefixes":["196.11.255.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004B02000000304001010040022202080000232A00000D1C0000787C0000906500050032000500320005003200050032400304C2447B9D18C40BFF"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.157","peer_asn":"9002","id":"194.68.123.157-01984d132ed2000c","host":"rrc07.ripe.net","type":"UPDATE","path":[9002,3356,2914,63306,63376],"community":[],"origin":"IGP","announcements":[{"next_hop":"194.68.123.157","prefixes":["140.174.37.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003F02000000244001010040021602050000232A00000D1C00000B620000F74A0000F790400304C2447B9D188CAE25"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.157","peer_asn":"9002","id":"194.68.123.157-01984d132ed2000f","host":"rrc07.ripe.net","type":"UPDATE","path":[9002,3356,7195,52361,271796,271796,271796,271796],"community":[],"origin":"IGP","announcements":[{"next_hop":"194.68.123.157","prefixes":["179.51.204.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004B02000000304001010040022202080000232A00000D1C00001C1B0000CC89000425B4000425B4000425B4000425B4400304C2447B9D18B333CC"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.157","peer_asn":"9002","id":"194.68.123.157-01984d132ed20012","host":"rrc07.ripe.net","type":"UPDATE","path":[9002,3356,268108],"community":[],"origin":"IGP","announcements":[{"next_hop":"194.68.123.157","prefixes":["45.169.124.0/23","45.169.126.0/23","45.169.124.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003F020000001C4001010040020E02030000232A00000D1C0004174C400304C2447B9D172DA97C172DA97E162DA97C"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.157","peer_asn":"9002","id":"194.68.123.157-01984d132ed20015","host":"rrc07.ripe.net","type":"UPDATE","path":[9002,6453,400282,400282,400282,400282,52863,262880],"community":[],"origin":"IGP","announcements":[{"next_hop":"194.68.123.157","prefixes":["177.10.233.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004B02000000304001010040022202080000232A0000193500061B9A00061B9A00061B9A00061B9A0000CE7F000402E0400304C2447B9D18B10AE9"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.226","peer_asn":"24482","id":"194.68.123.226-01984d132ed2000a","host":"rrc07.ripe.net","type":"UPDATE","path":[24482,2914,3356,3356,3356,3356,52468,28370,28370,28370,28657],"community":[[2914,420],[2914,1206],[2914,2203],[2914,3200],[24482,1],[24482,100],[24482,12000],[24482,12010],[24482,12012],[24482,20200],[24482,20204],[24482,64602]],"origin":"IGP","med":6220,"announcements":[{"next_hop":"194.68.123.226","prefixes":["138.99.97.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009C02000000814001010040022E020B00005FA200000B6200000D1C00000D1C00000D1C00000D1C0000CCF400006ED200006ED200006ED200006FF1400304C2447BE28004040000184CC008300B6201A40B6204B60B62089B0B620C805FA200015FA200645FA22EE05FA22EEA5FA22EEC5FA24EE85FA24EEC5FA2FC5AC0100800025FA200000136188A6361"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.226","peer_asn":"24482","id":"194.68.123.226-01984d132ed2000d","host":"rrc07.ripe.net","type":"UPDATE","path":[24482,6453,3356,9002,214294],"community":[[6453,86],[6453,2000],[6453,2100],[6453,2101],[24482,1],[24482,100],[24482,11000],[24482,11030],[24482,11031],[24482,20200],[24482,20201],[24482,64601]],"origin":"IGP","med":234122,"announcements":[{"next_hop":"194.68.123.226","prefixes":["176.116.6.0/24","195.216.179.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0088020000006940010100400216020500005FA20000193500000D1C0000232A00034516400304C2447BE28004040003928AC0083019350056193507D019350834193508355FA200015FA200645FA22AF85FA22B165FA22B175FA24EE85FA24EE95FA2FC59C0100800025FA20000013618B0740618C3D8B3"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.226","peer_asn":"24482","id":"194.68.123.226-01984d132ed20010","host":"rrc07.ripe.net","type":"UPDATE","path":[24482,2914,3356,3356,3356,3356,52468,28370,28370,28370,28657],"community":[[2914,420],[2914,1206],[2914,2203],[2914,3200],[24482,1],[24482,100],[24482,12000],[24482,12030],[24482,12032],[24482,20200],[24482,20204],[24482,64602]],"origin":"IGP","med":120,"announcements":[{"next_hop":"194.68.123.226","prefixes":["138.99.97.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009C02000000814001010040022E020B00005FA200000B6200000D1C00000D1C00000D1C00000D1C0000CCF400006ED200006ED200006ED200006FF1400304C2447BE280040400000078C008300B6201A40B6204B60B62089B0B620C805FA200015FA200645FA22EE05FA22EFE5FA22F005FA24EE85FA24EEC5FA2FC5AC0100800025FA200000136188A6361"}} +{"type":"ris_message","data":{"timestamp":1753639757.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326d0000d","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,835,400587,52025],"community":[[34927,130],[34927,730]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00DE02000000C7900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002160205000332F20000886F0000034300061CCB0000CB39C00808886F0082886F02DAC0206C0003258D00000383000000120003258D00000385000000120003258D000003850000003E0003258D00000385000000F50003258D00000385000001760003258D000003850000043B00061CCB000000010000001200061CCB000000020000CB3900061CCB0000000300000002"}} +{"type":"ris_message","data":{"timestamp":1753639757.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326d00010","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,28458],"community":[[34927,130],[34927,1301]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2806:202::/32"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00980200000081900E002A00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A0020280602024001010240020E0203000332F20000886F00006F2AE00808886F0082886F0515E0203000001A2700000777000000D000001A27000007780000000800001A27000007790000034800001A270000077A00000013"}} +{"type":"ris_message","data":{"timestamp":1753639757.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d1326d00013","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3"}} +{"type":"ris_message","data":{"timestamp":1753639758.500,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aa40001","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,730]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00B2020000009B900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F02DAC020480003258D00000383000000120003258D00000385000000120003258D000003850000003E0003258D00000385000000F50003258D00000385000001760003258D000003850000043B"}} +{"type":"ris_message","data":{"timestamp":1753639758.500,"peer":"80.249.211.237","peer_asn":"199938","id":"80.249.211.237-01984d132aa40004","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,58010,200315,208006],"community":[],"origin":"IGP","announcements":[{"next_hop":"80.249.211.237","prefixes":["185.215.234.0/24","185.215.235.0/24","185.215.232.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A802000000854001010050020012020400030D020000E29A00030E7B00032C8640030450F9D3EDF020006000001A2700000777000000BE00001A27000007780000000000001A27000007790000011400001A270000077A0000009600030D02000000280000000100030D02000000290000000200030D020000002A0000000100030D02000000310000000318B9D7EA18B9D7EB18B9D7E8"}} +{"type":"ris_message","data":{"timestamp":1753639758.500,"peer":"80.249.208.122","peer_asn":"6461","id":"80.249.208.122-01984d132aa40007","host":"rrc03.ripe.net","type":"UPDATE","path":[6461,3257,3257,400282,52863,262880],"community":[[6461,5997]],"origin":"IGP","med":735,"announcements":[{"next_hop":"80.249.208.122","prefixes":["177.10.233.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005102000000364001010040021A02060000193D00000CB900000CB900061B9A0000CE7F000402E040030450F9D07A800404000002DFC00804193D176D18B10AE9"}} +{"type":"ris_message","data":{"timestamp":1753639758.500,"peer":"80.249.209.255","peer_asn":"3214","id":"80.249.209.255-01984d132aa4000a","host":"rrc03.ripe.net","type":"UPDATE","path":[3214,2603],"community":[[3214,100],[3214,4501]],"origin":"IGP","aggregator":"2603:109.105.96.23","announcements":[{"next_hop":"80.249.209.255","prefixes":["193.10.255.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0049020000002E4001010040020A020200000C8E00000A2B40030450F9D1FFC0070800000A2B6D696017C008080C8E00640C8E119518C10AFF"}} +{"type":"ris_message","data":{"timestamp":1753639758.500,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aa4000d","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,34927,34927,52025],"community":[[34927,722]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1::a503:4927:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0094020000007D4001010050020012020400030D020000886F0000886F0000CB39D0080004886F02D2D020003000030D02000000280000000200030D02000000290000000500030D020000002A0000000500030D020000003100000003C0230400001A79900E001C00020110200107F8000100000000A5034927000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.500,"peer":"80.249.209.255","peer_asn":"3214","id":"80.249.209.255-01984d132aa40010","host":"rrc03.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["58.137.31.0/24"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001B020004183A891F0000"}} +{"type":"ris_message","data":{"timestamp":1753639758.500,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aa40013","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,1299,174,64289,52025],"community":[[1299,25000]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0091020000007A4001010050020016020500030D0200000513000000AE0000FB210000CB39D0080004051361A8D020003000030D02000000280000000100030D02000000290000000100030D02000000300000000100030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"80.249.209.255","peer_asn":"3214","id":"80.249.209.255-01984d132aae0002","host":"rrc03.ripe.net","type":"UPDATE","path":[3214,267613,262645,263561],"community":[[3214,120],[3214,4001]],"origin":"IGP","announcements":[{"next_hop":"80.249.209.255","prefixes":["186.251.12.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0046020000002B40010100400212020400000C8E0004155D000401F50004058940030450F9D1FFC008080C8E00780C8E0FA116BAFB0C"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aae0005","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,34927,34927,52025],"community":[[34927,722]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1::a503:4927:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0094020000007D4001010050020012020400030D020000886F0000886F0000CB39D0080004886F02D2D020003000030D02000000280000000200030D02000000290000000500030D020000002A0000000500030D020000003100000003C0230400001A79900E001C00020110200107F8000100000000A5034927000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"80.249.209.255","peer_asn":"3214","id":"80.249.209.255-01984d132aae0008","host":"rrc03.ripe.net","type":"UPDATE","path":[3214,24482,45430,4750],"community":[[3214,100],[3214,4901]],"origin":"IGP","announcements":[{"next_hop":"80.249.209.255","prefixes":["58.137.31.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0046020000002B40010100400212020400000C8E00005FA20000B1760000128E40030450F9D1FFC008080C8E00640C8E1325183A891F"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aae000b","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,1299,174,64289,52025],"community":[[1299,25000]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0091020000007A4001010050020016020500030D0200000513000000AE0000FB210000CB39D0080004051361A8D020003000030D02000000280000000100030D02000000290000000100030D02000000300000000100030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1::a500:3214:1","peer_asn":"3214","id":"2001:7f8:1::a500:3214:1-01984d132aae000e","host":"rrc03.ripe.net","type":"UPDATE","path":[3214,6939,3356,33891,64289,52025],"community":[[3214,100],[3214,600],[3214,4911]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1::a500:3214:1,fe80::2a8a:1c07:d8c5:52c4","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007702000000604001010040021A020600000C8E00001B1B00000D1C000084630000FB210000CB39C0080C0C8E00640C8E02580C8E132F900E002C00020120200107F8000100000000A50032140001FE800000000000002A8A1C07D8C552C400302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae0011","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"80.249.211.237","peer_asn":"199938","id":"80.249.211.237-01984d132aae0014","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,201709,8881,2603],"community":[[65534,49002],[65534,48003]],"origin":"IGP","aggregator":"2603:109.105.96.23","announcements":[{"next_hop":"80.249.211.237","prefixes":["193.10.255.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009402000000794001010050020012020400030D02000313ED000022B100000A2B40030450F9D3EDD0080008FFFEBF6AFFFEBB83D020003C00030D02000000280000000100030D02000000290000000100030D02000000300000000200030D02000000300000000300030D020000003100000002D007000800000A2B6D69601718C10AFF"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"80.249.209.255","peer_asn":"3214","id":"80.249.209.255-01984d132aae0017","host":"rrc03.ripe.net","type":"UPDATE","path":[3214,7195,55211],"community":[[3214,100],[3214,4401]],"origin":"IGP","announcements":[{"next_hop":"80.249.209.255","prefixes":["76.72.161.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0049020000002E4001010040020E020300000C8E00001C1B0000D7AB40030450F9D1FFC008080C8E00640C8E1131E023040000220A184C48A1"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aae001a","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,1299,174,64289,52025],"community":[[1299,25000]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0091020000007A4001010050020016020500030D0200000513000000AE0000FB210000CB39D0080004051361A8D020003000030D02000000280000000100030D02000000290000000100030D02000000300000000100030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1::a500:3214:1","peer_asn":"3214","id":"2001:7f8:1::a500:3214:1-01984d132aae001d","host":"rrc03.ripe.net","type":"UPDATE","path":[3214,52025],"community":[[3214,100],[3214,4911]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:3214:1,fe80::2a8a:1c07:d8c5:52c4","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0063020000004C4001010240020A020200000C8E0000CB39C008080C8E00640C8E132F900E002C00020120200107F8000100000000A50032140001FE800000000000002A8A1C07D8C552C400302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae0020","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009C0200000085900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3E010100002FC000000000B0002FC0000000015E020180000B98A0000FC000000000B0000B98A0000FC0000000015E023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aae0023","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,34927,34927,52025],"community":[[34927,722]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1::a503:4927:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0094020000007D4001010050020012020400030D020000886F0000886F0000CB39D0080004886F02D2D020003000030D02000000280000000200030D02000000290000000500030D020000002A0000000500030D020000003100000003C0230400001A79900E001C00020110200107F8000100000000A5034927000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aae0026","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,1299,174,64289,52025],"community":[[1299,25000]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0091020000007A4001010050020016020500030D0200000513000000AE0000FB210000CB39D0080004051361A8D020003000030D02000000280000000100030D02000000290000000100030D02000000300000000100030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aae0029","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,201709,5405,52025],"community":[[5405,3],[65000,65031],[5405,15],[0,13335],[0,6939],[65000,65101],[65534,49002],[0,57463],[65000,50041],[65000,65151],[65534,48004],[5405,4001],[5405,3001],[5405,213]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00CD02000000B64001010050020012020400030D02000313ED0000151D0000CB39D0080038151D0003FDE8FE07151D000F0000341700001B1BFDE8FE4DFFFEBF6A0000E077FDE8C379FDE8FE7FFFFEBB84151D0FA1151D0BB9151D00D5D020003C00030D02000000280000000100030D02000000290000000100030D02000000300000000200030D02000000300000000400030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aae002c","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,34927,34927,52025],"community":[[34927,722]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1::a503:4927:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0094020000007D4001010050020012020400030D020000886F0000886F0000CB39D0080004886F02D2D020003000030D02000000280000000200030D02000000290000000500030D020000002A0000000500030D020000003100000003C0230400001A79900E001C00020110200107F8000100000000A5034927000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aae002f","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,1299,174,64289,52025],"community":[[1299,25000]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0091020000007A4001010050020016020500030D0200000513000000AE0000FB210000CB39D0080004051361A8D020003000030D02000000280000000100030D02000000290000000100030D02000000300000000100030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae0032","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,400587,52025],"community":[[34927,130],[34927,730]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00DA02000000C3900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002120204000332F20000886F00061CCB0000CB39E00808886F0082886F02DAC0206C0003258D00000383000000120003258D00000385000000120003258D000003850000003E0003258D00000385000000F50003258D00000385000001760003258D000003850000043B00061CCB000000010000001200061CCB000000020000CB3900061CCB0000000300000002"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aae0035","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,1299,174,64289,52025],"community":[[1299,25000]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0091020000007A4001010050020016020500030D0200000513000000AE0000FB210000CB39D0080004051361A8D020003000030D02000000280000000100030D02000000290000000100030D02000000300000000100030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae0038","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,34549,5511,1299,22616],"community":[[34927,110],[34927,111]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2a03:eec0:3212::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0073020000005C900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302A03EEC032124001010040021A0206000332F20000886F000086F5000015870000051300005858C00808886F006E886F006F"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aae003b","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,1299,174,64289,52025],"community":[[1299,25000]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0091020000007A4001010050020016020500030D0200000513000000AE0000FB210000CB39D0080004051361A8D020003000030D02000000280000000100030D02000000290000000100030D02000000300000000100030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae003e","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aae0041","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,201709,5405,52025],"community":[[5405,3],[65000,65031],[5405,15],[0,13335],[0,6939],[65000,65101],[65534,49002],[0,57463],[65000,50041],[65000,65151],[65534,48004],[5405,4001],[5405,3001],[5405,213]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00CD02000000B64001010050020012020400030D02000313ED0000151D0000CB39D0080038151D0003FDE8FE07151D000F0000341700001B1BFDE8FE4DFFFEBF6A0000E077FDE8C379FDE8FE7FFFFEBB84151D0FA1151D0BB9151D00D5D020003C00030D02000000280000000100030D02000000290000000100030D02000000300000000200030D02000000300000000400030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae0044","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,730]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00B2020000009B900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F02DAC020480003258D00000383000000120003258D00000385000000120003258D000003850000003E0003258D00000385000000F50003258D00000385000001760003258D000003850000043B"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aae0047","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,201709,5405,52025],"community":[[5405,3],[65000,65031],[5405,15],[0,13335],[0,6939],[65000,65101],[65534,49002],[0,57463],[65000,50041],[65000,65151],[65534,48004],[5405,4001],[5405,3001],[5405,213]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00CD02000000B64001010050020012020400030D02000313ED0000151D0000CB39D0080038151D0003FDE8FE07151D000F0000341700001B1BFDE8FE4DFFFEBF6A0000E077FDE8C379FDE8FE7FFFFEBB84151D0FA1151D0BB9151D00D5D020003C00030D02000000280000000100030D02000000290000000100030D02000000300000000200030D02000000300000000400030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae004a","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,153],[34927,730],[34927,732]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006F0200000058900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00810886F0082886F0099886F02DA886F02DC"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aae004d","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,1299,174,64289,52025],"community":[[1299,25000]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0091020000007A4001010050020016020500030D0200000513000000AE0000FB210000CB39D0080004051361A8D020003000030D02000000280000000100030D02000000290000000100030D02000000300000000100030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132aae0050","host":"rrc03.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2602:fa7e:17:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A000201302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.510,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132aae0053","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,34927,34927,52025],"community":[[34927,722]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1::a503:4927:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0094020000007D4001010050020012020400030D020000886F0000886F0000CB39D0080004886F02D2D020003000030D02000000280000000200030D02000000290000000500030D020000002A0000000500030D020000003100000003C0230400001A79900E001C00020110200107F8000100000000A5034927000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80001","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,5405,52025],"community":[[34927,110],[34927,180]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006B0200000054900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002120204000332F20000886F0000151D0000CB39C00808886F006E886F00B4"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:1:0:a500:19:9938:1","peer_asn":"199938","id":"2001:7f8:1:0:a500:19:9938:1-01984d132ab80004","host":"rrc03.ripe.net","type":"UPDATE","path":[199938,1299,174,64289,52025],"community":[[1299,25000]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1:0:a500:19:9938:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0091020000007A4001010050020016020500030D0200000513000000AE0000FB210000CB39D0080004051361A8D020003000030D02000000280000000100030D02000000290000000100030D02000000300000000100030D020000003100000002900E001C00020110200107F800010000A50000199938000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80007","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009C0200000085900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3E010100002FC000000000B0002FC0000000015E020180000B98A0000FC000000000B0000B98A0000FC0000000015E023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab8000a","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,730]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00B2020000009B900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F02DAC020480003258D00000383000000120003258D00000385000000120003258D000003850000003E0003258D00000385000000F50003258D00000385000001760003258D000003850000043B"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab8000d","host":"rrc03.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2a0f:85c1:8b9:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A000201302A0F85C108B9"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80010","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,5405,52025],"community":[[34927,110],[34927,180]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006B0200000054900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002120204000332F20000886F0000151D0000CB39C00808886F006E886F00B4"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80013","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,830],[34927,863]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F033E886F035F"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80016","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,64289,52025],"community":[[34927,130],[34927,1301]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00AA0200000093900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002120204000332F20000886F0000FB210000CB39C00808886F0082886F0515C0203C00001A27000007770000005900001A27000007780000000000001A27000007790000011400001A270000077A000000960000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80019","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,5405,52025],"community":[[34927,110],[34927,180]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006B0200000054900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002120204000332F20000886F0000151D0000CB39C00808886F006E886F00B4"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab8001c","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009C0200000085900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3E010100002FC000000000B0002FC0000000015E020180000B98A0000FC000000000B0000B98A0000FC0000000015E023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab8001f","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,38158,150242,214028,214028],"community":[[34927,130],[34927,1301]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2a0f:85c1:8b9::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A6020000008F900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302A0F85C108B94001010040021A0206000332F20000886F0000950E00024AE20003440C0003440CC00808886F0082886F0515E0203000001A27000007770000005900001A27000007780000000000001A27000007790000011400001A270000077A00000096"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80022","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,9002,64289,52025],"community":[[34927,110],[34927,910],[34927,948]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0073020000005C900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101004002160205000332F20000886F0000232A0000FB210000CB39C0080C886F006E886F038E886F03B4"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80025","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80028","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,174,64289,52025],"community":[[34927,110],[34927,147]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007E0200000067900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002160205000332F20000886F000000AE0000FB210000CB39C00808886F006E886F0093C0200C0000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab8002b","host":"rrc03.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2a0f:85c1:8b9:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A000201302A0F85C108B9"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab8002e","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,5405,52025],"community":[[34927,110],[34927,180]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006B0200000054900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002120204000332F20000886F0000151D0000CB39C00808886F006E886F00B4"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80031","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,5405,52025],"community":[[34927,110],[34927,180]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006B0200000054900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E0017400101024002120204000332F20000886F0000151D0000CB39C00808886F006E886F00B4"}} +{"type":"ris_message","data":{"timestamp":1753639758.520,"peer":"2001:7f8:13::a520:9650:1","peer_asn":"209650","id":"2001:7f8:13::a520:9650:1-01984d132ab80034","host":"rrc03.ripe.net","type":"UPDATE","path":[209650,34927,52025],"community":[[34927,130],[34927,163]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:13::a520:9650:1,fe80::250:56ff:fea3:644a","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00670200000050900E002C00020120200107F8001300000000A52096500001FE80000000000000025056FFFEA3644A00302602FA7E00174001010240020E0203000332F20000886F0000CB39C00808886F0082886F00A3"}} +{"type":"ris_message","data":{"timestamp":1753639757.570,"peer":"91.206.52.116","peer_asn":"8218","id":"91.206.52.116-01984d1327020000","host":"rrc20.ripe.net","type":"UPDATE","path":[8218,2603],"community":[[8218,102],[8218,20000],[8218,20210]],"origin":"IGP","med":2610,"aggregator":"2603:109.105.96.31","announcements":[{"next_hop":"91.206.52.116","prefixes":["193.10.255.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005402000000394001010040020A02020000201A00000A2B4003045BCE347480040400000A32C0070800000A2B6D69601FC0080C201A0066201A4E20201A4EF218C10AFF"}} +{"type":"ris_message","data":{"timestamp":1753639757.570,"peer":"2001:7f8:24::74","peer_asn":"8218","id":"2001:7f8:24::74-01984d1327020003","host":"rrc20.ripe.net","type":"UPDATE","path":[8218,6461,174,53667,202256],"community":[[8218,103]],"origin":"IGP","med":3600,"announcements":[{"next_hop":"2001:7f8:24::74,fe80::da53:9aff:feb1:14cd","prefixes":["2a06:de02:5bb::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0072020000005B4001010040021602050000201A0000193D000000AE0000D1A30003161080040400000E10C00804201A0067900E002C00020120200107F8002400000000000000000074FE80000000000000DA539AFFFEB114CD00302A06DE0205BB"}} +{"type":"ris_message","data":{"timestamp":1753639757.570,"peer":"91.206.52.5","peer_asn":"47147","id":"91.206.52.5-01984d1327020006","host":"rrc20.ripe.net","type":"UPDATE","path":[47147,2914,63306,63376],"community":[[2914,410],[2914,1005],[2914,2000],[2914,3000],[47147,1500],[47147,2000],[47147,2101],[47147,2300],[47147,2401],[47147,2601]],"origin":"IGP","med":0,"announcements":[{"next_hop":"91.206.52.5","prefixes":["140.174.37.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006D02000000524001010040021202040000B82B00000B620000F74A0000F7904003045BCE340580040400000000C008280B62019A0B6203ED0B6207D00B620BB8B82B05DCB82B07D0B82B0835B82B08FCB82B0961B82B0A29188CAE25"}} +{"type":"ris_message","data":{"timestamp":1753639757.570,"peer":"2001:7f8:24::74","peer_asn":"8218","id":"2001:7f8:24::74-01984d1327020009","host":"rrc20.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2602:fa7e:17:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A000201302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"91.206.52.5","peer_asn":"47147","id":"91.206.52.5-01984d132aea0002","host":"rrc20.ripe.net","type":"UPDATE","path":[47147,2914,3356,3356,3356,3356,52468,28370,28370,28370,28657],"community":[[2914,420],[2914,1206],[2914,2203],[2914,3200],[47147,1502],[47147,2000],[47147,2101],[47147,2300],[47147,2401],[47147,2601]],"origin":"IGP","med":0,"announcements":[{"next_hop":"91.206.52.5","prefixes":["138.99.97.0/24"]}],"withdrawals":["195.216.179.0/24","176.116.6.0/24"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009102000818C3D8B318B07406006E4001010040022E020B0000B82B00000B6200000D1C00000D1C00000D1C00000D1C0000CCF400006ED200006ED200006ED200006FF14003045BCE340580040400000000C008280B6201A40B6204B60B62089B0B620C80B82B05DEB82B07D0B82B0835B82B08FCB82B0961B82B0A29188A6361"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"91.206.52.5","peer_asn":"47147","id":"91.206.52.5-01984d132aea0005","host":"rrc20.ripe.net","type":"UPDATE","path":[47147,1299,174,262645,263561],"community":[[1299,20000],[47147,1410],[47147,1502],[47147,2000],[47147,2102],[47147,2300],[47147,2403],[47147,2600]],"origin":"IGP","med":0,"announcements":[{"next_hop":"91.206.52.5","prefixes":["186.251.12.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0069020000004E4001010040021602050000B82B00000513000000AE000401F5000405894003045BCE340580040400000000C0082005134E20B82B0582B82B05DEB82B07D0B82B0836B82B08FCB82B0963B82B0A2816BAFB0C"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"91.206.52.5","peer_asn":"47147","id":"91.206.52.5-01984d132aea0008","host":"rrc20.ripe.net","type":"UPDATE","path":[47147,1299,12389,8369],"community":[[1299,30000],[47147,1410],[47147,1502],[47147,2000],[47147,2102],[47147,2300],[47147,2403],[47147,2600]],"origin":"IGP","med":0,"announcements":[{"next_hop":"91.206.52.5","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0065020000004A4001010040021202040000B82B0000051300003065000020B14003045BCE340580040400000000C0082005137530B82B0582B82B05DEB82B07D0B82B0836B82B08FCB82B0963B82B0A2818C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:24::5","peer_asn":"47147","id":"2001:7f8:24::5-01984d132aea000b","host":"rrc20.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2a03:eec0:3212:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A000201302A03EEC03212"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:24::74","peer_asn":"8218","id":"2001:7f8:24::74-01984d132aea000e","host":"rrc20.ripe.net","type":"UPDATE","path":[8218,28458],"community":[[8218,102]],"origin":"INCOMPLETE","med":500,"announcements":[{"next_hop":"2001:7f8:24::74,fe80::da53:9aff:feb1:14cd","prefixes":["2806:202::/32"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0064020000004D4001010240020A02020000201A00006F2A800404000001F4C00804201A0066900E002A00020120200107F8002400000000000000000074FE80000000000000DA539AFFFEB114CD002028060202"}} +{"type":"ris_message","data":{"timestamp":1753639757.570,"peer":"2001:7f8:24::95","peer_asn":"15547","id":"2001:7f8:24::95-01984d1327020000","host":"rrc20.ripe.net","type":"UPDATE","path":[15547,7195,55211],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::95,fe80::2a7:42ff:fe6e:d9d3","prefixes":["2607:b3c0:10::/44"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005C0200000045900E002C00020120200107F8002400000000000000000095FE8000000000000002A742FFFE6ED9D3002C2607B3C000104001010040020E020300003CBB00001C1B0000D7AB"}} +{"type":"ris_message","data":{"timestamp":1753639757.570,"peer":"2001:7f8:24::b4","peer_asn":"62167","id":"2001:7f8:24::b4-01984d1327020003","host":"rrc20.ripe.net","type":"UPDATE","path":[62167,24785,1273,1299,2914,137990,140731,140731,140731,140731,140731,140731,140731,140731,140731],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::b4,fe80::8ae6:4b00:67c8:e7b4","prefixes":["2406:840:eb83::/48","2406:840:9203::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0093020000007C4001010040023E020F0000F2D7000060D1000004F90000051300000B6200021B06000225BB000225BB000225BB000225BB000225BB000225BB000225BB000225BB000225BB900E003300020120200107F80024000000000000000000B4FE800000000000008AE64B0067C8E7B4003024060840EB8330240608409203"}} +{"type":"ris_message","data":{"timestamp":1753639757.570,"peer":"2001:7f8:24::b4","peer_asn":"62167","id":"2001:7f8:24::b4-01984d1327020006","host":"rrc20.ripe.net","type":"UPDATE","path":[62167,6939,22356,13786,28263],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::b4,fe80::8ae6:4b00:67c8:e7b4","prefixes":["2804:4f8:8300::/40","2804:4f8:888a::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006A02000000534001010040021602050000F2D700001B1B00005754000035DA00006E67900E003200020120200107F80024000000000000000000B4FE800000000000008AE64B0067C8E7B40028280404F88330280404F8888A"}} +{"type":"ris_message","data":{"timestamp":1753639757.570,"peer":"2001:7f8:24::b4","peer_asn":"62167","id":"2001:7f8:24::b4-01984d1327020009","host":"rrc20.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2406:840:eb83:0:0:0:0:0/48","2406:840:9203:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF002C0200000015900F00110002013024060840EB8330240608409203"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:24::b4","peer_asn":"62167","id":"2001:7f8:24::b4-01984d132aea0002","host":"rrc20.ripe.net","type":"UPDATE","path":[62167,24785,6830,6453,19905],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::b4,fe80::8ae6:4b00:67c8:e7b4","prefixes":["2610:a1:1028::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0064020000004D4001010040021602050000F2D7000060D100001AAE0000193500004DC1900E002C00020120200107F80024000000000000000000B4FE800000000000008AE64B0067C8E7B40030261000A11028"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"91.206.52.180","peer_asn":"62167","id":"91.206.52.180-01984d132aea0005","host":"rrc20.ripe.net","type":"UPDATE","path":[62167,24785,5511,2914,63306,63376],"community":[],"origin":"IGP","announcements":[{"next_hop":"91.206.52.180","prefixes":["140.174.37.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004302000000284001010040021A02060000F2D7000060D10000158700000B620000F74A0000F7904003045BCE34B4188CAE25"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:24::b4","peer_asn":"62167","id":"2001:7f8:24::b4-01984d132aea0008","host":"rrc20.ripe.net","type":"UPDATE","path":[62167,52025],"community":[],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::b4,fe80::8ae6:4b00:67c8:e7b4","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005802000000414001010240020A02020000F2D70000CB39900E002C00020120200107F80024000000000000000000B4FE800000000000008AE64B0067C8E7B400302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"91.206.52.180","peer_asn":"62167","id":"91.206.52.180-01984d132aea000b","host":"rrc20.ripe.net","type":"UPDATE","path":[62167,3257,2914,63306,63376],"community":[],"origin":"IGP","announcements":[{"next_hop":"91.206.52.180","prefixes":["140.174.37.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003F02000000244001010040021602050000F2D700000CB900000B620000F74A0000F7904003045BCE34B4188CAE25"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:7f8:24::95","peer_asn":"15547","id":"2001:7f8:24::95-01984d132ed20000","host":"rrc20.ripe.net","type":"UPDATE","path":[15547,28458],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::95,fe80::2a7:42ff:fe6e:d9d3","prefixes":["2806:202::/32"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0056020000003F900E002A00020120200107F8002400000000000000000095FE8000000000000002A742FFFE6ED9D30020280602024001010040020A020200003CBB00006F2A"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:7f8:24::b4","peer_asn":"62167","id":"2001:7f8:24::b4-01984d132ed20003","host":"rrc20.ripe.net","type":"UPDATE","path":[62167,24785,6830,174,53667,202256],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::b4,fe80::8ae6:4b00:67c8:e7b4","prefixes":["2a06:de02:6f3::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006802000000514001010040021A02060000F2D7000060D100001AAE000000AE0000D1A300031610900E002C00020120200107F80024000000000000000000B4FE800000000000008AE64B0067C8E7B400302A06DE0206F3"}} +{"type":"ris_message","data":{"timestamp":1753639757.560,"peer":"217.29.66.86","peer_asn":"12637","id":"217.29.66.86-01984d1326f80000","host":"rrc10.ripe.net","type":"UPDATE","path":[12637,24482,45430,4750],"community":[[12637,65010],[12637,65012],[12637,65099],[64512,11],[64512,21],[64512,31]],"origin":"IGP","announcements":[{"next_hop":"217.29.66.158","prefixes":["58.137.31.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0098020000007D4001010040021202040000315D00005FA20000B1760000128E400304D91D429EC00818315DFDF2315DFDF4315DFE4BFC00000BFC000015FC00001FC010180002FC000000000B0002FC00000000150002FC000000001FC020240000F2100000FC000000000B0000F2100000FC00000000150000F2100000FC000000001F183A891F"}} +{"type":"ris_message","data":{"timestamp":1753639757.560,"peer":"2001:7f8:b:100:1d1:a5d1:2637:86","peer_asn":"12637","id":"2001:7f8:b:100:1d1:a5d1:2637:86-01984d1326f80003","host":"rrc10.ripe.net","type":"UPDATE","path":[12637,34927,34927,52025],"community":[[12637,65010],[12637,65017],[12637,65099],[34927,722]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:b:100:1d1:a5d1:2637:86,fe80::ee38:73ff:fe71:4427","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A02000000634001010240021202040000315D0000886F0000886F0000CB39C00810315DFDF2315DFDF9315DFE4B886F02D2E0230400001A79900E002C00020120200107F8000B010001D1A5D126370086FE80000000000000EE3873FFFE71442700302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639757.560,"peer":"2001:7f8:b:100:1d1:a5d1:2637:86","peer_asn":"12637","id":"2001:7f8:b:100:1d1:a5d1:2637:86-01984d1326f80006","host":"rrc10.ripe.net","type":"UPDATE","path":[12637,2914,13786,28263],"community":[[2914,410],[2914,1009],[2914,2000],[2914,3000],[12637,65020],[12637,65023]],"origin":"EGP","announcements":[{"next_hop":"2001:7f8:b:100:1d1:a5d1:2637:86,fe80::ee38:73ff:fe71:4427","prefixes":["2804:4f8:8400::/40","2804:4f8:888b::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0081020000006A4001010140021202040000315D00000B62000035DA00006E67C008180B62019A0B6203F10B6207D00B620BB8315DFDFC315DFDFF900E003200020120200107F8000B010001D1A5D126370086FE80000000000000EE3873FFFE7144270028280404F88430280404F8888B"}} +{"type":"ris_message","data":{"timestamp":1753639757.560,"peer":"2001:7f8:b:100:1d1:a5d1:2637:86","peer_asn":"12637","id":"2001:7f8:b:100:1d1:a5d1:2637:86-01984d1326f80009","host":"rrc10.ripe.net","type":"UPDATE","path":[12637,174,1299,22616],"community":[[174,21100],[174,22009],[12637,65020],[12637,65022]],"origin":"EGP","announcements":[{"next_hop":"2001:7f8:b:100:1d1:a5d1:2637:86,fe80::ee38:73ff:fe71:4427","prefixes":["2a03:eec0:3212::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0073020000005C4001010140021202040000315D000000AE0000051300005858C0081000AE526C00AE55F9315DFDFC315DFDFE900E002C00020120200107F8000B010001D1A5D126370086FE80000000000000EE3873FFFE71442700302A03EEC03212"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"217.29.66.86","peer_asn":"12637","id":"217.29.66.86-01984d132ae00000","host":"rrc10.ripe.net","type":"UPDATE","path":[12637,2914,45430,4750],"community":[[2914,410],[2914,1405],[2914,2406],[2914,3400],[12637,65020],[12637,65023],[45430,2111]],"origin":"EGP","announcements":[{"next_hop":"217.29.66.86","prefixes":["58.137.31.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005A020000003F4001010140021202040000315D00000B620000B1760000128E400304D91D4256C0081C0B62019A0B62057D0B6209660B620D48315DFDFC315DFDFFB176083F183A891F"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:b:100:1d1:a5d1:2637:86","peer_asn":"12637","id":"2001:7f8:b:100:1d1:a5d1:2637:86-01984d132ae00003","host":"rrc10.ripe.net","type":"UPDATE","path":[12637,2914,20473,210564],"community":[[2914,410],[2914,1214],[2914,2213],[2914,3200],[12637,65020],[12637,65023],[20473,27],[20473,4000]],"origin":"EGP","announcements":[{"next_hop":"2001:7f8:b:100:1d1:a5d1:2637:86,fe80::ee38:73ff:fe71:4427","prefixes":["2001:67c:20fc::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0092020000007B4001010140021202040000315D00000B6200004FF900033684C008200B62019A0B6204BE0B6208A50B620C80315DFDFC315DFDFF4FF9001B4FF90FA0C0200C00004FF900000000BBCCA97F900E002C00020120200107F8000B010001D1A5D126370086FE80000000000000EE3873FFFE71442700302001067C20FC"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:b:100:1d1:a5d1:2637:86","peer_asn":"12637","id":"2001:7f8:b:100:1d1:a5d1:2637:86-01984d132ae00006","host":"rrc10.ripe.net","type":"UPDATE","path":[12637,2914,16509,8987],"community":[[2914,410],[2914,1008],[2914,2000],[2914,3000],[12637,65020],[12637,65023]],"origin":"EGP","announcements":[{"next_hop":"2001:7f8:b:100:1d1:a5d1:2637:86,fe80::ee38:73ff:fe71:4427","prefixes":["2605:9cc0:c0d::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007B02000000644001010140021202040000315D00000B620000407D0000231BC008180B62019A0B6203F00B6207D00B620BB8315DFDFC315DFDFF900E002C00020120200107F8000B010001D1A5D126370086FE80000000000000EE3873FFFE714427003026059CC00C0D"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"193.203.0.185","peer_asn":"6939","id":"193.203.0.185-01984d132ad60000","host":"rrc05.ripe.net","type":"UPDATE","path":[6939,12389,8369],"community":[],"origin":"IGP","med":0,"announcements":[{"next_hop":"193.203.0.185","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003E02000000234001010040020E020300001B1B00003065000020B1400304C1CB00B98004040000000018C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:504:d::46","peer_asn":"6762","id":"2001:504:d::46-01984d132aea0001","host":"rrc14.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2610:a1:1028:0:0:0:0:0/48","240d:c010:165:0:0:0:0:0/48","2402:e580:74ba:0:0:0:0:0/48","2a03:eec0:3212:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003A0200000023900F001F00020130261000A1102830240DC0100165302402E58074BA302A03EEC03212"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:504:d::46","peer_asn":"6762","id":"2001:504:d::46-01984d132aea0004","host":"rrc14.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2a06:de02:6f3:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A000201302A06DE0206F3"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:504:d::46","peer_asn":"6762","id":"2001:504:d::46-01984d132aea0007","host":"rrc14.ripe.net","type":"UPDATE","path":[6762,6939,8676],"community":[[6762,31],[6762,10180]],"origin":"IGP","med":100,"announcements":[{"next_hop":"2001:504:d::46,fe80::223:9cff:fe54:2e1f","prefixes":["2001:1420::/32","2a03:9f00::/32","2001:1420::/30"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0076020000005F4001010040020E020300001A6A00001B1B000021E480040400000064C008081A6A001F1A6A27C4900E00340002012020010504000D00000000000000000046FE8000000000000002239CFFFE542E1F002020011420202A039F001E20011420"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:504:d::46","peer_asn":"6762","id":"2001:504:d::46-01984d132ed20001","host":"rrc14.ripe.net","type":"UPDATE","path":[6762,197898,8676,207995],"community":[[6762,1],[6762,30],[6762,40],[6762,14400]],"origin":"IGP","med":100,"announcements":[{"next_hop":"2001:504:d::46,fe80::223:9cff:fe54:2e1f","prefixes":["2a10:340::/30"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0078020000006140010100400212020400001A6A0003050A000021E400032C7B80040400000064C008101A6A00011A6A001E1A6A00281A6A3840900E002A0002012020010504000D00000000000000000046FE8000000000000002239CFFFE542E1F001E2A100340"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"198.32.176.70","peer_asn":"6762","id":"198.32.176.70-01984d132ed20004","host":"rrc14.ripe.net","type":"UPDATE","path":[6762,174,262645,263561],"community":[[6762,31],[6762,10180]],"origin":"IGP","med":100,"announcements":[{"next_hop":"198.32.176.70","prefixes":["186.251.12.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004D020000003240010100400212020400001A6A000000AE000401F500040589400304C620B04680040400000064C008081A6A001F1A6A27C416BAFB0C"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:504:d::46","peer_asn":"6762","id":"2001:504:d::46-01984d132ed20007","host":"rrc14.ripe.net","type":"UPDATE","path":[6762,64289,52025],"community":[[6762,1],[6762,30],[6762,40],[6762,13100]],"origin":"INCOMPLETE","med":100,"announcements":[{"next_hop":"2001:504:d::46,fe80::223:9cff:fe54:2e1f","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0076020000005F4001010240020E020300001A6A0000FB210000CB3980040400000064C008101A6A00011A6A001E1A6A00281A6A332C900E002C0002012020010504000D00000000000000000046FE8000000000000002239CFFFE542E1F00302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:504:d::46","peer_asn":"6762","id":"2001:504:d::46-01984d132ed2000a","host":"rrc14.ripe.net","type":"UPDATE","path":[6762,197898,8676,52063],"community":[[6762,1],[6762,30],[6762,40],[6762,14400]],"origin":"IGP","med":100,"announcements":[{"next_hop":"2001:504:d::46,fe80::223:9cff:fe54:2e1f","prefixes":["2a00:9400::/32"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0078020000006140010100400212020400001A6A0003050A000021E40000CB5F80040400000064C008101A6A00011A6A001E1A6A00281A6A3840900E002A0002012020010504000D00000000000000000046FE8000000000000002239CFFFE542E1F00202A009400"}} +{"type":"ris_message","data":{"timestamp":1753639757.560,"peer":"194.68.123.191","peer_asn":"199524","id":"194.68.123.191-01984d1326f80000","host":"rrc07.ripe.net","type":"UPDATE","path":[199524,1299,2603,2603,2603],"community":[],"origin":"IGP","aggregator":"2603:109.105.96.44","announcements":[{"next_hop":"194.68.123.191","prefixes":["193.10.255.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004A020000002F40010100400216020500030B640000051300000A2B00000A2B00000A2B400304C2447BBFC0070800000A2B6D69602C18C10AFF"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:d:ff::191","peer_asn":"199524","id":"2001:7f8:d:ff::191-01984d132ae00001","host":"rrc07.ripe.net","type":"UPDATE","path":[199524,57463,34927,34927,34927,34927,52025],"community":[],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:d:ff::39","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005C02000000454001010240021E020700030B640000E0770000886F0000886F0000886F0000886F0000CB39900E001C00020110200107F8000D00FF000000000000003900302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"194.68.123.69","peer_asn":"51519","id":"194.68.123.69-01984d132ae00000","host":"rrc07.ripe.net","type":"UPDATE","path":[51519,6939,12389,8369],"community":[[51519,200]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.69","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005102000000364001010040021202040000C93F00001B1B00003065000020B1400304C2447B45C00804C93F00C8C0200C0000C93F000000C800001B1B18C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:d:ff::69","peer_asn":"51519","id":"2001:7f8:d:ff::69-01984d132ae00003","host":"rrc07.ripe.net","type":"UPDATE","path":[51519,39351,52025],"community":[[51519,200]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:d:ff::69","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0062020000004B4001010040020E02030000C93F000099B70000CB39C00804C93F00C8900E001C00020110200107F8000D00FF000000000000006900302602FA7E0017C0200C0000C93F000000C8000099B7"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"194.68.123.69","peer_asn":"51519","id":"194.68.123.69-01984d132ec80002","host":"rrc07.ripe.net","type":"UPDATE","path":[51519,39351,12389,8369],"community":[[51519,200]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.69","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005102000000364001010040021202040000C93F000099B700003065000020B1400304C2447B45C00804C93F00C8C0200C0000C93F000000C8000099B718C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.69","peer_asn":"51519","id":"194.68.123.69-01984d132ed20000","host":"rrc07.ripe.net","type":"UPDATE","path":[51519,39351,7473,7568,4750],"community":[[51519,200]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.69","prefixes":["58.137.31.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006002000000454001010040021602050000C93F000099B700001D3100001D900000128E400304C2447B45C00804C93F00C8C010080002B17600000FA1C0200C0000C93F000000C8000099B7183A891F"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.69","peer_asn":"51519","id":"194.68.123.69-01984d132ed20003","host":"rrc07.ripe.net","type":"UPDATE","path":[51519,39351,174,37468,61832,61832,61832,61917,263069],"community":[[51519,200]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.69","prefixes":["168.0.128.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0065020000004A4001010040022602090000C93F000099B7000000AE0000925C0000F1880000F1880000F1880000F1DD0004039D400304C2447B45C00804C93F00C8C0200C0000C93F000000C8000099B716A80080"}} +{"type":"ris_message","data":{"timestamp":1753639757.580,"peer":"2001:504:d::6","peer_asn":"2914","id":"2001:504:d::6-01984d13270c0001","host":"rrc14.ripe.net","type":"UPDATE","path":[2914,6453,139341,139341],"community":[[2914,420],[2914,1404],[2914,2405],[2914,3400]],"origin":"IGP","aggregator":"65269:43.174.88.2","announcements":[{"next_hop":"2001:504:d::6","prefixes":["240d:c010:165::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0071020000005A900E001C0002011020010504000D000000000000000000060030240DC010016540010100400212020400000B62000019350002204D0002204D400600C007080000FEF52BAE5802C008100B6201A40B62057C0B6209650B620D48"}} +{"type":"ris_message","data":{"timestamp":1753639757.580,"peer":"198.32.176.14","peer_asn":"2914","id":"198.32.176.14-01984d13270c0004","host":"rrc14.ripe.net","type":"UPDATE","path":[2914,63306,63376],"community":[[2914,410],[2914,1005],[2914,2000],[2914,3000]],"origin":"IGP","announcements":[{"next_hop":"198.32.176.14","prefixes":["140.174.37.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004A020000002F4001010040020E020300000B620000F74A0000F790400304C620B00EC008100B62019A0B6203ED0B6207D00B620BB8188CAE25"}} +{"type":"ris_message","data":{"timestamp":1753639757.580,"peer":"2001:504:d::6","peer_asn":"2914","id":"2001:504:d::6-01984d13270c0007","host":"rrc14.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2610:a1:1028:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A00020130261000A11028"}} +{"type":"ris_message","data":{"timestamp":1753639758.580,"peer":"198.32.176.14","peer_asn":"2914","id":"198.32.176.14-01984d132af40002","host":"rrc14.ripe.net","type":"UPDATE","path":[2914,7568,4750],"community":[[2914,410],[2914,1405],[2914,2406],[2914,3400],[4750,202],[4750,54191]],"origin":"IGP","announcements":[{"next_hop":"198.32.176.14","prefixes":["58.137.31.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005D02000000424001010040020E020300000B6200001D900000128E400304C620B00EC008180B62019A0B62057D0B6209660B620D48128E00CA128ED3AFC010080002B17600000FA1183A891F"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"194.68.123.57","peer_asn":"3399","id":"194.68.123.57-01984d132ae00000","host":"rrc07.ripe.net","type":"UPDATE","path":[3399,24482,45430,4750],"community":[[3399,200],[3399,209],[3399,504],[3399,600],[3399,711],[3399,2000]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.57","prefixes":["58.137.31.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0056020000003B40010100400212020400000D4700005FA20000B1760000128E400304C2447B39C008180D4700C80D4700D10D4701F80D4702580D4702C70D4707D0183A891F"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:d:ff::57","peer_asn":"3399","id":"2001:7f8:d:ff::57-01984d132ae00003","host":"rrc07.ripe.net","type":"UPDATE","path":[3399,52025],"community":[[0,6939],[0,13335],[0,57463],[3399,200],[3399,221],[3399,504],[3399,600],[3399,711],[3399,2000]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:d:ff::57,fe80::d248:a100:d786:a458","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007F02000000684001010240020A020200000D470000CB39C0082400001B1B000034170000E0770D4700C80D4700DD0D4701F80D4702580D4702C70D4707D0900E002C00020120200107F8000D00FF0000000000000057FE80000000000000D248A100D786A45800302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"194.68.123.57","peer_asn":"3399","id":"194.68.123.57-01984d132ae00006","host":"rrc07.ripe.net","type":"UPDATE","path":[3399,23947,131736],"community":[[3399,200],[3399,209],[3399,504],[3399,600],[3399,711],[3399,2000],[23947,20]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.57","prefixes":["103.132.12.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005D02000000424001010040020E020300000D4700005D8B00020298400304C2447B39C0081C0D4700C80D4700D10D4701F80D4702580D4702C70D4707D05D8B0014E0230400001A791867840C"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:d:ff::57","peer_asn":"3399","id":"2001:7f8:d:ff::57-01984d132ae00009","host":"rrc07.ripe.net","type":"UPDATE","path":[3399,52025],"community":[[0,6939],[0,13335],[0,57463],[3399,200],[3399,221],[3399,504],[3399,600],[3399,711],[3399,2000]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:d:ff::57,fe80::d248:a100:d786:a458","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007F02000000684001010240020A020200000D470000CB39C0082400001B1B000034170000E0770D4700C80D4700DD0D4701F80D4702580D4702C70D4707D0900E002C00020120200107F8000D00FF0000000000000057FE80000000000000D248A100D786A45800302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"194.68.123.57","peer_asn":"3399","id":"194.68.123.57-01984d132ae0000c","host":"rrc07.ripe.net","type":"UPDATE","path":[3399,12389,8369],"community":[[3399,200],[3399,205],[3399,500],[3399,601],[3399,702],[3399,2027]],"origin":"INCOMPLETE","announcements":[{"next_hop":"194.68.123.182","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005202000000374001010240020E020300000D4700003065000020B1400304C2447BB6C008180D4700C80D4700CD0D4701F40D4702590D4702BE0D4707EB18C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"194.68.123.57","peer_asn":"3399","id":"194.68.123.57-01984d132ec80000","host":"rrc07.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["103.132.12.0/24"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001B0200041867840C0000"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:7f8:d:ff::57","peer_asn":"3399","id":"2001:7f8:d:ff::57-01984d132ed20001","host":"rrc07.ripe.net","type":"UPDATE","path":[3399,9002,45147,150279,214028,214028,214028],"community":[[3399,200],[3399,209],[3399,504],[3399,600],[3399,711],[3399,2000]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:d:ff::57,fe80::d248:a100:d786:a458","prefixes":["2a0f:85c1:8b9::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008E02000000774001010040021E020700000D470000232A0000B05B00024B070003440C0003440C0003440CC008180D4700C80D4700D10D4701F80D4702580D4702C70D4707D0E0230400001A79900E002C00020120200107F8000D00FF0000000000000057FE80000000000000D248A100D786A45800302A0F85C108B9"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:7f8:d:ff::57","peer_asn":"3399","id":"2001:7f8:d:ff::57-01984d132ed20004","host":"rrc07.ripe.net","type":"UPDATE","path":[3399,38158,150242,214028,214028],"community":[[3399,200],[3399,209],[3399,504],[3399,600],[3399,711],[3399,2000],[38158,65030],[65535,1167]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:d:ff::57,fe80::d248:a100:d786:a458","prefixes":["2a0f:85c1:8b9::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008E020000007740010100400216020500000D470000950E00024AE20003440C0003440CC008200D4700C80D4700D10D4701F80D4702580D4702C70D4707D0950EFE06FFFF048FE0230400001A79900E002C00020120200107F8000D00FF0000000000000057FE80000000000000D248A100D786A45800302A0F85C108B9"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:7f8:d:ff::57","peer_asn":"3399","id":"2001:7f8:d:ff::57-01984d132ed20007","host":"rrc07.ripe.net","type":"UPDATE","path":[3399,174,64289,52025],"community":[[174,21101],[174,22010],[3399,100],[3399,106],[3399,500],[3399,600],[3399,702],[3399,2027]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:d:ff::57,fe80::d248:a100:d786:a458","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0092020000007B40010102400212020400000D47000000AE0000FB210000CB39C0082000AE526D00AE55FA0D4700640D47006A0D4701F40D4702580D4702BE0D4707EBC0200C0000FB2100000BB80000000A900E002C00020120200107F8000D00FF0000000000000057FE80000000000000D248A100D786A45800302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"217.29.67.51","peer_asn":"41327","id":"217.29.67.51-01984d132ae00000","host":"rrc10.ripe.net","type":"UPDATE","path":[41327,3356,26104],"community":[[17152,1],[41327,300],[41327,3000],[41327,3356],[41327,4500],[41327,10001],[41327,11000],[41327,11002]],"origin":"IGP","announcements":[{"next_hop":"217.29.67.51","prefixes":["200.142.175.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005A020000003F4001010040020E02030000A16F00000D1C000065F8400304D91D4333C0082043000001A16F012CA16F0BB8A16F0D1CA16F1194A16F2711A16F2AF8A16F2AFA18C88EAF"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:b:100:1d1:a5d4:1327:51","peer_asn":"41327","id":"2001:7f8:b:100:1d1:a5d4:1327:51-01984d132ae00003","host":"rrc10.ripe.net","type":"UPDATE","path":[41327,6939,212895,32434],"community":[[17152,0],[41327,500],[41327,3000],[41327,4100],[41327,4101],[41327,10001],[41327,11000],[41327,11002]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:b:100:1d1:a5d0:6939:125","prefixes":["2602:f6a8:10::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0073020000005C4001010040021202040000A16F00001B1B00033F9F00007EB2C0082043000000A16F01F4A16F0BB8A16F1004A16F1005A16F2711A16F2AF8A16F2AFA900E001C00020110200107F8000B010001D1A5D06939012500302602F6A80010"}} +{"type":"ris_message","data":{"timestamp":1753639758.590,"peer":"86.104.125.81","peer_asn":"31554","id":"86.104.125.81-01984d132afe0001","host":"rrc22.ripe.net","type":"UPDATE","path":[31554,6204,20485,199599,197986,197986],"community":[[39107,31554]],"origin":"IGP","announcements":[{"next_hop":"86.104.125.81","prefixes":["195.248.82.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004B0200000030400101005002001A020600007B420000183C0000500500030BAF000305620003056240030456687D51C0080498C37B4218C3F852"}} +{"type":"ris_message","data":{"timestamp":1753639758.590,"peer":"86.104.125.81","peer_asn":"31554","id":"86.104.125.81-01984d132afe0004","host":"rrc22.ripe.net","type":"UPDATE","path":[31554,6204,3356,721,721,27064,5371],"community":[[39107,31554]],"origin":"IGP","announcements":[{"next_hop":"86.104.125.81","prefixes":["205.61.92.0/23","205.61.88.0/22","205.86.176.0/24","205.86.178.0/24","205.86.177.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005F0200000034400101005002001E020700007B420000183C00000D1C000002D1000002D1000069B8000014FB40030456687D51C0080498C37B4217CD3D5C16CD3D5818CD56B018CD56B218CD56B1"}} +{"type":"ris_message","data":{"timestamp":1753639758.590,"peer":"86.104.125.81","peer_asn":"31554","id":"86.104.125.81-01984d132afe0007","host":"rrc22.ripe.net","type":"UPDATE","path":[31554,6204,3257,16509],"community":[[39107,31554]],"origin":"IGP","announcements":[{"next_hop":"86.104.125.81","prefixes":["130.137.63.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004302000000284001010050020012020400007B420000183C00000CB90000407D40030456687D51C0080498C37B421882893F"}} +{"type":"ris_message","data":{"timestamp":1753639758.590,"peer":"86.104.125.81","peer_asn":"31554","id":"86.104.125.81-01984d132afe000a","host":"rrc22.ripe.net","type":"UPDATE","path":[31554,47734,57463,263444,262761,262761,262761,262535],"community":[[39107,31554]],"origin":"IGP","announcements":[{"next_hop":"86.104.125.81","prefixes":["177.67.244.0/22","201.159.118.0/23","138.36.192.0/22","138.36.194.0/24","177.67.244.0/24","177.67.240.0/23","167.249.56.0/22","177.67.245.0/24","177.67.242.0/23","177.84.213.0/24","177.67.241.0/24","177.84.214.0/23","167.249.57.0/24","177.84.212.0/24","177.67.240.0/24","177.84.212.0/23","177.84.208.0/21","201.159.119.0/24","177.67.246.0/24","201.159.116.0/23","167.249.58.0/23","177.67.242.0/24","177.84.208.0/24","177.67.243.0/24","167.249.56.0/23","177.84.208.0/23","201.159.117.0/24","167.249.56.0/24","177.84.211.0/24","177.84.209.0/24","177.84.210.0/24","167.249.59.0/24","177.84.208.0/22","167.249.58.0/24","177.67.240.0/22","177.84.212.0/22","177.67.247.0/24","177.84.210.0/23","177.67.246.0/23","201.159.118.0/24","177.67.244.0/23","138.36.192.0/24","177.67.240.0/21","138.36.193.0/24","138.36.195.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03A702000002DC4001010050020022020800007B420000BA760000E077000405140004026900040269000402690004018740030456687D51C0080498C37B42D02002A000001A27000007770000005200001A27000007780000000000001A27000007790000011400001A270000077A000000960000E07700000000000004600000E07700000000000015200000E077000000000000193D0000E0770000000000001A070000E0770000000000001A6A0000E0770000000000001B1B0000E07700000000000021D10000E07700000000000022350000E077000000000000223B0000E0770000000000002A9A0000E0770000000000002C140000E0770000000000002D7C0000E07700000000000032BD0000E07700000000000033B50000E07700000000000039F80000E07700000000000050520000E07700000000000054460000E07700000000000057540000E077000000000000576D0000E07700000000000059260000E0770000000000006E1A0000E0770000000000006E640000E0770000000000006EAA0000E0770000000000006FF70000E07700000000000080130000E07700000000000084630000E0770000000000008DFF0000E07700000000000090EC0000E077000000000000925C0000E077000000000000A9560000E077000000000000B1A20000E077000000000000CC600000E077000000000000CD470000E077000000000000CE820000E077000000000000CEC90000E077000000000000CFAA0000E077000000000000E4550000E077000000000000F0800000E077000000000000F1880000E07700000000000400D20000E07700000000000401BD0000E07700000000000402750000E07700000000000402970000E07700000000000403610000E077000000000004046C0000E077000000000004049C0000E07700000000000404FD0000E07700000000000405CA0000E0770000000000040BE30000E077000000000004155D0000E077000000000004182B0000E077000000000004199816B143F417C99F76168A24C0188A24C218B143F417B143F016A7F93818B143F517B143F218B154D518B143F117B154D618A7F93918B154D418B143F017B154D415B154D018C99F7718B143F617C99F7417A7F93A18B143F218B154D018B143F317A7F93817B154D018C99F7518A7F93818B154D318B154D118B154D218A7F93B16B154D018A7F93A16B143F016B154D418B143F717B154D217B143F618C99F7617B143F4188A24C015B143F0188A24C1188A24C3"}} +{"type":"ris_message","data":{"timestamp":1753639758.590,"peer":"86.104.125.81","peer_asn":"31554","id":"86.104.125.81-01984d132afe000d","host":"rrc22.ripe.net","type":"UPDATE","path":[31554,3356,3356,1299,17072,17072,17072,17072,265566],"community":[[39107,31554]],"origin":"IGP","announcements":[{"next_hop":"86.104.125.81","prefixes":["45.172.92.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0057020000003C4001010050020026020900007B4200000D1C00000D1C00000513000042B0000042B0000042B0000042B000040D5E40030456687D51C0080498C37B42162DAC5C"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"86.104.125.81","peer_asn":"31554","id":"86.104.125.81-01984d132b080002","host":"rrc22.ripe.net","type":"UPDATE","path":[31554,1299,1299,1299,6453,16509],"community":[[39107,31554]],"origin":"IGP","announcements":[{"next_hop":"86.104.125.81","prefixes":["130.137.127.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004B0200000030400101005002001A020600007B42000005130000051300000513000019350000407D40030456687D51C0080498C37B421882897F"}} +{"type":"ris_message","data":{"timestamp":1753639759.590,"peer":"86.104.125.81","peer_asn":"31554","id":"86.104.125.81-01984d132ee60001","host":"rrc22.ripe.net","type":"UPDATE","path":[31554,6204,267613,263069],"community":[[39107,31554]],"origin":"IGP","announcements":[{"next_hop":"86.104.125.81","prefixes":["168.0.128.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004302000000284001010050020012020400007B420000183C0004155D0004039D40030456687D51C0080498C37B4216A80080"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:b:100:1d1:a519:9524:55","peer_asn":"199524","id":"2001:7f8:b:100:1d1:a519:9524:55-01984d132ae00001","host":"rrc10.ripe.net","type":"UPDATE","path":[199524,6762,174,53667,202256],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:b:100:1d1:a519:9524:55","prefixes":["2a06:de02:5bb::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0054020000003D40010100400216020500030B6400001A6A000000AE0000D1A300031610900E001C00020110200107F8000B010001D1A5199524005500302A06DE0205BB"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:b:100:1d1:a519:9524:55","peer_asn":"199524","id":"2001:7f8:b:100:1d1:a519:9524:55-01984d132ae00004","host":"rrc10.ripe.net","type":"UPDATE","path":[199524,6762,2914,64289,52025],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:b:100:1d1:a519:9524:55","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0054020000003D40010100400216020500030B6400001A6A00000B620000FB210000CB39900E001C00020110200107F8000B010001D1A5199524005500302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"217.29.66.192","peer_asn":"202032","id":"217.29.66.192-01984d132ec80002","host":"rrc10.ripe.net","type":"UPDATE","path":[202032,32787,136448],"community":[[20203,2004]],"origin":"IGP","announcements":[{"next_hop":"217.29.67.168","prefixes":["180.222.201.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00400200000025400101005002000E0203000315300000801300021500400304D91D43A8D00800044EEB07D418B4DEC9"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"217.29.66.120","peer_asn":"15605","id":"217.29.66.120-01984d132ec80005","host":"rrc10.ripe.net","type":"UPDATE","path":[15605,3356,6939,12389,8369],"community":[[3356,2],[3356,22],[3356,86],[3356,505],[3356,666],[3356,903],[3356,2074],[15605,2000],[15605,2099]],"origin":"IGP","announcements":[{"next_hop":"217.29.66.120","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0066020000004B40010100400216020500003CF500000D1C00001B1B00003065000020B1400304D91D4278C008240D1C00020D1C00160D1C00560D1C01F90D1C029A0D1C03870D1C081A3CF507D03CF5083318C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:b:100:1d1:a519:9524:55","peer_asn":"199524","id":"2001:7f8:b:100:1d1:a519:9524:55-01984d132ec80008","host":"rrc10.ripe.net","type":"UPDATE","path":[199524,6762,3356,28458],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:b:100:1d1:a519:9524:55","prefixes":["2806:202::/32"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004E020000003740010100400212020400030B6400001A6A00000D1C00006F2A900E001A00020110200107F8000B010001D1A51995240055002028060202"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"217.29.67.55","peer_asn":"199524","id":"217.29.67.55-01984d132ec8000b","host":"rrc10.ripe.net","type":"UPDATE","path":[199524,174,23673],"community":[],"origin":"IGP","announcements":[{"next_hop":"217.29.67.55","prefixes":["124.248.160.0/19"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0037020000001C4001010040020E020300030B64000000AE00005C79400304D91D4337137CF8A0"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"217.29.66.120","peer_asn":"15605","id":"217.29.66.120-01984d132ec8000e","host":"rrc10.ripe.net","type":"UPDATE","path":[15605,60501,216172],"community":[[15605,3000],[15605,3099],[60501,1000]],"origin":"IGP","announcements":[{"next_hop":"217.29.66.120","prefixes":["185.30.111.0/24","185.30.110.0/24","185.30.109.0/24","185.30.108.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0052020000002B4001010040020E020300003CF50000EC5500034C6C400304D91D4278C0080C3CF50BB83CF50C1BEC5503E818B91E6F18B91E6E18B91E6D18B91E6C"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:b:100:1d1:a5d1:5605:120","peer_asn":"15605","id":"2001:7f8:b:100:1d1:a5d1:5605:120-01984d132ec80011","host":"rrc10.ripe.net","type":"UPDATE","path":[15605,12637,2914,6453,64289,52025],"community":[[2914,420],[2914,1404],[2914,2405],[2914,3400],[12637,65020],[12637,65023],[15605,1000],[15605,1099],[15605,2002],[15605,2199],[15605,3199]],"origin":"EGP","announcements":[{"next_hop":"2001:7f8:b:100:1d1:a5d1:5605:120,fe80::217:a3ff:fe00:b5","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00970200000080900E002C00020120200107F8000B010001D1A5D156050120FE800000000000000217A3FFFE0000B500302602FA7E00174001010140021A020600003CF50000315D00000B62000019350000FB210000CB39C0082C0B6201A40B62057C0B6209650B620D48315DFDFC315DFDFF3CF503E83CF5044B3CF507D23CF508973CF50C7F"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"217.29.66.120","peer_asn":"15605","id":"217.29.66.120-01984d132ec80014","host":"rrc10.ripe.net","type":"UPDATE","path":[15605,2854,200627,200627,200627,200627],"community":[[15605,3003],[15605,3099]],"origin":"IGP","aggregator":"200627:172.17.111.2","announcements":[{"next_hop":"217.29.66.120","prefixes":["212.193.98.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006302000000484001010040021A020600003CF500000B2600030FB300030FB300030FB300030FB3400304D91D4278400600C0070800030FB3AC116F02C008083CF50BBB3CF50C1BE0230400001A7918D4C162"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe0029","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,52025],"community":[[0,6939],[0,13335],[0,57463],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A6020000008F900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020A02020000205B0000CB39C0081800001B1B000034170000E077205B0001205B0065205B0066E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B0000000800000DB8"}} +{"type":"ris_message","data":{"timestamp":1753639758.580,"peer":"192.65.185.141","peer_asn":"6730","id":"192.65.185.141-01984d132af40000","host":"rrc04.ripe.net","type":"UPDATE","path":[6730,6939,12389,8369],"community":[[6730,6200],[6730,6210],[6730,6212]],"origin":"IGP","announcements":[{"next_hop":"192.65.185.141","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004A020000002F40010100400212020400001A4A00001B1B00003065000020B1400304C041B98DC0080C1A4A18381A4A18421A4A184418C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639758.580,"peer":"2001:7f8:1c:24a::1a4a:1","peer_asn":"6730","id":"2001:7f8:1c:24a::1a4a:1-01984d132af40003","host":"rrc04.ripe.net","type":"UPDATE","path":[6730,6830,174,53667],"community":[[6730,6100],[6830,17000],[6830,17504],[6830,23001],[6830,34108]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1c:24a::1a4a:1","prefixes":["2a06:de05:629d::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0067020000005040010100400212020400001A4A00001AAE000000AE0000D1A3C008141A4A17D41AAE42681AAE44601AAE59D91AAE853C900E001C00020110200107F8001C024A000000001A4A000100302A06DE05629D"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe002d","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,6453,64289,52025],"community":[[6453,2000],[6453,2400],[6453,2406],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00AE0200000097900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240021202040000205B000019350000FB210000CB39C00818193507D01935096019350966205B0001205B0065205B0066E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B000000080000001A"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe0030","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,52025],"community":[[0,6939],[0,13335],[0,57463],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A6020000008F900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020A02020000205B0000CB39C0081800001B1B000034170000E077205B0001205B0065205B0066E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B0000000800000DB8"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe0033","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,6453,64289,52025],"community":[[6453,2000],[6453,2400],[6453,2406],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00AE0200000097900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240021202040000205B000019350000FB210000CB39C00818193507D01935096019350966205B0001205B0065205B0066E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B000000080000001A"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe0036","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,64289,52025],"community":[[8283,1],[8283,101],[8283,102],[64289,3000]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00AE0200000097900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020E02030000205B0000FB210000CB39C00810205B0001205B0065205B0066FB210BB8C0203C0000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B0000000800000F960000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe0039","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,64289,52025],"community":[[8283,1],[8283,101],[8283,102],[64289,3000]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00AE0200000097900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020E02030000205B0000FB210000CB39C00810205B0001205B0065205B0066FB210BB8C0203C0000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B00000008000007320000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe003c","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,52025],"community":[[0,6939],[0,13335],[0,57463],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A6020000008F900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020A02020000205B0000CB39C0081800001B1B000034170000E077205B0001205B0065205B0066E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B0000000800000DB8"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe003f","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,52025],"community":[[0,6939],[0,13335],[0,57463],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A6020000008F900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020A02020000205B0000CB39C0081800001B1B000034170000E077205B0001205B0065205B0066E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B0000000800000DB8"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe0042","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,34927,52025],"community":[[8283,1],[8283,101],[8283,102],[34927,722]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A2020000008B900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020E02030000205B0000886F0000CB39C00810205B0001205B0065205B0066886F02D2E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B0000000800000A29"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe0045","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,52025],"community":[[0,6939],[0,13335],[0,57463],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A6020000008F900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020A02020000205B0000CB39C0081800001B1B000034170000E077205B0001205B0065205B0066E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B0000000800000DB8"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe0048","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,6453,64289,52025],"community":[[6453,2000],[6453,2400],[6453,2406],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00AE0200000097900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240021202040000205B000019350000FB210000CB39C00818193507D01935096019350966205B0001205B0065205B0066E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B000000080000001A"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe004b","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,52025],"community":[[0,6939],[0,13335],[0,57463],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A6020000008F900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020A02020000205B0000CB39C0081800001B1B000034170000E077205B0001205B0065205B0066E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B0000000800000732"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe004e","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,52025],"community":[[0,6939],[0,13335],[0,57463],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A6020000008F900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020A02020000205B0000CB39C0081800001B1B000034170000E077205B0001205B0065205B0066E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B0000000800000DB8"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe0051","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,6453,64289,52025],"community":[[6453,2000],[6453,2400],[6453,2406],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00AE0200000097900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240021202040000205B000019350000FB210000CB39C00818193507D01935096019350966205B0001205B0065205B0066E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B000000080000001A"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:d:ff::136","peer_asn":"6667","id":"2001:7f8:d:ff::136-01984d132ae00001","host":"rrc07.ripe.net","type":"UPDATE","path":[6667,3356,3549,28598],"community":[[3356,5],[3356,22],[3356,100],[3356,123],[3356,601],[3356,803],[3356,901],[3356,2194],[3549,350],[3549,4835],[3549,34076],[6667,3004],[6667,4005],[6667,5001],[6667,8890],[28598,7001],[28598,7084],[28598,30011],[28598,55011]],"origin":"IGP","med":0,"aggregator":"28598:138.122.80.84","announcements":[{"next_hop":"2001:7f8:d:ff::136,fe80::ae78:d100:d752:e079","prefixes":["2804:248:100::/40"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00C302000000AC40010100400212020400001A0B00000D1C00000DDD00006FB680040400000000400600C0070800006FB68A7A5054C0084C0D1C00050D1C00160D1C00640D1C007B0D1C02590D1C03230D1C03850D1C08920DDD015E0DDD12E30DDD851C1A0B0BBC1A0B0FA51A0B13891A0B22BA6FB61B596FB61BAC6FB6753B6FB6D6E3900E002B00020120200107F8000D00FF0000000000000136FE80000000000000AE78D100D752E07900282804024801"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:d:ff::136","peer_asn":"6667","id":"2001:7f8:d:ff::136-01984d132ae00004","host":"rrc07.ripe.net","type":"UPDATE","path":[6667,33891,64289,52025],"community":[[6667,3003],[6667,4009],[6667,8890],[33891,33892],[33891,40001],[64289,3000]],"origin":"INCOMPLETE","med":0,"announcements":[{"next_hop":"2001:7f8:d:ff::136,fe80::ae78:d100:d752:e079","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0091020000007A40010102400212020400001A0B000084630000FB210000CB3980040400000000C008181A0B0BBB1A0B0FA91A0B22BA8463846484639C41FB210BB8C0200C0000FB2100000BB80000000A900E002C00020120200107F8000D00FF0000000000000136FE80000000000000AE78D100D752E07900302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"194.68.123.136","peer_asn":"6667","id":"194.68.123.136-01984d132aea0000","host":"rrc07.ripe.net","type":"UPDATE","path":[6667,3257,174,262645,263561],"community":[[3257,8029],[3257,30153],[3257,50001],[3257,54600],[3257,54601],[6667,3004],[6667,4003],[6667,5006],[6667,8891]],"origin":"IGP","med":0,"announcements":[{"next_hop":"194.68.123.136","prefixes":["186.251.12.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006D020000005240010100400216020500001A0B00000CB9000000AE000401F500040589400304C2447B8880040400000000C008240CB91F5D0CB975C90CB9C3510CB9D5480CB9D5491A0B0BBC1A0B0FA31A0B138E1A0B22BB16BAFB0C"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"194.68.123.136","peer_asn":"6667","id":"194.68.123.136-01984d132aea0003","host":"rrc07.ripe.net","type":"UPDATE","path":[6667,1299,174,37282,37506],"community":[[1299,25000],[6667,3004],[6667,4006],[6667,5010],[6667,8891]],"origin":"IGP","med":0,"announcements":[{"next_hop":"194.68.123.136","prefixes":["41.220.92.0/22","41.220.80.0/22","41.220.84.0/22","41.220.80.0/20","41.220.88.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006D020000004240010100400216020500001A0B00000513000000AE000091A200009282400304C2447B8880040400000000C00814051361A81A0B0BBC1A0B0FA61A0B13921A0B22BB1629DC5C1629DC501629DC541429DC501629DC58"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:7f8:d:ff::136","peer_asn":"6667","id":"2001:7f8:d:ff::136-01984d132ed20001","host":"rrc07.ripe.net","type":"UPDATE","path":[6667,33891,64289,52025],"community":[[6667,3001],[6667,4003],[6667,5203],[6667,8890]],"origin":"INCOMPLETE","med":0,"announcements":[{"next_hop":"2001:7f8:d:ff::117","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006A020000005340010102400212020400001A0B000084630000FB210000CB3980040400000000C008101A0B0BB91A0B0FA31A0B14531A0B22BA900E001C00020110200107F8000D00FF000000000000011700302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.136","peer_asn":"6667","id":"194.68.123.136-01984d132ed20004","host":"rrc07.ripe.net","type":"UPDATE","path":[6667,1299,174,37282,37506],"community":[[1299,25000],[6667,3004],[6667,4003],[6667,5010],[6667,8891]],"origin":"IGP","med":0,"announcements":[{"next_hop":"194.68.123.136","prefixes":["41.220.80.0/22","41.220.80.0/20","41.220.88.0/22","41.220.92.0/22","41.220.84.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006D020000004240010100400216020500001A0B00000513000000AE000091A200009282400304C2447B8880040400000000C00814051361A81A0B0BBC1A0B0FA31A0B13921A0B22BB1629DC501429DC501629DC581629DC5C1629DC54"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.136","peer_asn":"6667","id":"194.68.123.136-01984d132ed20007","host":"rrc07.ripe.net","type":"UPDATE","path":[6667,1299,174,37282,37506],"community":[[1299,25000],[6667,3004],[6667,4006],[6667,5010],[6667,8891]],"origin":"IGP","med":0,"announcements":[{"next_hop":"194.68.123.136","prefixes":["41.220.92.0/22","41.220.80.0/22","41.220.84.0/22","41.220.80.0/20","41.220.88.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006D020000004240010100400216020500001A0B00000513000000AE000091A200009282400304C2447B8880040400000000C00814051361A81A0B0BBC1A0B0FA61A0B13921A0B22BB1629DC5C1629DC501629DC541429DC501629DC58"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"217.29.66.158","peer_asn":"24482","id":"217.29.66.158-01984d132ebe0015","host":"rrc10.ripe.net","type":"UPDATE","path":[24482,2914,37468,262589,22381,262663],"community":[[0,2310],[0,2510],[2914,410],[2914,1009],[2914,2000],[2914,3000],[24482,1],[24482,100],[24482,12000],[24482,12010],[24482,12012],[24482,20300],[24482,64602],[37468,3000],[37468,3300],[37468,3310],[37468,3312],[37468,3377],[37468,5555],[37468,13000],[37468,13100],[37468,13102],[37468,37468]],"origin":"IGP","med":18022,"announcements":[{"next_hop":"217.29.66.158","prefixes":["186.216.46.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00B402000000994001010040021A020600005FA200000B620000925C000401BD0000576D00040207400304D91D429E80040400004666C0085C00000906000009CE0B62019A0B6203F10B6207D00B620BB85FA200015FA200645FA22EE05FA22EEA5FA22EEC5FA24F4C5FA2FC5A925C0BB8925C0CE4925C0CEE925C0CF0925C0D31925C15B3925C32C8925C332C925C332E925C925CC0100800025FA20000013618BAD82E"}} +{"type":"ris_message","data":{"timestamp":1753639757.570,"peer":"196.60.8.221","peer_asn":"327804","id":"196.60.8.221-01984d1327020000","host":"rrc19.ripe.net","type":"UPDATE","path":[327804,5713,52320,53087,53087,53087,53087,52901,52901,52901,52901,52901,263671],"community":[],"origin":"IGP","announcements":[{"next_hop":"196.60.8.221","prefixes":["191.241.129.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A020000005F40010100400236020D0005007C000016510000CC600000CF5F0000CF5F0000CF5F0000CF5F0000CEA50000CEA50000CEA50000CEA50000CEA5000405F7400304C43C08DDC020180005007C0000006F000000020005007C0000014D0000165118BFF181"}} +{"type":"ris_message","data":{"timestamp":1753639757.570,"peer":"2001:43f8:6d0::221","peer_asn":"327804","id":"2001:43f8:6d0::221-01984d1327020003","host":"rrc19.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2a14:6:10:0:0:0:0:0/48","2605:9cc0:c04:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF002C0200000015900F0011000201302A14000600103026059CC00C04"}} +{"type":"ris_message","data":{"timestamp":1753639757.570,"peer":"2001:43f8:6d0::221","peer_asn":"327804","id":"2001:43f8:6d0::221-01984d1327020006","host":"rrc19.ripe.net","type":"UPDATE","path":[327804,5713,37468,3356,16509,8987],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:43f8:6d0::221,fe80::82ac:ac02:a84:c2f0","prefixes":["2605:9cc0:c0d::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008F02000000784001010040021A02060005007C000016510000925C00000D1C0000407D0000231BC020240005007C0000006F000000020005007C0000014D000016510005007C0000037800000001900E002C00020120200143F806D000000000000000000221FE8000000000000082ACAC020A84C2F0003026059CC00C0D"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"196.60.8.221","peer_asn":"327804","id":"196.60.8.221-01984d132aea0000","host":"rrc19.ripe.net","type":"UPDATE","path":[327804,5713,23764,9304,4635,40779,401696],"community":[],"origin":"INCOMPLETE","announcements":[{"next_hop":"196.60.8.221","prefixes":["103.149.92.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006202000000474001010240021E02070005007C0000165100005CD4000024580000121B00009F4B00062120400304C43C08DDC020180005007C0000006F000000020005007C0000014D000016511867955C"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"196.60.8.221","peer_asn":"327804","id":"196.60.8.221-01984d132aea0003","host":"rrc19.ripe.net","type":"UPDATE","path":[327804,5713,7195,55211],"community":[],"origin":"IGP","announcements":[{"next_hop":"196.60.8.221","prefixes":["76.72.161.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006202000000474001010040021202040005007C0000165100001C1B0000D7AB400304C43C08DDC020240005007C0000006F000000020005007C0000014D000016510005007C0000037800000001184C48A1"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:43f8:6d0::221","peer_asn":"327804","id":"2001:43f8:6d0::221-01984d132aea0006","host":"rrc19.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2400:fc00:8cf1:0:0:0:0:0/48","2605:9cc0:c03:0:0:0:0:0/48","2406:840:e720:0:0:0:0:0/44","2605:9cc0:c04:0:0:0:0:0/48","2402:e580:73ef:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0041020000002A900F0026000201302400FC008CF13026059CC00C032C24060840E7203026059CC00C04302402E58073EF"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"196.60.9.141","peer_asn":"328214","id":"196.60.9.141-01984d132ed20002","host":"rrc19.ripe.net","type":"STATE","state":"down","raw":""}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"91.206.52.127","peer_asn":"20612","id":"91.206.52.127-01984d132ad60002","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,1299,2603,2603,2603],"community":[[1299,30000],[20612,1299]],"origin":"IGP","aggregator":"2603:109.105.96.44","announcements":[{"next_hop":"91.206.52.127","prefixes":["193.10.255.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0055020000003A400101004002160205000050840000051300000A2B00000A2B00000A2B4003045BCE347FC0070800000A2B6D69602CC00808051375305084051318C10AFF"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ad60005","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"91.206.53.12","peer_asn":"8298","id":"91.206.53.12-01984d132ad60008","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,267613,262645,263561],"community":[[8298,1046]],"origin":"IGP","announcements":[{"next_hop":"91.206.53.12","prefixes":["186.251.12.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008102000000664001010040021202040000206A0004155D000401F5000405894003045BCE350CE00804206A0416C0203C00001A2700000777000000C400001A27000007780000000400001A27000007790000034800001A270000077A000000130000206A000000010000041616BAFB0C"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::7f","peer_asn":"20612","id":"2001:7f8:24::7f-01984d132ad6000b","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,8758,28458],"community":[[8758,105],[8758,235],[8758,301],[20612,8758]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::2","prefixes":["2806:202::/32"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009002000000794001010240020E0203000050840000223600006F2AC0081022360069223600EB2236012D50842236C0203000001A2700000777000000D000001A27000007780000000800001A27000007790000034800001A270000077A00000013900E001A00020110200107F8002400000000000000000002002028060202"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"91.206.52.127","peer_asn":"20612","id":"91.206.52.127-01984d132ad6000e","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,9044,14840,262473],"community":[[20612,9044]],"origin":"IGP","aggregator":"65064:10.100.64.1","announcements":[{"next_hop":"91.206.52.37","prefixes":["177.47.213.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005002000000354001010040021202040000508400002354000039F8000401494003045BCE3425400600C007080000FE280A644001C008045084235418B12FD5"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ad60011","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1031]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0407E0200C0000206A0000000100000407"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"91.206.53.12","peer_asn":"8298","id":"91.206.53.12-01984d132ad60014","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,7195,55211],"community":[[7195,5],[8298,1046]],"origin":"IGP","announcements":[{"next_hop":"91.206.53.12","prefixes":["76.72.161.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A5020000008A4001010040020E02030000206A00001C1B0000D7AB4003045BCE350CC008081C1B0005206A0416C0206000001A27000007770000005900001A27000007780000000000001A27000007790000011400001A270000077A0000009600001C1B000000010000000000001C1B0001D53C0001D53C00001C1B005B8D80000000000000206A0000000100000416184C48A1"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::7f","peer_asn":"20612","id":"2001:7f8:24::7f-01984d132ad60017","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,64289,52025],"community":[[20612,42476],[64289,3000]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::fb21:0:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0096020000007F4001010240020E0203000050840000FB210000CB39C008085084A5ECFB210BB8C0203C0000A5EC00000777000000960000A5EC000007780000001C0000A5EC00000779000002F40000A5EC0000077A000000960000FB2100000BB80000000A900E001C00020110200107F8002400000000FB210000000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"91.206.52.127","peer_asn":"20612","id":"91.206.52.127-01984d132ad6001a","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,8758,52320,53087,53087,53087,53087,52901,52901,52901,52901,52901,263671],"community":[[8758,105],[8758,235],[8758,301],[20612,8758],[52320,42318],[52320,61096]],"origin":"IGP","announcements":[{"next_hop":"91.206.52.2","prefixes":["191.241.129.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00AD020000009240010100400236020D00005084000022360000CC600000CF5F0000CF5F0000CF5F0000CF5F0000CEA50000CEA50000CEA50000CEA50000CEA5000405F74003045BCE3402C0081822360069223600EB2236012D50842236CC60A54ECC60EEA8C0203000001A2700000777000000C400001A27000007780000000400001A27000007790000034800001A270000077A0000001318BFF181"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ad6001d","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"91.206.53.12","peer_asn":"8298","id":"91.206.53.12-01984d132ad60020","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,23947,131736,131111,131736],"community":[[8298,1121],[23947,20]],"origin":"IGP","announcements":[{"next_hop":"91.206.53.12","prefixes":["103.132.12.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006002000000454001010040021602050000206A00005D8B0002029800020027000202984003045BCE350CC00808206A04615D8B0014E0200C0000206A0000000100000461C0230400001A791867840C"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::7f","peer_asn":"20612","id":"2001:7f8:24::7f-01984d132ad60023","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,8758,64289,52025],"community":[[8758,105],[8758,205],[8758,300],[20612,8758],[64289,3000]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::fb21:0:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A6020000008F40010102400212020400005084000022360000FB210000CB39C0081422360069223600CD2236012C50842236FB210BB8C0203C0000A5EC00000777000000960000A5EC000007780000001C0000A5EC00000779000002F40000A5EC0000077A000000960000FB2100000BB80000000A900E001C00020110200107F8002400000000FB210000000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"91.206.52.127","peer_asn":"20612","id":"91.206.52.127-01984d132ad60026","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,9044,1299,12389,8369],"community":[[20612,9044]],"origin":"IGP","announcements":[{"next_hop":"91.206.52.37","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0046020000002B40010100400216020500005084000023540000051300003065000020B14003045BCE3425C008045084235418C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ad60029","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,25091,34927,52025],"community":[[8298,2000],[25091,23407],[65400,34307],[65401,407]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0082020000006B900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240021202040000206A000062030000886F0000CB39C00810206A07D062035B6FFF788603FF790197E0200C0000206A0000000200006203"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"91.206.53.12","peer_asn":"8298","id":"91.206.53.12-01984d132ad6002c","host":"rrc20.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["103.132.12.0/24"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001B0200041867840C0000"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ad6002f","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1056],[65000,50041],[65000,65031],[65000,65101],[65000,65151]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008A0200000073900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0082000001B1B000034170000E077206A0420FDE8C379FDE8FE07FDE8FE4DFDE8FE7FE0200C0000206A0000000100000420"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ad60032","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00000","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1041]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0411E0200C0000206A0000000100000411"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00003","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00006","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00009","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae0000c","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae0000f","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,38158,150242,214028,214028],"community":[[8298,1046],[38158,65030],[65535,1167]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2a0f:85c1:8b9::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00B2020000009B900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302A0F85C108B94001010040021602050000206A0000950E00024AE20003440C0003440CC0080C206A0416950EFE06FFFF048FC0203C00001A27000007770000005900001A27000007780000000000001A27000007790000011400001A270000077A000000960000206A0000000100000416"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00012","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1041]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0411E0200C0000206A0000000100000411"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00015","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00018","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1041]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0411E0200C0000206A0000000100000411"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae0001b","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae0001e","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1041]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0411E0200C0000206A0000000100000411"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00021","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,64289,52025],"community":[[8298,1091],[64289,3000]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0082020000006B900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020E02030000206A0000FB210000CB39C00808206A0443FB210BB8C020180000206A00000001000004430000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00024","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00027","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae0002a","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,25091,34927,52025],"community":[[8298,2000],[25091,23407],[65400,34307],[65401,407]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0082020000006B900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240021202040000206A000062030000886F0000CB39C00810206A07D062035B6FFF788603FF790197E0200C0000206A0000000200006203"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae0002d","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00030","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,38158,150242,214028,214028],"community":[[8298,1046],[38158,65030],[65535,1167]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2a0f:85c1:8b9::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00B2020000009B900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302A0F85C108B94001010040021602050000206A0000950E00024AE20003440C0003440CC0080C206A0416950EFE06FFFF048FC0203C00001A27000007770000005900001A27000007780000000000001A27000007790000011400001A270000077A000000960000206A0000000100000416"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00033","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1041]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0411E0200C0000206A0000000100000411"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00036","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,34927,34927,52025],"community":[[8298,1006],[34927,722],[51706,64601],[51706,64650],[51706,65011],[51706,65012]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00B5020000009E900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240021202040000206A0000886F0000886F0000CB39C00818206A03EE886F02D2C9FAFC59C9FAFC8AC9FAFDF3C9FAFDF4C020300000206A00000001000003EE0000C9FA000003E8000000010000C9FA000003E9000000010000C9FA000003EA00000001C023040000C9FA"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00039","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,25091,52025],"community":[[8298,2000],[25091,23407],[65400,34307],[65401,407]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007E0200000067900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020E02030000206A000062030000CB39C00810206A07D062035B6FFF788603FF790197E0200C0000206A0000000200006203"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae0003c","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae0003f","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1041]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0411E0200C0000206A0000000100000411"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"91.206.53.12","peer_asn":"8298","id":"91.206.53.12-01984d132ebe0000","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,24482,45430,4750],"community":[[8298,1101]],"origin":"IGP","announcements":[{"next_hop":"91.206.53.12","prefixes":["58.137.31.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005102000000364001010040021202040000206A00005FA20000B1760000128E4003045BCE350CE00804206A044DE0200C0000206A000000010000044D183A891F"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:24::7f","peer_asn":"20612","id":"2001:7f8:24::7f-01984d132ebe0003","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,64289,52025],"community":[[20612,42476],[64289,3000]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::fb21:0:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0096020000007F4001010240020E0203000050840000FB210000CB39C008085084A5ECFB210BB8C0203C0000A5EC00000777000000960000A5EC000007780000001C0000A5EC00000779000002F40000A5EC0000077A000000960000FB2100000BB80000000A900E001C00020110200107F8002400000000FB210000000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"91.206.52.127","peer_asn":"20612","id":"91.206.52.127-01984d132ebe0006","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,9044,1299,174,20473,25048],"community":[[20612,9044]],"origin":"IGP","announcements":[{"next_hop":"91.206.52.37","prefixes":["81.90.132.0/24","81.90.133.0/24","81.90.139.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0052020000002F4001010040021A0206000050840000235400000513000000AE00004FF9000061D84003045BCE3425C008045084235418515A8418515A8518515A8B"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"194.68.123.96","peer_asn":"35280","id":"194.68.123.96-01984d132aea0002","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,23947,131736],"community":[[35280,10],[35280,1040],[35280,2080],[35280,3120],[35280,4210],[35280,20000],[35280,21000],[35280,21240]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.96","prefixes":["103.132.12.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0075020000005A4001010040020E0203000089D000005D8B00020298400304C2447B60C0082089D0000A89D0041089D0082089D00C3089D0107289D04E2089D0520889D052F8C02018000089D00000FDE700005D8B000089D00000FDE70000D8DE1867840C"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:d:ff::96","peer_asn":"35280","id":"2001:7f8:d:ff::96-01984d132aea0005","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,6453,2914,20473,40138],"community":[[6453,86],[6453,2000],[6453,2100],[6453,2101],[35280,10],[35280,1010],[35280,2060],[35280,3070],[35280,4070],[35280,10000],[35280,10020]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:d:ff::96,fe80::8a90:900:d7f8:eac5","prefixes":["2402:e580:73ef::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A2020000008B400101004002160205000089D00000193500000B6200004FF900009CCAC0082C19350056193507D0193508341935083589D0000A89D003F289D0080C89D00BFE89D00FE689D0271089D02724C0200C000089D00000FDE700001935900E002C00020120200107F8000D00FF0000000000000096FE800000000000008A900900D7F8EAC500302402E58073EF"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"194.68.123.96","peer_asn":"35280","id":"194.68.123.96-01984d132aea0008","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,6453,3356,9002,214294],"community":[[6453,86],[6453,2000],[6453,2100],[6453,2101],[35280,10],[35280,1010],[35280,2030],[35280,3050],[35280,4060],[35280,10000],[35280,10020]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.96","prefixes":["176.116.6.0/24","195.216.179.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00810200000062400101004002160205000089D00000193500000D1C0000232A00034516400304C2447B60C0082C19350056193507D0193508341935083589D0000A89D003F289D007EE89D00BEA89D00FDC89D0271089D02724C0200C000089D00000FDE70000193518B0740618C3D8B3"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:d:ff::96","peer_asn":"35280","id":"2001:7f8:d:ff::96-01984d132aea000b","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,6453,2914,2914,2914,2914,20473,214160],"community":[[6453,86],[6453,2000],[6453,2100],[6453,2101],[35280,10],[35280,1010],[35280,2060],[35280,3070],[35280,4070],[35280,10000],[35280,10020]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:d:ff::96,fe80::8a90:900:d7f8:eac5","prefixes":["2a14:6:10::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00AE0200000097400101004002220208000089D00000193500000B6200000B6200000B6200000B6200004FF900034490C0082C19350056193507D0193508341935083589D0000A89D003F289D0080C89D00BFE89D00FE689D0271089D02724C0200C000089D00000FDE700001935900E002C00020120200107F8000D00FF0000000000000096FE800000000000008A900900D7F8EAC500302A1400060010"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"194.68.123.96","peer_asn":"35280","id":"194.68.123.96-01984d132aea000e","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,6939,12389,8369],"community":[[35280,20],[35280,1010],[35280,2150],[35280,3230],[35280,4080],[35280,20000],[35280,21000],[35280,21410]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.187","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0079020000005E400101004002120204000089D000001B1B00003065000020B1400304C2447BBBC0082089D0001489D003F289D0086689D00C9E89D00FF089D04E2089D0520889D053A2C02018000089D00000FDE700001B1B000089D00000FDE70000CB2518C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:d:ff::96","peer_asn":"35280","id":"2001:7f8:d:ff::96-01984d132aea0011","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,1299,174,53667,202256],"community":[[1299,20000],[35280,10],[35280,1010],[35280,2150],[35280,3230],[35280,4080],[35280,10000],[35280,10010]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:d:ff::96,fe80::8a90:900:d7f8:eac5","prefixes":["2a06:de02:6f3::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0096020000007F400101004002160205000089D000000513000000AE0000D1A300031610C0082005134E2089D0000A89D003F289D0086689D00C9E89D00FF089D0271089D0271AC0200C000089D00000FDE700000513900E002C00020120200107F8000D00FF0000000000000096FE800000000000008A900900D7F8EAC500302A06DE0206F3"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:d:ff::96","peer_asn":"35280","id":"2001:7f8:d:ff::96-01984d132aea0014","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,64289,52025],"community":[[35280,10],[35280,1010],[35280,2060],[35280,3070],[35280,4070],[35280,20000],[35280,21000],[35280,21050],[35280,24000],[64289,3000]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:d:ff::96,fe80::8a90:900:d7f8:eac5","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00D202000000BB4001010240020E0203000089D00000FB210000CB39C0082889D0000A89D003F289D0080C89D00BFE89D00FE689D04E2089D0520889D0523A89D05DC0FB210BB8C0204800001A27000007770000005900001A27000007780000000000001A27000007790000011400001A270000077A00000096000089D00000FDE700001A270000FB2100000BB80000000A900E002C00020120200107F8000D00FF0000000000000096FE800000000000008A900900D7F8EAC500302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:7f8:d:ff::96","peer_asn":"35280","id":"2001:7f8:d:ff::96-01984d132ed20001","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,2914,6453,64289,52025],"community":[[2914,420],[2914,1404],[2914,2405],[2914,3400],[35280,10],[35280,1010],[35280,2150],[35280,3230],[35280,4080],[35280,10000],[35280,10030]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:d:ff::96,fe80::8a90:900:d7f8:eac5","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A2020000008B400101004002160205000089D000000B62000019350000FB210000CB39C0082C0B6201A40B62057C0B6209650B620D4889D0000A89D003F289D0086689D00C9E89D00FF089D0271089D0272EC0200C000089D00000FDE700000B62900E002C00020120200107F8000D00FF0000000000000096FE800000000000008A900900D7F8EAC500302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.96","peer_asn":"35280","id":"194.68.123.96-01984d132ed20004","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,3356,174,20473,25048],"community":[[3356,2],[3356,22],[3356,86],[3356,507],[3356,666],[3356,901],[3356,2111],[35280,10],[35280,1010],[35280,2150],[35280,3230],[35280,4080],[35280,10000],[35280,10040]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.96","prefixes":["81.90.139.0/24","81.90.133.0/24","81.90.132.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0091020000006E400101004002160205000089D000000D1C000000AE00004FF9000061D8400304C2447B60C008380D1C00020D1C00160D1C00560D1C01FB0D1C029A0D1C03850D1C083F89D0000A89D003F289D0086689D00C9E89D00FF089D0271089D02738C0200C000089D00000FDE700000D1C18515A8B18515A8518515A84"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.96","peer_asn":"35280","id":"194.68.123.96-01984d132ed20007","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,1299,174,264409,11432],"community":[[1299,25000],[35280,10],[35280,1010],[35280,2030],[35280,3050],[35280,4060],[35280,10000],[35280,10010]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.96","prefixes":["200.155.182.0/24","200.155.183.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00750200000056400101004002160205000089D000000513000000AE000408D900002CA8400304C2447B60C00820051361A889D0000A89D003F289D007EE89D00BEA89D00FDC89D0271089D0271AC0200C000089D00000FDE70000051318C89BB618C89BB7"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.96","peer_asn":"35280","id":"194.68.123.96-01984d132ed2000a","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,7713,23947,131736],"community":[[35280,10],[35280,1040],[35280,2190],[35280,3310],[35280,4330],[35280,10000],[35280,10120]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.96","prefixes":["103.132.12.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0069020000004E400101004002120204000089D000001E2100005D8B00020298400304C2447B60C0081C89D0000A89D0041089D0088E89D00CEE89D010EA89D0271089D02788C0200C000089D00000FDE700001E211867840C"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.96","peer_asn":"35280","id":"194.68.123.96-01984d132ed2000d","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,2914,267613,263069],"community":[[2914,410],[2914,1601],[2914,2601],[2914,3600],[35280,10],[35280,1010],[35280,2150],[35280,3230],[35280,4080],[35280,10000],[35280,10030]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.96","prefixes":["168.0.128.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0079020000005E400101004002120204000089D000000B620004155D0004039D400304C2447B60C0082C0B62019A0B6206410B620A290B620E1089D0000A89D003F289D0086689D00C9E89D00FF089D0271089D0272EC0200C000089D00000FDE700000B6216A80080"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ebe0009","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,38158,150242,214028,214028],"community":[[8298,1121],[38158,65030],[65535,1167]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2a0f:85c1:8b9::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00890200000072900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302A0F85C108B94001010040021602050000206A0000950E00024AE20003440C0003440CC0080C206A0461950EFE06FFFF048FE0200C0000206A0000000100000461C0230400001A79"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"91.206.53.12","peer_asn":"8298","id":"91.206.53.12-01984d132ebe000c","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,8283,38930,16265,262535],"community":[[8283,14],[8298,2010]],"origin":"IGP","announcements":[{"next_hop":"91.206.53.12","prefixes":["177.84.215.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0065020000004A4001010040021602050000206A0000205B0000981200003F89000401874003045BCE350CC00808205B000E206A07DAC020180000205B000000060000000E0000206A000000020000205B18B154D7"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:24::7f","peer_asn":"20612","id":"2001:7f8:24::7f-01984d132ebe000f","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,8758,33891,64289,52025],"community":[[8758,105],[8758,200],[8758,301],[20612,8758],[33891,33892],[33891,40001],[64289,3000]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::bf","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0082020000006B4001010240021602050000508400002236000084630000FB210000CB39C0081C22360069223600C82236012D508422368463846484639C41FB210BB8C0200C0000FB2100000BB80000000A900E001C00020110200107F80024000000000000000000BF00302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"91.206.52.127","peer_asn":"20612","id":"91.206.52.127-01984d132ebe0012","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,9044,267613,263069],"community":[[20612,9044]],"origin":"IGP","announcements":[{"next_hop":"91.206.52.37","prefixes":["168.0.128.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0049020000002E40010100400212020400005084000023540004155D0004039D4003045BCE3425C0080450842354E0230400001A7916A80080"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ebe0015","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,38158,150242,214028,214028],"community":[[8298,1046],[38158,65030],[65535,1167]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2a0f:85c1:8b9::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00B2020000009B900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302A0F85C108B94001010040021602050000206A0000950E00024AE20003440C0003440CC0080C206A0416950EFE06FFFF048FC0203C00001A27000007770000005900001A27000007780000000000001A27000007790000011400001A270000077A000000960000206A0000000100000416"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"91.206.53.12","peer_asn":"8298","id":"91.206.53.12-01984d132ebe0018","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,9318,38684,38684,38684,38684,38684,38684,38684],"community":[[8298,1046]],"origin":"IGP","announcements":[{"next_hop":"91.206.53.12","prefixes":["124.195.190.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0095020000007A4001010040022602090000206A000024660000971C0000971C0000971C0000971C0000971C0000971C0000971C4003045BCE350CE00804206A0416C0203C00001A27000007770000005200001A27000007780000000000001A27000007790000011400001A270000077A000000960000206A0000000100000416187CC3BE"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:24::7f","peer_asn":"20612","id":"2001:7f8:24::7f-01984d132ebe001b","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,8758,34927,34927,52025],"community":[[8758,105],[8758,225],[8758,301],[20612,8758],[34927,722]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::2","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0072020000005B40010102400216020500005084000022360000886F0000886F0000CB39C0081422360069223600E12236012D50842236886F02D2E0230400001A79900E001C00020110200107F800240000000000000000000200302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"91.206.52.127","peer_asn":"20612","id":"91.206.52.127-01984d132ebe001e","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,9044,1299,9318,38684,38684,38684,38684,38684,38684,38684],"community":[[20612,9044]],"origin":"IGP","announcements":[{"next_hop":"91.206.52.37","prefixes":["124.195.190.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005E02000000434001010040022E020B000050840000235400000513000024660000971C0000971C0000971C0000971C0000971C0000971C0000971C4003045BCE3425C0080450842354187CC3BE"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ebe0021","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"91.206.53.12","peer_asn":"8298","id":"91.206.53.12-01984d132ebe0024","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,51088,2914,9457,38684],"community":[[2914,410],[2914,1408],[2914,2401],[2914,3400],[8298,2020],[51088,2914]],"origin":"IGP","announcements":[{"next_hop":"91.206.53.12","prefixes":["124.195.190.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0069020000004E4001010040021602050000206A0000C79000000B62000024F10000971C4003045BCE350CC008180B62019A0B6205800B6209610B620D48206A07E4C7900B62E0200C0000206A000000020000C790187CC3BE"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ebe0027","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::7f","peer_asn":"20612","id":"2001:7f8:24::7f-01984d132ec80001","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,9044,1299,3356,3549,28598],"community":[[20612,9044]],"origin":"IGP","aggregator":"28598:138.122.80.84","announcements":[{"next_hop":"2001:7f8:24::25","prefixes":["2804:248:100::/40"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006C02000000554001010040021A020600005084000023540000051300000D1C00000DDD00006FB6400600C0070800006FB68A7A5054C0080450842354900E001B00020110200107F800240000000000000000002500282804024801"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80004","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,38158,150242,214028,214028],"community":[[8298,1121],[38158,65030],[65535,1167]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2a0f:85c1:8b9::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00890200000072900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302A0F85C108B94001010040021602050000206A0000950E00024AE20003440C0003440CC0080C206A0461950EFE06FFFF048FE0200C0000206A0000000100000461C0230400001A79"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80007","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,25091,34927,52025],"community":[[8298,2000],[25091,23407],[65400,34307],[65401,407]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0082020000006B900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240021202040000206A000062030000886F0000CB39C00810206A07D062035B6FFF788603FF790197E0200C0000206A0000000200006203"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8000a","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,58299,52025],"community":[[8298,2005],[58299,1100]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0076020000005F900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020E02030000206A0000E3BB0000CB39C00808206A07D5E3BB044CE0200C0000206A000000020000E3BB"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8000d","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80010","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80013","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80016","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80019","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8001c","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8001f","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1041]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0411E0200C0000206A0000000100000411"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80022","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1056],[65000,50041],[65000,65031],[65000,65101],[65000,65151]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008A0200000073900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0082000001B1B000034170000E077206A0420FDE8C379FDE8FE07FDE8FE4DFDE8FE7FE0200C0000206A0000000100000420"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80025","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80028","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,64289,52025],"community":[[8298,1111],[64289,3000]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0082020000006B900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020E02030000206A0000FB210000CB39C00808206A0457FB210BB8C020180000206A00000001000004570000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8002b","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8002e","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1041]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0411E0200C0000206A0000000100000411"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80031","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80034","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1056],[65000,50041],[65000,65031],[65000,65101],[65000,65151]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008A0200000073900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0082000001B1B000034170000E077206A0420FDE8C379FDE8FE07FDE8FE4DFDE8FE7FE0200C0000206A0000000100000420"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80037","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1041]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0411E0200C0000206A0000000100000411"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8003a","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,34927,52025],"community":[[8298,1056],[34927,722],[65000,52054],[65000,65031],[65000,65101],[65000,65151]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0086020000006F900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020E02030000206A0000886F0000CB39C00818206A0420886F02D2FDE8CB56FDE8FE07FDE8FE4DFDE8FE7FE0200C0000206A0000000100000420"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8003d","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80040","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,58299,52025],"community":[[8298,2005],[58299,1100]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0076020000005F900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020E02030000206A0000E3BB0000CB39C00808206A07D5E3BB044CE0200C0000206A000000020000E3BB"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80043","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80046","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1056],[65000,50041],[65000,65031],[65000,65101],[65000,65151]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008A0200000073900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0082000001B1B000034170000E077206A0420FDE8C379FDE8FE07FDE8FE4DFDE8FE7FE0200C0000206A0000000100000420"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80049","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8004c","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1056],[65000,50041],[65000,65031],[65000,65101],[65000,65151]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008A0200000073900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0082000001B1B000034170000E077206A0420FDE8C379FDE8FE07FDE8FE4DFDE8FE7FE0200C0000206A0000000100000420"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8004f","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80052","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,28458],"community":[[8298,1046]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2806:202::/32"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009C0200000085900E002A00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE3246160020280602024001010040020A02020000206A00006F2AE00804206A0416C0203C00001A2700000777000000D000001A27000007780000000800001A27000007790000034800001A270000077A000000130000206A0000000100000416"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80055","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639759.580,"peer":"198.32.176.147","peer_asn":"14061","id":"198.32.176.147-01984d132edc0000","host":"rrc14.ripe.net","type":"KEEPALIVE","raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001304"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"2001:12f8::20","peer_asn":"28571","id":"2001:12f8::20-01984d132b080002","host":"rrc15.ripe.net","type":"UPDATE","path":[28571,1251,15830,3356,6453,19905],"community":[[15830,400],[15830,3356],[15830,3425]],"origin":"IGP","announcements":[{"next_hop":"2001:12f8::20,fe80::ae4b:c804:b184:d7c1","prefixes":["2610:a1:1028::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007702000000604001010040021A020600006F9B000004E300003DD600000D1C0000193500004DC1C0080C3DD601903DD60D1C3DD60D61900E002C00020120200112F8000000000000000000000020FE80000000000000AE4BC804B184D7C10030261000A11028"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"187.16.214.32","peer_asn":"60503","id":"187.16.214.32-01984d132b080005","host":"rrc15.ripe.net","type":"UPDATE","path":[60503,16735,14282,14282,262645,263561],"community":[[16735,7000],[16735,7204],[26162,16735],[26162,64661],[26162,64671],[26162,64685],[26162,65011],[26162,65111],[26162,65121],[26162,65132],[64601,11344],[64601,36561],[64601,43515],[60503,1000]],"origin":"IGP","announcements":[{"next_hop":"187.16.214.32","prefixes":["186.251.12.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF016C02000001514001010040021A02060000EC570000415F000037CA000037CA000401F500040589400304BB10D620C00838415F1B58415F1C246632415F6632FC956632FC9F6632FCAD6632FDF36632FE576632FE616632FE6CFC592C50FC598ED1FC59A9FBEC5703E8C01088000266320000415F000266320000FC95000266320000FC9F000266320000FCAD000266320000FDF3000266320000FE57000266320000FE61000266320000FE6C0002FC5B000401BD000366320000415F000366320000FC95000366320000FC9F000366320000FCAD000366320000FDF3000366320000FE57000366320000FE61000366320000FE6CC0206000006632000000000000415F00006632000000000000FDF300006632000000640000000100006632000000C800000001000066320000012C00000002000066320000029400000001000066320000029E0000000100006632000002A80000000516BAFB0C"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"2001:12f8::20","peer_asn":"28571","id":"2001:12f8::20-01984d132b080008","host":"rrc15.ripe.net","type":"UPDATE","path":[28571,1251,15830,3356,16509,8987],"community":[[15830,400],[15830,3356],[15830,3425]],"origin":"IGP","announcements":[{"next_hop":"2001:12f8::20,fe80::ae4b:c804:b184:d7c1","prefixes":["2605:9cc0:c0d::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007702000000604001010040021A020600006F9B000004E300003DD600000D1C0000407D0000231BC0080C3DD601903DD60D1C3DD60D61900E002C00020120200112F8000000000000000000000020FE80000000000000AE4BC804B184D7C1003026059CC00C0D"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"2001:12f8::20","peer_asn":"28571","id":"2001:12f8::20-01984d132b08000b","host":"rrc15.ripe.net","type":"UPDATE","path":[28571,1251,15830,12956,6453,4755,20473,40138],"community":[[15830,400],[15830,3425],[15830,12956]],"origin":"IGP","announcements":[{"next_hop":"2001:12f8::20,fe80::ae4b:c804:b184:d7c1","prefixes":["2402:e580:74ba::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007F020000006840010100400222020800006F9B000004E300003DD60000329C000019350000129300004FF900009CCAC0080C3DD601903DD60D613DD6329C900E002C00020120200112F8000000000000000000000020FE80000000000000AE4BC804B184D7C100302402E58074BA"}} +{"type":"ris_message","data":{"timestamp":1753639759.600,"peer":"2001:12f8::20","peer_asn":"28571","id":"2001:12f8::20-01984d132ef00001","host":"rrc15.ripe.net","type":"UPDATE","path":[28571,61610,53062,3356,2914,137990,140731,140731,140731,140731,140731,140731,140731,140731,140731],"community":[[53062,10072],[53062,10074],[53062,30091],[61610,510],[61610,4000],[61610,5101]],"origin":"IGP","announcements":[{"next_hop":"2001:12f8::20,fe80::ae4b:c804:b184:d7c1","prefixes":["2406:840:9203::/48","2406:840:eb83::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00AE02000000974001010040023E020F00006F9B0000F0AA0000CF4600000D1C00000B6200021B06000225BB000225BB000225BB000225BB000225BB000225BB000225BB000225BB000225BBC00818CF462758CF46275ACF46758BF0AA01FEF0AA0FA0F0AA13ED900E003300020120200112F8000000000000000000000020FE80000000000000AE4BC804B184D7C100302406084092033024060840EB83"}} +{"type":"ris_message","data":{"timestamp":1753639759.600,"peer":"2001:12f8::20","peer_asn":"28571","id":"2001:12f8::20-01984d132ef00004","host":"rrc15.ripe.net","type":"UPDATE","path":[28571,61610,53062,52320,12956,1299,22616],"community":[[53062,10072],[53062,10257],[53062,30091],[61610,510],[61610,4000],[61610,5101]],"origin":"IGP","announcements":[{"next_hop":"2001:12f8::20,fe80::ae4b:c804:b184:d7c1","prefixes":["2a03:eec0:3212::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008702000000704001010040021E020700006F9B0000F0AA0000CF460000CC600000329C0000051300005858C00818CF462758CF462811CF46758BF0AA01FEF0AA0FA0F0AA13ED900E002C00020120200112F8000000000000000000000020FE80000000000000AE4BC804B184D7C100302A03EEC03212"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"196.60.9.84","peer_asn":"37697","id":"196.60.9.84-01984d132b080002","host":"rrc19.ripe.net","type":"UPDATE","path":[37697,37497,1299,3356,7303,10481,64123,271796],"community":[[1299,20000],[37497,4003],[37697,2000]],"origin":"IGP","announcements":[{"next_hop":"196.60.9.84","prefixes":["179.51.204.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005A020000003F40010100400222020800009341000092790000051300000D1C00001C87000028F10000FA7B000425B4400304C43C0954C0080C05134E2092790FA3934107D018B333CC"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"196.60.8.178","peer_asn":"37271","id":"196.60.8.178-01984d132b080005","host":"rrc19.ripe.net","type":"UPDATE","path":[37271,6939,12389,8369],"community":[[37271,1005],[37271,2150],[37271,2154],[37271,3826],[37271,4004],[37271,5002],[37271,5200],[37271,5207]],"origin":"IGP","med":1910,"announcements":[{"next_hop":"196.60.8.178","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0065020000004A4001010040021202040000919700001B1B00003065000020B1400304C43C08B280040400000776C00820919703ED919708669197086A91970EF291970FA49197138A919714509197145718C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"2001:43f8:6d0::9:165","peer_asn":"917","id":"2001:43f8:6d0::9:165-01984d132b080008","host":"rrc19.ripe.net","type":"UPDATE","path":[917,60068,174,28458],"community":[[174,21001],[174,22027],[917,59001],[57695,13000],[60068,204],[60068,2000],[60068,2010],[60068,7180]],"origin":"IGP","announcements":[{"next_hop":"2001:43f8:6d0::9:165","prefixes":["2806:202::/32"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0071020000005A400101004002120204000003950000EAA4000000AE00006F2AC0082000AE520900AE560B0395E679E15F32C8EAA400CCEAA407D0EAA407DAEAA41C0C900E001A00020110200143F806D000000000000000090165002028060202"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"2001:43f8:6d0::9:165","peer_asn":"917","id":"2001:43f8:6d0::9:165-01984d132b08000b","host":"rrc19.ripe.net","type":"UPDATE","path":[917,60068,174,6461,6461,6461,6461,4637,4637,4637,4637,20473,40138],"community":[[174,21000],[174,22013],[917,59001],[57695,13000],[60068,204],[60068,2000],[60068,2010],[60068,7180]],"origin":"IGP","announcements":[{"next_hop":"2001:43f8:6d0::9:165","prefixes":["2402:e580:74b3::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0097020000008040010100400236020D000003950000EAA4000000AE0000193D0000193D0000193D0000193D0000121D0000121D0000121D0000121D00004FF900009CCAC0082000AE520800AE55FD0395E679E15F32C8EAA400CCEAA407D0EAA407DAEAA41C0C900E001C00020110200143F806D00000000000000009016500302402E58074B3"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"2001:43f8:6d0::9:165","peer_asn":"917","id":"2001:43f8:6d0::9:165-01984d132b08000e","host":"rrc19.ripe.net","type":"UPDATE","path":[917,60068,37468,12956,6453,19905],"community":[[917,59001],[12956,4001],[12956,4012],[12956,4030],[12956,4120],[12956,4302],[37468,1000],[37468,1007],[37468,1300],[37468,1327],[37468,13000],[37468,13100],[37468,13102],[37468,37468],[57695,13000],[60068,204],[60068,2000],[60068,2330],[60068,7180]],"origin":"IGP","announcements":[{"next_hop":"2001:43f8:6d0::9:165","prefixes":["2610:a1:1028::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A702000000904001010040021A0206000003950000EAA40000925C0000329C0000193500004DC1C0084C0395E679329C0FA1329C0FAC329C0FBE329C1018329C10CE925C03E8925C03EF925C0514925C052F925C32C8925C332C925C332E925C925CE15F32C8EAA400CCEAA407D0EAA4091AEAA41C0C900E001C00020110200143F806D0000000000000000901650030261000A11028"}} +{"type":"ris_message","data":{"timestamp":1753639759.600,"peer":"196.60.9.84","peer_asn":"37697","id":"196.60.9.84-01984d132ef00002","host":"rrc19.ripe.net","type":"UPDATE","path":[37697,37497,3356,6453,22356,22356,22356,13786,264409,11432],"community":[[3356,2],[3356,22],[3356,86],[3356,500],[3356,666],[3356,901],[3356,2064],[37497,4004],[37697,2000]],"origin":"IGP","announcements":[{"next_hop":"196.60.9.84","prefixes":["200.155.183.0/24","200.155.182.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007E020000005F4001010040022A020A000093410000927900000D1C00001935000057540000575400005754000035DA000408D900002CA8400304C43C0954C008240D1C00020D1C00160D1C00560D1C01F40D1C029A0D1C03850D1C081092790FA4934107D018C89BB718C89BB6"}} +{"type":"ris_message","data":{"timestamp":1753639759.600,"peer":"196.60.8.178","peer_asn":"37271","id":"196.60.8.178-01984d132ef00005","host":"rrc19.ripe.net","type":"UPDATE","path":[37271,9002,200019],"community":[[37271,1002],[37271,2035],[37271,2142],[37271,3702],[37271,4008],[37271,5002],[37271,5200],[37271,5214]],"origin":"IGP","med":2610,"announcements":[{"next_hop":"196.60.8.178","prefixes":["176.123.2.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006102000000464001010040020E0203000091970000232A00030D53400304C43C08B280040400000A32C00820919703EA919707F39197085E91970E7691970FA89197138A919714509197145E18B07B02"}} +{"type":"ris_message","data":{"timestamp":1753639759.600,"peer":"2001:43f8:6d0::9:165","peer_asn":"917","id":"2001:43f8:6d0::9:165-01984d132ef00008","host":"rrc19.ripe.net","type":"UPDATE","path":[917,60068,37468,34927,52025],"community":[[917,59001],[34927,722],[37468,2000],[37468,2200],[37468,2260],[37468,2262],[37468,12000],[37468,12600],[37468,12601],[37468,12602],[37468,37468],[57695,13000],[60068,204],[60068,2000],[60068,2330],[60068,7180],[65000,52054],[65000,65031],[65000,65101],[65000,65151]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:43f8:6d0::9:165","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A70200000090400101024002160205000003950000EAA40000925C0000886F0000CB39C008500395E679886F02D2925C07D0925C0898925C08D4925C08D6925C2EE0925C3138925C3139925C313A925C925CE15F32C8EAA400CCEAA407D0EAA4091AEAA41C0CFDE8CB56FDE8FE07FDE8FE4DFDE8FE7F900E001C00020110200143F806D00000000000000009016500302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.600,"peer":"196.60.9.165","peer_asn":"917","id":"196.60.9.165-01984d132ef0000b","host":"rrc19.ripe.net","type":"UPDATE","path":[917,60068,174,20473,25048],"community":[[174,21101],[174,22012],[917,59001],[57695,13000],[60068,204],[60068,2000],[60068,2010],[60068,7180]],"origin":"INCOMPLETE","announcements":[{"next_hop":"196.60.9.165","prefixes":["81.90.133.0/24","81.90.139.0/24","81.90.132.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00790200000056400101024002160205000003950000EAA4000000AE00004FF9000061D8400304C43C09A5C0082000AE526D00AE55FC0395E679E15F32C8EAA400CCEAA407D0EAA407DAEAA41C0CC0200C00004FF900000000BBCDCA8718515A8518515A8B18515A84"}} +{"type":"ris_message","data":{"timestamp":1753639759.610,"peer":"2001:43f8:6d0::178","peer_asn":"37271","id":"2001:43f8:6d0::178-01984d132efa0001","host":"rrc19.ripe.net","type":"UPDATE","path":[37271,33891,64289,52025],"community":[[33891,33892],[33891,40001],[37271,1005],[37271,2150],[37271,2154],[37271,3826],[37271,4004],[37271,5002],[37271,5200],[37271,5207],[64289,3000]],"origin":"INCOMPLETE","med":1910,"announcements":[{"next_hop":"2001:43f8:6d0::178","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0086020000006F40010102400212020400009197000084630000FB210000CB3980040400000776C0082C8463846484639C41919703ED919708669197086A91970EF291970FA49197138A9197145091971457FB210BB8900E001C00020110200143F806D00000000000000000017800302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.610,"peer":"2001:43f8:6d0::178","peer_asn":"37271","id":"2001:43f8:6d0::178-01984d132efa0004","host":"rrc19.ripe.net","type":"UPDATE","path":[37271,33891,64289,52025],"community":[[33891,33892],[33891,40001],[37271,1005],[37271,2150],[37271,2155],[37271,3276],[37271,4005],[37271,5002],[37271,5200],[37271,5210],[64289,3000]],"origin":"INCOMPLETE","med":2010,"announcements":[{"next_hop":"2001:43f8:6d0::178","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0086020000006F40010102400212020400009197000084630000FB210000CB39800404000007DAC0082C8463846484639C41919703ED919708669197086B91970CCC91970FA59197138A919714509197145AFB210BB8900E001C00020110200143F806D00000000000000000017800302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.610,"peer":"196.60.8.178","peer_asn":"37271","id":"196.60.8.178-01984d132efa0007","host":"rrc19.ripe.net","type":"UPDATE","path":[37271,174,52468,28370,28370,28370,28657],"community":[[174,21301],[174,22042],[37271,5002],[37271,5100],[37271,5102]],"origin":"IGP","med":1910,"announcements":[{"next_hop":"196.60.8.178","prefixes":["138.99.97.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0065020000004A4001010040021E020700009197000000AE0000CCF400006ED200006ED200006ED200006FF1400304C43C08B280040400000776C0081400AE533500AE561A9197138A919713EC919713EE188A6361"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2803:4dc0:50::1","peer_asn":"265721","id":"2803:4dc0:50::1-01984d132ae00001","host":"rrc24.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2610:a1:1028:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0024020000000D800F0A00020130261000A11028"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2803:4dc0:50::1","peer_asn":"265721","id":"2803:4dc0:50::1-01984d132ec80001","host":"rrc24.ripe.net","type":"UPDATE","path":[265721,64126,1299,6453,16509,8987],"community":[],"origin":"IGP","announcements":[{"next_hop":"2803:4dc0:50::1","prefixes":["2605:9cc0:c0d::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005702000000404001010040021A020600040DF90000FA7E00000513000019350000407D0000231B800E1C0002011028034DC0005000000000000000000001003026059CC00C0D"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"45.65.244.1","peer_asn":"265721","id":"45.65.244.1-01984d132ec80004","host":"rrc24.ripe.net","type":"UPDATE","path":[265721,64126,1299,12389,8369],"community":[],"origin":"IGP","announcements":[{"next_hop":"45.65.244.1","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003F020000002440010100400216020500040DF90000FA7E0000051300003065000020B14003042D41F40118C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"45.65.244.1","peer_asn":"265721","id":"45.65.244.1-01984d132ec80007","host":"rrc24.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["41.220.80.0/20","41.220.80.0/22","41.220.84.0/22","41.220.92.0/22","41.220.88.0/22"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF002B0200141429DC501629DC501629DC541629DC5C1629DC580000"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"210.171.225.146","peer_asn":"64096","id":"210.171.225.146-01984d132ebe0000","host":"rrc06.ripe.net","type":"KEEPALIVE","raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001304"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"195.66.224.81","peer_asn":"1828","id":"195.66.224.81-01984d132aea0001","host":"rrc01.ripe.net","type":"UPDATE","path":[1828,23947,131736],"community":[[1828,20],[1828,24401]],"origin":"IGP","announcements":[{"next_hop":"195.66.224.81","prefixes":["103.132.12.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004202000000274001010040020E02030000072400005D8B00020298400304C342E051C008080724001407245F511867840C"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"195.66.226.97","peer_asn":"39122","id":"195.66.226.97-01984d132aea0004","host":"rrc01.ripe.net","type":"UPDATE","path":[39122,24482,45430,4750],"community":[[0,45430]],"origin":"IGP","med":0,"announcements":[{"next_hop":"195.66.226.97","prefixes":["58.137.31.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0049020000002E400101004002120204000098D200005FA20000B1760000128E400304C342E26180040400000000C008040000B176183A891F"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"195.66.224.81","peer_asn":"1828","id":"195.66.224.81-01984d132aea0007","host":"rrc01.ripe.net","type":"UPDATE","path":[1828,6461,6453,22356,22356,22356,13786,264409,11432],"community":[[1828,10],[1828,13301]],"origin":"IGP","announcements":[{"next_hop":"195.66.224.81","prefixes":["200.155.182.0/24","200.155.183.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005E020000003F400101004002260209000007240000193D00001935000057540000575400005754000035DA000408D900002CA8400304C342E051C008080724000A072433F518C89BB618C89BB7"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:4::98d2:1","peer_asn":"39122","id":"2001:7f8:4::98d2:1-01984d132aea000a","host":"rrc01.ripe.net","type":"UPDATE","path":[39122,52025],"community":[[0,6939],[0,13335],[0,57463]],"origin":"IGP","med":0,"announcements":[{"next_hop":"2001:7f8:4::98d2:1,fe80::f2d7:afff:fe2a:aaaa","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006E02000000574001010040020A0202000098D20000CB3980040400000000C0080C00001B1B000034170000E077900E002C00020120200107F8000400000000000098D20001FE80000000000000F2D7AFFFFE2AAAAA00302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"195.66.226.97","peer_asn":"39122","id":"195.66.226.97-01984d132aea000d","host":"rrc01.ripe.net","type":"UPDATE","path":[39122,1299,4637,4637,4637,4637,7568,4750],"community":[[1299,430],[1299,1000],[1299,2509],[1299,2569],[1299,2699],[1299,35000],[1299,35200]],"origin":"IGP","med":0,"announcements":[{"next_hop":"195.66.226.97","prefixes":["58.137.31.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00710200000056400101004002220208000098D2000005130000121D0000121D0000121D0000121D00001D900000128E400304C342E26180040400000000C0081C051301AE051303E8051309CD05130A0905130A8B051388B805138980183A891F"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"195.66.224.81","peer_asn":"1828","id":"195.66.224.81-01984d132aea0010","host":"rrc01.ripe.net","type":"UPDATE","path":[1828,23947,131736],"community":[[1828,20],[1828,21101]],"origin":"IGP","announcements":[{"next_hop":"195.66.224.81","prefixes":["103.132.12.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004202000000274001010040020E02030000072400005D8B00020298400304C342E051C00808072400140724526D1867840C"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:4::724:1","peer_asn":"1828","id":"2001:7f8:4::724:1-01984d132aea0013","host":"rrc01.ripe.net","type":"UPDATE","path":[1828,34927,34927,52025],"community":[[1828,20],[1828,23306]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:4::724:1,fe80::fe0a:81ff:fefe:b932","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00980200000081400101004002120204000007240000886F0000886F0000CB39C008080724001407245B0AC020240000C9FA000003E8000000010000C9FA000003E9000000010000C9FA000003EA00000001E023040000C9FA800E2C00020120200107F8000400000000000007240001FE80000000000000FE0A81FFFEFEB93200302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:4::98d2:1","peer_asn":"39122","id":"2001:7f8:4::98d2:1-01984d132aea0016","host":"rrc01.ripe.net","type":"UPDATE","path":[39122,1299,16509,8987],"community":[[1299,430],[1299,1000],[1299,35000],[1299,35400]],"origin":"IGP","med":0,"announcements":[{"next_hop":"2001:7f8:4::98d2:1,fe80::f2d7:afff:fe2a:aaaa","prefixes":["2605:9cc0:c0d::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063400101004002120204000098D2000005130000407D0000231B80040400000000C00810051301AE051303E8051388B805138A48900E002C00020120200107F8000400000000000098D20001FE80000000000000F2D7AFFFFE2AAAAA003026059CC00C0D"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"195.66.226.97","peer_asn":"39122","id":"195.66.226.97-01984d132aea0019","host":"rrc01.ripe.net","type":"UPDATE","path":[39122,174,262645,263561],"community":[[174,21301],[174,22042]],"origin":"IGP","med":0,"announcements":[{"next_hop":"195.66.226.97","prefixes":["186.251.12.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004D0200000032400101004002120204000098D2000000AE000401F500040589400304C342E26180040400000000C0080800AE533500AE561A16BAFB0C"}} +{"type":"ris_message","data":{"timestamp":1753639758.580,"peer":"195.66.224.81","peer_asn":"1828","id":"195.66.224.81-01984d132af40002","host":"rrc01.ripe.net","type":"UPDATE","path":[1828,174,262645,263561],"community":[[1828,10],[1828,13301]],"origin":"IGP","announcements":[{"next_hop":"195.66.224.81","prefixes":["186.251.12.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0046020000002B40010100400212020400000724000000AE000401F500040589400304C342E051C008080724000A072433F516BAFB0C"}} +{"type":"ris_message","data":{"timestamp":1753639758.580,"peer":"2001:7f8:4::724:1","peer_asn":"1828","id":"2001:7f8:4::724:1-01984d132af40005","host":"rrc01.ripe.net","type":"UPDATE","path":[1828,38158,150242,214028,214028],"community":[[1828,20],[1828,24402]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:4::724:1,fe80::fe0a:81ff:fefe:b932","prefixes":["2a0f:85c1:8b9::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006E0200000057400101004002160205000007240000950E00024AE20003440C0003440CC008080724001407245F52800E2C00020120200107F8000400000000000007240001FE80000000000000FE0A81FFFEFEB93200302A0F85C108B9"}} +{"type":"ris_message","data":{"timestamp":1753639758.580,"peer":"2001:7f8:4::98d2:1","peer_asn":"39122","id":"2001:7f8:4::98d2:1-01984d132af40008","host":"rrc01.ripe.net","type":"UPDATE","path":[39122,1299,6453,4755,45820,58419],"community":[[1299,430],[1299,4000],[1299,20000],[1299,20730]],"origin":"IGP","med":0,"announcements":[{"next_hop":"2001:7f8:4::98d2:1,fe80::f2d7:afff:fe2a:aaaa","prefixes":["2620:131:3008::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0082020000006B4001010040021A0206000098D20000051300001935000012930000B2FC0000E43380040400000000C00810051301AE05130FA005134E20051350FA900E002C00020120200107F8000400000000000098D20001FE80000000000000F2D7AFFFFE2AAAAA0030262001313008"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8::e3bb:0:1","peer_asn":"58299","id":"2001:7f8::e3bb:0:1-01984d132ad60001","host":"rrc12.ripe.net","type":"UPDATE","path":[58299,52025],"community":[[58299,1100]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8::e3bb:0:1,fe80::3eec:efff:fe46:697d","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00600200000049900E002C00020120200107F8000000000000E3BB00000001FE800000000000003EECEFFFFE46697D00302602FA7E0017400101025002000A02020000E3BB0000CB39C00804E3BB044C"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8::fbdb:0:1","peer_asn":"64475","id":"2001:7f8::fbdb:0:1-01984d132ad60004","host":"rrc12.ripe.net","type":"UPDATE","path":[64475,52025,52025,52025,52025],"community":[[0,6939],[0,13335],[0,57463],[64475,201],[64475,210],[65000,50041],[65000,65031],[65000,65101],[65000,65151]],"origin":"INCOMPLETE","med":0,"announcements":[{"next_hop":"2001:7f8::fbdb:0:1,fe80::7efe:90ff:fe3b:3e5b","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0091020000007A4001010240021602050000FBDB0000CB390000CB390000CB390000CB3980040400000000C0082400001B1B000034170000E077FBDB00C9FBDB00D2FDE8C379FDE8FE07FDE8FE4DFDE8FE7F800E2C00020120200107F8000000000000FBDB00000001FE800000000000007EFE90FFFE3B3E5B00302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"80.81.196.197","peer_asn":"58299","id":"80.81.196.197-01984d132ad60007","host":"rrc12.ripe.net","type":"UPDATE","path":[58299,13030,1299,174,264409,11432],"community":[[1299,25000],[13030,2],[13030,1299],[13030,8219],[13030,51203],[58299,1000]],"origin":"IGP","announcements":[{"next_hop":"80.81.196.197","prefixes":["200.155.182.0/24","200.155.183.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00630200000044400101005002001A02060000E3BB000032E600000513000000AE000408D900002CA84003045051C4C5C00818051361A832E6000232E6051332E6201B32E6C803E3BB03E818C89BB618C89BB7"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8::fbdb:0:1","peer_asn":"64475","id":"2001:7f8::fbdb:0:1-01984d132ad6000a","host":"rrc12.ripe.net","type":"UPDATE","path":[64475,52025,52025,52025,52025],"community":[[0,6939],[0,13335],[0,57463],[64475,201],[64475,210],[65000,50041],[65000,65031],[65000,65101],[65000,65151]],"origin":"INCOMPLETE","med":0,"announcements":[{"next_hop":"2001:7f8::fbdb:0:1,fe80::7efe:90ff:fe3b:3e5b","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0091020000007A4001010240021602050000FBDB0000CB390000CB390000CB390000CB3980040400000000C0082400001B1B000034170000E077FBDB00C9FBDB00D2FDE8C379FDE8FE07FDE8FE4DFDE8FE7F800E2C00020120200107F8000000000000FBDB00000001FE800000000000007EFE90FFFE3B3E5B00302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"80.81.196.197","peer_asn":"58299","id":"80.81.196.197-01984d132ad6000d","host":"rrc12.ripe.net","type":"UPDATE","path":[58299,13030,1299,174,264409,11432],"community":[[1299,25000],[13030,2],[13030,1299],[13030,8219],[13030,51203],[58299,1000]],"origin":"IGP","announcements":[{"next_hop":"80.81.196.197","prefixes":["200.155.182.0/24","200.155.183.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00630200000044400101005002001A02060000E3BB000032E600000513000000AE000408D900002CA84003045051C4C5C00818051361A832E6000232E6051332E6201B32E6C803E3BB03E818C89BB618C89BB7"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"80.81.196.156","peer_asn":"34927","id":"80.81.196.156-01984d132ad60010","host":"rrc12.ripe.net","type":"UPDATE","path":[34927,267613,262645,263561],"community":[[34927,130],[34927,1301]],"origin":"IGP","med":0,"announcements":[{"next_hop":"80.81.196.156","prefixes":["186.251.12.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008002000000654001010040021202040000886F0004155D000401F5000405894003045051C49C80040400000000E00808886F0082886F0515E0203000001A2700000777000000C400001A27000007780000000400001A27000007790000034800001A270000077A0000001316BAFB0C"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8::e3bb:0:1","peer_asn":"58299","id":"2001:7f8::e3bb:0:1-01984d132ad60013","host":"rrc12.ripe.net","type":"UPDATE","path":[58299,52025],"community":[[58299,1100]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8::e3bb:0:1,fe80::3eec:efff:fe46:697d","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00600200000049900E002C00020120200107F8000000000000E3BB00000001FE800000000000003EECEFFFFE46697D00302602FA7E0017400101025002000A02020000E3BB0000CB39C00804E3BB044C"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8::886f:0:1","peer_asn":"34927","id":"2001:7f8::886f:0:1-01984d132ad60016","host":"rrc12.ripe.net","type":"UPDATE","path":[34927,5405,2914,1299,22616],"community":[[34927,110],[34927,180]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8::886f:0:1,fe80::92e2:baff:fe5e:7908","prefixes":["2a03:eec0:3212::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006E02000000574001010040021602050000886F0000151D00000B620000051300005858C00808886F006E886F00B4800E2C00020120200107F8000000000000886F00000001FE8000000000000092E2BAFFFE5E790800302A03EEC03212"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8::fbdb:0:1","peer_asn":"64475","id":"2001:7f8::fbdb:0:1-01984d132ad60019","host":"rrc12.ripe.net","type":"UPDATE","path":[64475,52025,52025,52025,52025],"community":[[0,6939],[0,13335],[0,57463],[64475,201],[64475,210],[65000,50041],[65000,65031],[65000,65101],[65000,65151]],"origin":"INCOMPLETE","med":0,"announcements":[{"next_hop":"2001:7f8::fbdb:0:1,fe80::7efe:90ff:fe3b:3e5b","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0091020000007A4001010240021602050000FBDB0000CB390000CB390000CB390000CB3980040400000000C0082400001B1B000034170000E077FBDB00C9FBDB00D2FDE8C379FDE8FE07FDE8FE4DFDE8FE7F800E2C00020120200107F8000000000000FBDB00000001FE800000000000007EFE90FFFE3B3E5B00302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe0027","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,6453,64289,52025],"community":[[6453,2000],[6453,2400],[6453,2406],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00AE0200000097900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240021202040000205B000019350000FB210000CB39C00818193507D01935096019350966205B0001205B0065205B0066E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B000000080000001A"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe002a","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,34927,52025],"community":[[8283,1],[8283,101],[8283,102],[34927,722]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A2020000008B900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020E02030000205B0000886F0000CB39C00810205B0001205B0065205B0066886F02D2E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B0000000800000A29"}} +{"type":"ris_message","data":{"timestamp":1753639758.580,"peer":"2001:7f8:1c:24a::1a4a:1","peer_asn":"6730","id":"2001:7f8:1c:24a::1a4a:1-01984d132af40001","host":"rrc04.ripe.net","type":"UPDATE","path":[6730,6830,3320,47347],"community":[[6730,6200],[6730,6210],[6730,6214],[6830,17000],[6830,17407],[6830,34108]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1c:24a::1a4a:1","prefixes":["2a01:7b40::/32"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0069020000005240010100400212020400001A4A00001AAE00000CF80000B8F3C008181A4A18381A4A18421A4A18461AAE42681AAE43FF1AAE853C900E001A00020110200107F8001C024A000000001A4A000100202A017B40"}} +{"type":"ris_message","data":{"timestamp":1753639758.580,"peer":"2001:7f8:1c:24a::1a4a:1","peer_asn":"6730","id":"2001:7f8:1c:24a::1a4a:1-01984d132af40004","host":"rrc04.ripe.net","type":"UPDATE","path":[6730,6830,174,53667,202256],"community":[[6730,6100],[6830,17000],[6830,17504],[6830,23001],[6830,34108]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1c:24a::1a4a:1","prefixes":["2a06:de02:48c::/48","2a06:de02:6f3::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0072020000005B40010100400216020500001A4A00001AAE000000AE0000D1A300031610C008141A4A17D41AAE42681AAE44601AAE59D91AAE853C900E002300020110200107F8001C024A000000001A4A000100302A06DE02048C302A06DE0206F3"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe002e","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,34927,52025],"community":[[8283,1],[8283,101],[8283,102],[34927,722]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A2020000008B900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020E02030000205B0000886F0000CB39C00810205B0001205B0065205B0066886F02D2E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B0000000800000A29"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe0031","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,6453,64289,52025],"community":[[6453,2000],[6453,2400],[6453,2406],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00AE0200000097900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240021202040000205B000019350000FB210000CB39C00818193507D01935096019350966205B0001205B0065205B0066E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B000000080000001A"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe0034","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,52025],"community":[[0,6939],[0,13335],[0,57463],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A6020000008F900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020A02020000205B0000CB39C0081800001B1B000034170000E077205B0001205B0065205B0066E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B0000000800000DB8"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe0037","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,64289,52025],"community":[[8283,1],[8283,101],[8283,102],[64289,3000]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00AE0200000097900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020E02030000205B0000FB210000CB39C00810205B0001205B0065205B0066FB210BB8C0203C0000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B0000000800000DB80000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe003a","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,6453,64289,52025],"community":[[6453,2000],[6453,2400],[6453,2406],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00AE0200000097900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240021202040000205B000019350000FB210000CB39C00818193507D01935096019350966205B0001205B0065205B0066E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B000000080000001A"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe003d","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,34927,52025],"community":[[8283,1],[8283,101],[8283,102],[34927,722]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00EA02000000D3900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020E02030000205B0000886F0000CB39C00810205B0001205B0065205B0066886F02D2C020780000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B0000000800000ECD0003258D00000383000000120003258D00000385000000120003258D000003850000003E0003258D00000385000000F50003258D00000385000001760003258D000003850000043B"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe0040","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,52025],"community":[[0,6939],[0,13335],[0,57463],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A6020000008F900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020A02020000205B0000CB39C0081800001B1B000034170000E077205B0001205B0065205B0066E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B0000000800000DB8"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe0043","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,52025],"community":[[0,6939],[0,13335],[0,57463],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A6020000008F900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020A02020000205B0000CB39C0081800001B1B000034170000E077205B0001205B0065205B0066E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B0000000800000DB8"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe0046","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,6453,64289,52025],"community":[[6453,2000],[6453,2400],[6453,2406],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00AE0200000097900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240021202040000205B000019350000FB210000CB39C00818193507D01935096019350966205B0001205B0065205B0066E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B000000080000001A"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe0049","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,52025],"community":[[0,6939],[0,13335],[0,57463],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A6020000008F900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020A02020000205B0000CB39C0081800001B1B000034170000E077205B0001205B0065205B0066E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B0000000800000DB8"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe004c","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,400587,52025],"community":[[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF010A02000000F3900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020E02030000205B00061CCB0000CB39E0080C205B0001205B0065205B0066C0209C0000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B0000000800000ECD0003258D00000383000000120003258D00000385000000120003258D000003850000003E0003258D00000385000000F50003258D00000385000001760003258D000003850000043B00061CCB000000010000001200061CCB000000020000CB3900061CCB0000000300000002"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe004f","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,64289,52025],"community":[[8283,1],[8283,101],[8283,102],[64289,3000]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00AE0200000097900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020E02030000205B0000FB210000CB39C00810205B0001205B0065205B0066FB210BB8C0203C0000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B0000000800000F960000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe0052","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,12956,28458],"community":[[8283,1],[8283,101],[12956,123],[12956,4003],[12956,4030],[12956,4303],[12956,19300],[12956,28458]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2806:202::/32"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A4020000008D900E002A00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC0020280602024001010240020E02030000205B0000329C00006F2AC00820205B0001205B0065329C007B329C0FA3329C0FBE329C10CF329C4B64329C6F2AE020240000205B00000000000000010000205B00000005000000010000205B000000080000001A"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"194.68.123.187","peer_asn":"6939","id":"194.68.123.187-01984d132ae00002","host":"rrc07.ripe.net","type":"UPDATE","path":[6939,12389,8369],"community":[],"origin":"IGP","med":0,"announcements":[{"next_hop":"194.68.123.187","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003E02000000234001010040020E020300001B1B00003065000020B1400304C2447BBB8004040000000018C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"194.68.123.136","peer_asn":"6667","id":"194.68.123.136-01984d132ae00005","host":"rrc07.ripe.net","type":"UPDATE","path":[6667,3257,2914,63306,63376],"community":[[3257,8992],[3257,30341],[3257,50001],[3257,53900],[3257,53902],[6667,3004],[6667,4003],[6667,5006],[6667,8890]],"origin":"IGP","med":0,"announcements":[{"next_hop":"194.68.123.136","prefixes":["140.174.37.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006D020000005240010100400216020500001A0B00000CB900000B620000F74A0000F790400304C2447B8880040400000000C008240CB923200CB976850CB9C3510CB9D28C0CB9D28E1A0B0BBC1A0B0FA31A0B138E1A0B22BA188CAE25"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"194.68.123.136","peer_asn":"6667","id":"194.68.123.136-01984d132aea0001","host":"rrc07.ripe.net","type":"UPDATE","path":[6667,174,262645,263561],"community":[[174,21301],[174,22042],[6667,3004],[6667,4004],[6667,5009],[6667,8891]],"origin":"IGP","med":0,"announcements":[{"next_hop":"194.68.123.136","prefixes":["186.251.12.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005D020000004240010100400212020400001A0B000000AE000401F500040589400304C2447B8880040400000000C0081800AE533500AE561A1A0B0BBC1A0B0FA41A0B13911A0B22BB16BAFB0C"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"194.68.123.136","peer_asn":"6667","id":"194.68.123.136-01984d132aea0004","host":"rrc07.ripe.net","type":"UPDATE","path":[6667,1273,12389,8369],"community":[[1273,12752],[1273,32090],[1273,43003],[6667,3003],[6667,4003],[6667,5004],[6667,5315],[6667,8891],[12389,23]],"origin":"INCOMPLETE","med":0,"announcements":[{"next_hop":"194.68.123.136","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0069020000004E40010102400212020400001A0B000004F900003065000020B1400304C2447B8880040400000000C0082404F931D004F97D5A04F9A7FB1A0B0BBB1A0B0FA31A0B138C1A0B14C31A0B22BB3065001718C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.136","peer_asn":"6667","id":"194.68.123.136-01984d132ed20002","host":"rrc07.ripe.net","type":"UPDATE","path":[6667,1299,174,264409,11432],"community":[[1299,25000],[6667,3004],[6667,4003],[6667,5010],[6667,8890]],"origin":"IGP","med":0,"announcements":[{"next_hop":"194.68.123.136","prefixes":["200.155.182.0/24","200.155.183.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0061020000004240010100400216020500001A0B00000513000000AE000408D900002CA8400304C2447B8880040400000000C00814051361A81A0B0BBC1A0B0FA31A0B13921A0B22BA18C89BB618C89BB7"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:7f8:d:ff::136","peer_asn":"6667","id":"2001:7f8:d:ff::136-01984d132ed20005","host":"rrc07.ripe.net","type":"UPDATE","path":[6667,33891,64289,52025],"community":[[6667,3001],[6667,4005],[6667,5207],[6667,8890]],"origin":"INCOMPLETE","med":0,"announcements":[{"next_hop":"2001:7f8:d:ff::136,fe80::ae78:d100:d752:e079","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A020000006340010102400212020400001A0B000084630000FB210000CB3980040400000000C008101A0B0BB91A0B0FA51A0B14571A0B22BA900E002C00020120200107F8000D00FF0000000000000136FE80000000000000AE78D100D752E07900302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.136","peer_asn":"6667","id":"194.68.123.136-01984d132ed20008","host":"rrc07.ripe.net","type":"UPDATE","path":[6667,1299,174,264409,11432],"community":[[1299,25000],[6667,3004],[6667,4006],[6667,5010],[6667,8890]],"origin":"IGP","med":0,"announcements":[{"next_hop":"194.68.123.136","prefixes":["200.155.182.0/24","200.155.183.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0061020000004240010100400216020500001A0B00000513000000AE000408D900002CA8400304C2447B8880040400000000C00814051361A81A0B0BBC1A0B0FA61A0B13921A0B22BA18C89BB618C89BB7"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"217.29.66.158","peer_asn":"24482","id":"217.29.66.158-01984d132ebe0016","host":"rrc10.ripe.net","type":"UPDATE","path":[24482,2914,3356,262645,263561],"community":[[2914,420],[2914,1205],[2914,2204],[2914,3200],[24482,1],[24482,100],[24482,12000],[24482,12040],[24482,12041],[24482,20200],[24482,20202],[24482,64602]],"origin":"IGP","med":0,"announcements":[{"next_hop":"217.29.66.158","prefixes":["186.251.12.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0079020000005E40010100400216020500005FA200000B6200000D1C000401F500040589400304D91D429E80040400000000C008300B6201A40B6204B50B62089C0B620C805FA200015FA200645FA22EE05FA22F085FA22F095FA24EE85FA24EEA5FA2FC5A16BAFB0C"}} +{"type":"ris_message","data":{"timestamp":1753639757.570,"peer":"2001:43f8:6d0::221","peer_asn":"327804","id":"2001:43f8:6d0::221-01984d1327020001","host":"rrc19.ripe.net","type":"UPDATE","path":[327804,37271,3257,1299,20473,210564],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:43f8:6d0::221,fe80::82ac:ac02:a84:c2f0","prefixes":["2001:67c:20fc::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008F02000000784001010040021A02060005007C0000919700000CB90000051300004FF900033684C020240005007C0000006F000000020005007C0000014D000091970005007C0000037800000001900E002C00020120200143F806D000000000000000000221FE8000000000000082ACAC020A84C2F000302001067C20FC"}} +{"type":"ris_message","data":{"timestamp":1753639757.570,"peer":"196.60.8.57","peer_asn":"327995","id":"196.60.8.57-01984d1327020004","host":"rrc19.ripe.net","type":"STATE","state":"down","raw":""}} +{"type":"ris_message","data":{"timestamp":1753639757.570,"peer":"2001:43f8:6d0::221","peer_asn":"327804","id":"2001:43f8:6d0::221-01984d1327020007","host":"rrc19.ripe.net","type":"UPDATE","path":[327804,37271,3257,1299,16509,8987],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:43f8:6d0::221,fe80::82ac:ac02:a84:c2f0","prefixes":["2605:9cc0:c0d::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008F02000000784001010040021A02060005007C0000919700000CB9000005130000407D0000231BC020240005007C0000006F000000020005007C0000014D000091970005007C0000037800000001900E002C00020120200143F806D000000000000000000221FE8000000000000082ACAC020A84C2F0003026059CC00C0D"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:43f8:6d0::221","peer_asn":"327804","id":"2001:43f8:6d0::221-01984d132aea0001","host":"rrc19.ripe.net","type":"UPDATE","path":[327804,5713,174,3356,22616],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:43f8:6d0::221,fe80::82ac:ac02:a84:c2f0","prefixes":["2a03:eec0:3212::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007F02000000684001010040021602050005007C00001651000000AE00000D1C00005858C020180005007C0000006F000000020005007C0000014D00001651900E002C00020120200143F806D000000000000000000221FE8000000000000082ACAC020A84C2F000302A03EEC03212"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:43f8:6d0::221","peer_asn":"327804","id":"2001:43f8:6d0::221-01984d132aea0004","host":"rrc19.ripe.net","type":"UPDATE","path":[327804,5713,37468,6453,2914,16509],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:43f8:6d0::221,fe80::82ac:ac02:a84:c2f0","prefixes":["2605:9cc0:c04::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008F02000000784001010040021A02060005007C000016510000925C0000193500000B620000407DC020240005007C0000006F000000020005007C0000014D000016510005007C0000037800000001900E002C00020120200143F806D000000000000000000221FE8000000000000082ACAC020A84C2F0003026059CC00C04"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"196.60.8.221","peer_asn":"327804","id":"196.60.8.221-01984d132ed20000","host":"rrc19.ripe.net","type":"UPDATE","path":[327804,6939,12389,8369],"community":[],"origin":"IGP","announcements":[{"next_hop":"196.60.8.42","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006202000000474001010040021202040005007C00001B1B00003065000020B1400304C43C082AC020240005007C0000006F000027110005007C0000022B00001B1B0005007C000003780000000218C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"91.206.53.12","peer_asn":"8298","id":"91.206.53.12-01984d132ad60000","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,8283,2914,63306,63376],"community":[[2914,410],[2914,1005],[2914,2000],[2914,3000],[8283,1],[8283,101],[8283,102],[8298,2010]],"origin":"IGP","announcements":[{"next_hop":"91.206.53.12","prefixes":["140.174.37.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A102000000864001010040021602050000206A0000205B00000B620000F74A0000F7904003045BCE350CC008200B62019A0B6203ED0B6207D00B620BB8205B0001205B0065205B0066206A07DAC0203C0000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B000000080000001A0000206A000000020000205B188CAE25"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::7f","peer_asn":"20612","id":"2001:7f8:24::7f-01984d132ad60003","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,8758,34927,34927,52025],"community":[[8758,105],[8758,225],[8758,301],[20612,8758],[34927,722]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::2","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0072020000005B40010102400216020500005084000022360000886F0000886F0000CB39C0081422360069223600E12236012D50842236886F02D2E0230400001A79900E001C00020110200107F800240000000000000000000200302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"91.206.52.127","peer_asn":"20612","id":"91.206.52.127-01984d132ad60006","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,9044,2914,63306,63376],"community":[[20612,9044]],"origin":"IGP","announcements":[{"next_hop":"91.206.52.37","prefixes":["140.174.37.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0046020000002B400101004002160205000050840000235400000B620000F74A0000F7904003045BCE3425C0080450842354188CAE25"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ad60009","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"91.206.53.12","peer_asn":"8298","id":"91.206.53.12-01984d132ad6000c","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,25091,267613,262645,263561],"community":[[8298,2000],[25091,25431],[65400,63034],[65401,431]],"origin":"IGP","announcements":[{"next_hop":"91.206.53.12","prefixes":["186.251.12.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009102000000764001010040021602050000206A000062030004155D000401F5000405894003045BCE350CC00810206A07D062036357FF78F63AFF7901AFC0203C0000206A00000002000062030000F63A00000777000000D50000F63A00000778000000040000F63A00000779000003480000F63A0000077A0000001316BAFB0C"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::7f","peer_asn":"20612","id":"2001:7f8:24::7f-01984d132ad6000f","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,8758,34927,34927,52025],"community":[[8758,105],[8758,225],[8758,301],[20612,8758],[34927,722]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::2","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0072020000005B40010102400216020500005084000022360000886F0000886F0000CB39C0081422360069223600E12236012D50842236886F02D2E0230400001A79900E001C00020110200107F800240000000000000000000200302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"91.206.52.127","peer_asn":"20612","id":"91.206.52.127-01984d132ad60012","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,9044,1299,174,37282,37506],"community":[[20612,9044]],"origin":"IGP","announcements":[{"next_hop":"91.206.52.37","prefixes":["41.220.92.0/22","41.220.84.0/22","41.220.80.0/22","41.220.88.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0056020000002F4001010040021A0206000050840000235400000513000000AE000091A2000092824003045BCE3425C00804508423541629DC5C1629DC541629DC501629DC58"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ad60015","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1041]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0411E0200C0000206A0000000100000411"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"91.206.53.12","peer_asn":"8298","id":"91.206.53.12-01984d132ad60018","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,23947,131736],"community":[[8298,1121],[23947,20]],"origin":"IGP","announcements":[{"next_hop":"91.206.53.12","prefixes":["103.132.12.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0058020000003D4001010040020E02030000206A00005D8B000202984003045BCE350CC00808206A04615D8B0014E0200C0000206A0000000100000461C0230400001A791867840C"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::7f","peer_asn":"20612","id":"2001:7f8:24::7f-01984d132ad6001b","host":"rrc20.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2610:a1:1028:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A00020130261000A11028"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"91.206.52.127","peer_asn":"20612","id":"91.206.52.127-01984d132ad6001e","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,8758,3303,174,3356,7195,52863,262880],"community":[[174,21300],[174,22046],[3303,1007],[3303,1021],[3303,3067],[8758,110],[8758,300],[20612,8758]],"origin":"IGP","announcements":[{"next_hop":"91.206.52.2","prefixes":["177.10.233.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006E0200000053400101004002220208000050840000223600000CE7000000AE00000D1C00001C1B0000CE7F000402E04003045BCE3402C0082000AE533400AE561E0CE703EF0CE703FD0CE70BFB2236006E2236012C5084223618B10AE9"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ad60021","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"91.206.53.12","peer_asn":"8298","id":"91.206.53.12-01984d132ad60024","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,6939,12389,8369],"community":[[8298,1010]],"origin":"IGP","announcements":[{"next_hop":"91.206.53.12","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005102000000364001010040021202040000206A00001B1B00003065000020B14003045BCE350CE00804206A03F2E0200C0000206A00000001000003F218C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::7f","peer_asn":"20612","id":"2001:7f8:24::7f-01984d132ad60027","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,8758,64289,52025],"community":[[8758,105],[8758,235],[8758,301],[20612,8758],[64289,3000]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::2","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A6020000008F40010102400212020400005084000022360000FB210000CB39C0081422360069223600EB2236012D50842236FB210BB8C0203C00001A27000007770000005900001A27000007780000000000001A27000007790000011400001A270000077A000000960000FB2100000BB80000000A900E001C00020110200107F800240000000000000000000200302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"91.206.53.12","peer_asn":"8298","id":"91.206.53.12-01984d132ad6002a","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,23947,131736,131111,131736],"community":[[8298,1121],[23947,20]],"origin":"IGP","announcements":[{"next_hop":"91.206.53.12","prefixes":["103.132.12.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006002000000454001010040021602050000206A00005D8B0002029800020027000202984003045BCE350CC00808206A04615D8B0014E0200C0000206A0000000100000461C0230400001A791867840C"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ad6002d","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1056],[65000,50041],[65000,65031],[65000,65101],[65000,65151]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008A0200000073900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0082000001B1B000034170000E077206A0420FDE8C379FDE8FE07FDE8FE4DFDE8FE7FE0200C0000206A0000000100000420"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ad60030","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ad60033","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,25091,34927,52025],"community":[[8298,2000],[25091,23407],[65400,34307],[65401,407]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0082020000006B900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240021202040000206A000062030000886F0000CB39C00810206A07D062035B6FFF788603FF790197E0200C0000206A0000000200006203"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00001","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,25091,34927,52025],"community":[[8298,2000],[25091,23407],[65400,34307],[65401,407]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0082020000006B900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240021202040000206A000062030000886F0000CB39C00810206A07D062035B6FFF788603FF790197E0200C0000206A0000000200006203"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00004","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00007","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae0000a","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae0000d","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,8283,57866,6453,2914,20473,40138],"community":[[6453,86],[6453,2000],[6453,2100],[6453,2101],[8283,15],[8283,102],[8298,2010],[57866,100],[65100,6453],[65103,1],[65104,31]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2402:e580:73ef::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00F202000000DB900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302402E58073EF4001010040021E02070000206A0000205B0000E20A0000193500000B6200004FF900009CCAC0082C19350056193507D01935083419350835205B000F205B0066206A07DAE20A0064FE4C1935FE4F0001FE50001FC020540000205B00000005000000020000205B000000060000000F0000206A000000020000205B0000E20A00000064000019350000E20A00000065000000640000E20A00000067000000010000E20A000000680000001F"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00010","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00013","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1041]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0411E0200C0000206A0000000100000411"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00016","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1041]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0411E0200C0000206A0000000100000411"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00019","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1056],[65000,50041],[65000,65031],[65000,65101],[65000,65151]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008A0200000073900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0082000001B1B000034170000E077206A0420FDE8C379FDE8FE07FDE8FE4DFDE8FE7FE0200C0000206A0000000100000420"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae0001c","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae0001f","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,38158,150242,214028,214028],"community":[[8298,1046],[38158,65030],[65535,1167]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2a0f:85c1:8b9::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00B2020000009B900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302A0F85C108B94001010040021602050000206A0000950E00024AE20003440C0003440CC0080C206A0416950EFE06FFFF048FC0203C00001A27000007770000005900001A27000007780000000000001A27000007790000011400001A270000077A000000960000206A0000000100000416"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00022","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,64289,52025],"community":[[8298,1121],[64289,3000]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00890200000072900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020E02030000206A0000FB210000CB39C00808206A0461FB210BB8C020180000206A00000001000004610000FB2100000BB80000000AC0230400001A79"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00025","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00028","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,25091,34927,52025],"community":[[8298,2000],[25091,23407],[65400,34307],[65401,407]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0082020000006B900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240021202040000206A000062030000886F0000CB39C00810206A07D062035B6FFF788603FF790197E0200C0000206A0000000200006203"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae0002b","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae0002e","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00031","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00034","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,38158,150242,214028,214028],"community":[[8298,1121],[38158,65030],[65535,1167]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2a0f:85c1:8b9::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00890200000072900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302A0F85C108B94001010040021602050000206A0000950E00024AE20003440C0003440CC0080C206A0461950EFE06FFFF048FE0200C0000206A0000000100000461C0230400001A79"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00037","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,25091,34927,52025],"community":[[8298,2000],[25091,23407],[65400,34307],[65401,407]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0082020000006B900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240021202040000206A000062030000886F0000CB39C00810206A07D062035B6FFF788603FF790197E0200C0000206A0000000200006203"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae0003a","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,34927,52025],"community":[[8298,1116],[34927,722]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0076020000005F900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020E02030000206A0000886F0000CB39C00808206A045C886F02D2E0200C0000206A000000010000045C"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae0003d","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00040","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1041]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0411E0200C0000206A0000000100000411"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ebe0001","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"91.206.53.12","peer_asn":"8298","id":"91.206.53.12-01984d132ebe0004","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,25091,45430,4750],"community":[[8298,2000],[25091,27412],[65400,8714],[65401,412]],"origin":"IGP","announcements":[{"next_hop":"91.206.53.12","prefixes":["58.137.31.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007C02000000614001010040021202040000206A000062030000B1760000128E4003045BCE350CC00810206A07D062036B14FF78220AFF79019CC020240000206A00000002000062030000220A000003E8000000010000220A000003E900000002E023040000220A183A891F"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"194.68.123.96","peer_asn":"35280","id":"194.68.123.96-01984d132aea0000","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,2914,63306,63376],"community":[[2914,410],[2914,1005],[2914,2000],[2914,3000],[35280,10],[35280,1010],[35280,2030],[35280,3050],[35280,4060],[35280,10000],[35280,10030]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.96","prefixes":["140.174.37.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0079020000005E400101004002120204000089D000000B620000F74A0000F790400304C2447B60C0082C0B62019A0B6203ED0B6207D00B620BB889D0000A89D003F289D007EE89D00BEA89D00FDC89D0271089D0272EC0200C000089D00000FDE700000B62188CAE25"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:d:ff::96","peer_asn":"35280","id":"2001:7f8:d:ff::96-01984d132aea0003","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,6453,2914,16509,14618],"community":[[6453,86],[6453,2000],[6453,2100],[6453,2101],[35280,10],[35280,1010],[35280,2060],[35280,3070],[35280,4070],[35280,10000],[35280,10020]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:d:ff::96,fe80::8a90:900:d7f8:eac5","prefixes":["2605:9cc0:c03::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A2020000008B400101004002160205000089D00000193500000B620000407D0000391AC0082C19350056193507D0193508341935083589D0000A89D003F289D0080C89D00BFE89D00FE689D0271089D02724C0200C000089D00000FDE700001935900E002C00020120200107F8000D00FF0000000000000096FE800000000000008A900900D7F8EAC5003026059CC00C03"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"194.68.123.96","peer_asn":"35280","id":"194.68.123.96-01984d132aea0006","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,2914,63306,63376],"community":[[2914,410],[2914,1005],[2914,2000],[2914,3000],[35280,10],[35280,1010],[35280,2150],[35280,3230],[35280,4080],[35280,10000],[35280,10030]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.96","prefixes":["140.174.37.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0079020000005E400101004002120204000089D000000B620000F74A0000F790400304C2447B60C0082C0B62019A0B6203ED0B6207D00B620BB889D0000A89D003F289D0086689D00C9E89D00FF089D0271089D0272EC0200C000089D00000FDE700000B62188CAE25"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:d:ff::96","peer_asn":"35280","id":"2001:7f8:d:ff::96-01984d132aea0009","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,6453,2914,16509],"community":[[6453,86],[6453,2000],[6453,2100],[6453,2101],[35280,10],[35280,1010],[35280,2060],[35280,3070],[35280,4070],[35280,10000],[35280,10020]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:d:ff::96,fe80::8a90:900:d7f8:eac5","prefixes":["2605:9cc0:c04::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009E0200000087400101004002120204000089D00000193500000B620000407DC0082C19350056193507D0193508341935083589D0000A89D003F289D0080C89D00BFE89D00FE689D0271089D02724C0200C000089D00000FDE700001935900E002C00020120200107F8000D00FF0000000000000096FE800000000000008A900900D7F8EAC5003026059CC00C04"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"194.68.123.96","peer_asn":"35280","id":"194.68.123.96-01984d132aea000c","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,3356,262645,263561],"community":[[3356,5],[3356,22],[3356,100],[3356,123],[3356,800],[3356,903],[3356,2246],[35280,20],[35280,1010],[35280,2060],[35280,3070],[35280,4070],[35280,10000],[35280,10040]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.96","prefixes":["186.251.12.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00900200000075400101004002120204000089D000000D1C000401F500040589400304C2447B60C008380D1C00050D1C00160D1C00640D1C007B0D1C03200D1C03870D1C08C689D0001489D003F289D0080C89D00BFE89D00FE689D0271089D02738C010080202000401F51F40C0200C000089D00000FDE700000D1C16BAFB0C"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:d:ff::96","peer_asn":"35280","id":"2001:7f8:d:ff::96-01984d132aea000f","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,2914,16509,8987],"community":[[2914,410],[2914,1008],[2914,2000],[2914,3000],[35280,10],[35280,1010],[35280,2150],[35280,3230],[35280,4080],[35280,10000],[35280,10030]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:d:ff::96,fe80::8a90:900:d7f8:eac5","prefixes":["2605:9cc0:c0d::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009E0200000087400101004002120204000089D000000B620000407D0000231BC0082C0B62019A0B6203F00B6207D00B620BB889D0000A89D003F289D0086689D00C9E89D00FF089D0271089D0272EC0200C000089D00000FDE700000B62900E002C00020120200107F8000D00FF0000000000000096FE800000000000008A900900D7F8EAC5003026059CC00C0D"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:d:ff::96","peer_asn":"35280","id":"2001:7f8:d:ff::96-01984d132aea0012","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,38158,150242,214028,214028],"community":[[8714,65010],[8714,65012],[35280,10],[35280,1010],[35280,2050],[35280,3060],[35280,4050],[35280,20000],[35280,21000],[35280,21060],[35280,24000],[38158,65030],[65535,1167]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:d:ff::96,fe80::8a90:900:d7f8:eac5","prefixes":["2a0f:85c1:8b9::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00C902000000B2400101004002160205000089D00000950E00024AE20003440C0003440CC00834220AFDF2220AFDF489D0000A89D003F289D0080289D00BF489D00FD289D04E2089D0520889D0524489D05DC0950EFE06FFFF048FC020240000220A000003E8000000010000220A000003E900000002000089D00000FDE70000220AE023040000220A900E002C00020120200107F8000D00FF0000000000000096FE800000000000008A900900D7F8EAC500302A0F85C108B9"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:d:ff::96","peer_asn":"35280","id":"2001:7f8:d:ff::96-01984d132aea0015","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,38158,150242,214028,214028],"community":[[35280,10],[35280,1010],[35280,2060],[35280,3070],[35280,4070],[35280,20000],[35280,21000],[35280,21050],[35280,24000],[38158,65030],[65535,1167]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:d:ff::96,fe80::8a90:900:d7f8:eac5","prefixes":["2a0f:85c1:8b9::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00D202000000BB400101004002160205000089D00000950E00024AE20003440C0003440CC0082C89D0000A89D003F289D0080C89D00BFE89D00FE689D04E2089D0520889D0523A89D05DC0950EFE06FFFF048FC0203C00001A27000007770000005900001A27000007780000000000001A27000007790000011400001A270000077A00000096000089D00000FDE700001A27900E002C00020120200107F8000D00FF0000000000000096FE800000000000008A900900D7F8EAC500302A0F85C108B9"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.96","peer_asn":"35280","id":"194.68.123.96-01984d132ed20002","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,6775],"community":[[35280,10],[35280,1010],[35280,2030],[35280,3050],[35280,4060],[35280,20000],[35280,21000],[35280,21070],[35280,24000]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.96","prefixes":["79.134.250.0/23"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007002000000554001010040020A0202000089D000001A77400304C2447B60C0082489D0000A89D003F289D007EE89D00BEA89D00FDC89D04E2089D0520889D0524E89D05DC0C0200C000089D00000FDE700001A79E0230400001A79174F86FA"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:7f8:d:ff::96","peer_asn":"35280","id":"2001:7f8:d:ff::96-01984d132ed20005","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,3356,174,53667,202256],"community":[[3356,2],[3356,22],[3356,86],[3356,502],[3356,601],[3356,666],[3356,901],[3356,2066],[35280,10],[35280,1010],[35280,2150],[35280,3230],[35280,4080],[35280,10000],[35280,10040]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:d:ff::96,fe80::8a90:900:d7f8:eac5","prefixes":["2a06:de02:5bb::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00B2020000009B400101004002160205000089D000000D1C000000AE0000D1A300031610C0083C0D1C00020D1C00160D1C00560D1C01F60D1C02590D1C029A0D1C03850D1C081289D0000A89D003F289D0086689D00C9E89D00FF089D0271089D02738C0200C000089D00000FDE700000D1C900E002C00020120200107F8000D00FF0000000000000096FE800000000000008A900900D7F8EAC500302A06DE0205BB"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.96","peer_asn":"35280","id":"194.68.123.96-01984d132ed20008","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,1299,174,37282,37506],"community":[[1299,25000],[35280,20],[35280,1010],[35280,2030],[35280,3050],[35280,4060],[35280,10000],[35280,10010]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.96","prefixes":["41.220.92.0/22","41.220.88.0/22","41.220.80.0/20","41.220.80.0/22","41.220.84.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00810200000056400101004002160205000089D000000513000000AE000091A200009282400304C2447B60C00820051361A889D0001489D003F289D007EE89D00BEA89D00FDC89D0271089D0271AC0200C000089D00000FDE7000005131629DC5C1629DC581429DC501629DC501629DC54"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.96","peer_asn":"35280","id":"194.68.123.96-01984d132ed2000b","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,3356,7843,11427,393359],"community":[[3356,3],[3356,86],[3356,575],[3356,666],[3356,901],[3356,2039],[7843,2000],[7843,2001],[7843,2242],[7843,2700],[7843,2784],[35280,10],[35280,1010],[35280,2150],[35280,3230],[35280,4080],[35280,10000],[35280,10040]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.96","prefixes":["97.79.169.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0099020000007E400101004002160205000089D000000D1C00001EA300002CA30006008F400304C2447B60C008480D1C00030D1C00560D1C023F0D1C029A0D1C03850D1C07F71EA307D01EA307D11EA308C21EA30A8C1EA30AE089D0000A89D003F289D0086689D00C9E89D00FF089D0271089D02738C0200C000089D00000FDE700000D1C18614FA9"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:24::7f","peer_asn":"20612","id":"2001:7f8:24::7f-01984d132ebe0007","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,8758,64289,52025],"community":[[8758,105],[8758,235],[8758,301],[20612,8758],[64289,3000]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::2","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A6020000008F40010102400212020400005084000022360000FB210000CB39C0081422360069223600EB2236012D50842236FB210BB8C0203C00001A27000007770000005900001A27000007780000000000001A27000007790000011400001A270000077A000000960000FB2100000BB80000000A900E001C00020110200107F800240000000000000000000200302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"91.206.52.127","peer_asn":"20612","id":"91.206.52.127-01984d132ebe000a","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,8758,9002,3356,174,52468,28370,28370,28370,28657],"community":[[8758,110],[8758,301],[9002,9002],[9002,64615],[20612,8758]],"origin":"IGP","announcements":[{"next_hop":"91.206.52.2","prefixes":["138.99.97.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006A020000004F4001010040022A020A00005084000022360000232A00000D1C000000AE0000CCF400006ED200006ED200006ED200006FF14003045BCE3402C008142236006E2236012D232A232A232AFC6750842236188A6361"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ebe000d","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,38158,150242,214028,214028],"community":[[8298,1046],[38158,65030],[65535,1167]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2a0f:85c1:8b9::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00B2020000009B900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302A0F85C108B94001010040021602050000206A0000950E00024AE20003440C0003440CC0080C206A0416950EFE06FFFF048FC0203C00001A27000007770000005900001A27000007780000000000001A27000007790000011400001A270000077A000000960000206A0000000100000416"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"91.206.53.12","peer_asn":"8298","id":"91.206.53.12-01984d132ebe0010","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,25091,267613,263069],"community":[[8298,2000],[25091,25431],[65400,63034],[65401,431]],"origin":"IGP","announcements":[{"next_hop":"91.206.53.12","prefixes":["168.0.128.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008D02000000724001010040021202040000206A000062030004155D0004039D4003045BCE350CC00810206A07D062036357FF78F63AFF7901AFC0203C0000206A00000002000062030000F63A00000777000000D50000F63A00000778000000040000F63A00000779000003480000F63A0000077A0000001316A80080"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:24::7f","peer_asn":"20612","id":"2001:7f8:24::7f-01984d132ebe0013","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,8758,38158,150242,214028,214028],"community":[[8758,105],[8758,235],[8758,301],[20612,8758],[38158,65030],[65535,1167]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::2","prefixes":["2a0f:85c1:8b9::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A6020000008F4001010040021A020600005084000022360000950E00024AE20003440C0003440CC0081822360069223600EB2236012D50842236950EFE06FFFF048FC0203000001A27000007770000005900001A27000007780000000000001A27000007790000011400001A270000077A00000096900E001C00020110200107F800240000000000000000000200302A0F85C108B9"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"91.206.52.127","peer_asn":"20612","id":"91.206.52.127-01984d132ebe0016","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,8758,3303,262535],"community":[[1031,1010],[1031,1020],[1031,1031],[1031,1049],[1031,4050],[1031,4400],[1031,4700],[1031,6045],[3303,1004],[3303,1006],[3303,1030],[3303,3051],[8758,110],[8758,300],[20612,8758],[24115,3010],[28604,3019],[28604,3029]],"origin":"IGP","announcements":[{"next_hop":"91.206.52.2","prefixes":["177.84.215.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0086020000006B400101004002120204000050840000223600000CE7000401874003045BCE3402C00848040703F2040703FC040704070407041904070FD2040711300407125C0407179D0CE703EC0CE703EE0CE704060CE70BEB2236006E2236012C508422365E330BC26FBC0BCB6FBC0BD518B154D7"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ebe0019","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,38158,150242,214028,214028],"community":[[8298,1046],[38158,65030],[65535,1167]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2a0f:85c1:8b9::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00B2020000009B900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302A0F85C108B94001010040021602050000206A0000950E00024AE20003440C0003440CC0080C206A0416950EFE06FFFF048FC0203C00001A27000007770000005900001A27000007780000000000001A27000007790000011400001A270000077A000000960000206A0000000100000416"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"91.206.53.12","peer_asn":"8298","id":"91.206.53.12-01984d132ebe001c","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,25091,9318,38684,38684,38684,38684,38684,38684,38684],"community":[[8298,2000],[25091,25409],[65400,6695],[65401,409]],"origin":"IGP","announcements":[{"next_hop":"91.206.53.12","prefixes":["124.195.190.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A5020000008A4001010040022A020A0000206A00006203000024660000971C0000971C0000971C0000971C0000971C0000971C0000971C4003045BCE350CC00810206A07D062036341FF781A27FF790199C0203C00001A27000007770000005200001A27000007780000000000001A27000007790000011400001A270000077A000000960000206A0000000200006203187CC3BE"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:24::7f","peer_asn":"20612","id":"2001:7f8:24::7f-01984d132ebe001f","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,8758,64289,52025],"community":[[8758,105],[8758,235],[8758,301],[20612,8758],[64289,3000]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::2","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A6020000008F40010102400212020400005084000022360000FB210000CB39C0081422360069223600EB2236012D50842236FB210BB8C0203C00001A27000007770000005900001A27000007780000000000001A27000007790000011400001A270000077A000000960000FB2100000BB80000000A900E001C00020110200107F800240000000000000000000200302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"91.206.52.127","peer_asn":"20612","id":"91.206.52.127-01984d132ebe0022","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,8758,6830,6730,6830,174,23673],"community":[[6730,6200],[6730,6210],[6730,6214],[6830,17000],[6830,17504],[6830,34107],[8758,110],[8758,300],[20612,8758]],"origin":"IGP","announcements":[{"next_hop":"91.206.52.2","prefixes":["124.248.160.0/19"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006E02000000534001010040021E0207000050840000223600001AAE00001A4A00001AAE000000AE00005C794003045BCE3402C008241A4A18381A4A18421A4A18461AAE42681AAE44601AAE853B2236006E2236012C50842236137CF8A0"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ebe0025","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:24::7f","peer_asn":"20612","id":"2001:7f8:24::7f-01984d132ebe0028","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,9044,1299,2914,37468,61609],"community":[[20612,9044]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::25","prefixes":["2804:87bc:dc04::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005F02000000484001010040021A020600005084000023540000051300000B620000925C0000F0A9C0080450842354900E001C00020110200107F80024000000000000000000250030280487BCDC04"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80002","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80005","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80008","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1056],[65000,50041],[65000,65031],[65000,65101],[65000,65151]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008A0200000073900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0082000001B1B000034170000E077206A0420FDE8C379FDE8FE07FDE8FE4DFDE8FE7FE0200C0000206A0000000100000420"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8000b","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,57463,34927,34927,34927,34927,52025],"community":[[0,6695],[0,6777],[0,6939],[0,12876],[0,16276],[0,32934],[0,41441],[7,1111],[6939,0],[8075,0],[8298,1101],[8866,0],[15169,0],[16509,0],[20940,0],[24940,0],[32934,0],[34927,722],[36040,0],[49544,0],[59900,0],[60068,0],[64700,34927],[65400,0],[65400,65400]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00F902000000E2900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240021E02070000206A0000E0770000886F0000886F0000886F0000886F0000CB39C0086400001A2700001A7900001B1B0000324C00003F94000080A60000A1E1000704571B1B00001F8B0000206A044D22A200003B410000407D000051CC0000616C000080A60000886F02D28CC80000C1880000E9FC0000EAA40000FCBC886FFF780000FF78FF78E010080002E077000004D2C020180000206A000000010000044D0000E0770000FCBC0000886F"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8000e","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80011","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,25091,34927,52025],"community":[[8298,2000],[25091,23407],[65400,34307],[65401,407]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0082020000006B900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240021202040000206A000062030000886F0000CB39C00810206A07D062035B6FFF788603FF790197E0200C0000206A0000000200006203"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80014","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80017","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1031]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0407E0200C0000206A0000000100000407"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8001a","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8001d","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80020","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80023","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,58299,52025],"community":[[8298,2005],[58299,1100]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0076020000005F900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020E02030000206A0000E3BB0000CB39C00808206A07D5E3BB044CE0200C0000206A000000020000E3BB"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80026","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80029","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8002c","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8002f","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1056],[65000,50041],[65000,65031],[65000,65101],[65000,65151]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008A0200000073900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0082000001B1B000034170000E077206A0420FDE8C379FDE8FE07FDE8FE4DFDE8FE7FE0200C0000206A0000000100000420"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80032","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80035","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80038","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8003b","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,55818,45147,150279,214028,214028,214028],"community":[[20,1159],[8298,1041],[55818,1000],[57463,57463],[64700,55818],[65400,0],[65400,65400],[65535,1566],[65535,2222],[65535,2667],[65535,6666]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2a0f:85c1:8b9::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00B6020000009F900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302A0F85C108B94001010040021E02070000206A0000DA0A0000B05B00024B070003440C0003440C0003440CC0082C00140487206A0411DA0A03E8E077E077FCBCDA0AFF780000FF78FF78FFFF061EFFFF08AEFFFF0A6BFFFF1A0AC020180000206A00000001000004110000E0770000FCBC0000DA0A"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8003e","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80041","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80044","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,58299,52025],"community":[[8298,2005],[58299,1100]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0076020000005F900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020E02030000206A0000E3BB0000CB39C00808206A07D5E3BB044CE0200C0000206A000000020000E3BB"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80047","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1056],[65000,50041],[65000,65031],[65000,65101],[65000,65151]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008A0200000073900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0082000001B1B000034170000E077206A0420FDE8C379FDE8FE07FDE8FE4DFDE8FE7FE0200C0000206A0000000100000420"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8004a","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8004d","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80050","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80053","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80056","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"187.16.214.32","peer_asn":"60503","id":"187.16.214.32-01984d132b080000","host":"rrc15.ripe.net","type":"UPDATE","path":[60503,14840,262473],"community":[[14840,30],[14840,600],[14840,7620],[26162,14840],[26162,64661],[26162,64671],[26162,64685],[26162,65011],[26162,65111],[26162,65122],[26162,65131],[60503,1000]],"origin":"INCOMPLETE","aggregator":"65064:10.100.64.1","announcements":[{"next_hop":"187.16.214.32","prefixes":["177.47.213.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF015E02000001434001010240020E02030000EC57000039F800040149400304BB10D620400600C007080000FE280A644001C0083039F8001E39F8025839F81DC4663239F86632FC956632FC9F6632FCAD6632FDF36632FE576632FE626632FE6BEC5703E8C0108000026632000039F8000266320000FC95000266320000FC9F000266320000FCAD000266320000FDF3000266320000FE57000266320000FE62000266320000FE6B00036632000039F8000366320000FC95000366320000FC9F000366320000FCAD000366320000FDF3000366320000FE57000366320000FE62000366320000FE6BC020600000663200000000000039F800006632000000000000FDF300006632000000640000000100006632000000C800000002000066320000012C00000001000066320000029400000001000066320000029E0000000100006632000002A80000000518B12FD5"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"187.16.214.32","peer_asn":"60503","id":"187.16.214.32-01984d132b080003","host":"rrc15.ripe.net","type":"UPDATE","path":[60503,61621,263069],"community":[[26162,61621],[26162,64661],[26162,64671],[26162,64685],[26162,65011],[26162,65111],[26162,65121],[26162,65131],[61621,10090],[61621,10093],[61621,40900],[61621,49005],[61621,60004],[61621,60011],[61621,60021],[61621,60031],[61621,60041],[61621,60051],[61621,60077],[60503,1000]],"origin":"IGP","announcements":[{"next_hop":"187.16.214.32","prefixes":["168.0.128.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF017002000001554001010040020E02030000EC570000F0B50004039D400304BB10D620C008506632F0B56632FC956632FC9F6632FCAD6632FDF36632FE576632FE616632FE6BF0B5276AF0B5276DF0B59FC4F0B5BF6DF0B5EA64F0B5EA6BF0B5EA75F0B5EA7FF0B5EA89F0B5EA93F0B5EAADEC5703E8E01080000266320000F0B5000266320000FC95000266320000FC9F000266320000FCAD000266320000FDF3000266320000FE57000266320000FE61000266320000FE6B000366320000F0B5000366320000FC95000366320000FC9F000366320000FCAD000366320000FDF3000366320000FE57000366320000FE61000366320000FE6BE0206000006632000000000000F0B500006632000000000000FDF300006632000000640000000100006632000000C800000001000066320000012C00000001000066320000029400000001000066320000029E0000000100006632000002A80000000516A80080"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"2001:12f8::20","peer_asn":"28571","id":"2001:12f8::20-01984d132b080006","host":"rrc15.ripe.net","type":"UPDATE","path":[28571,1251,15830,3356,1299,22616],"community":[[15830,400],[15830,3356],[15830,3425]],"origin":"IGP","announcements":[{"next_hop":"2001:12f8::20,fe80::ae4b:c804:b184:d7c1","prefixes":["2a03:eec0:3212::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007702000000604001010040021A020600006F9B000004E300003DD600000D1C0000051300005858C0080C3DD601903DD60D1C3DD60D61900E002C00020120200112F8000000000000000000000020FE80000000000000AE4BC804B184D7C100302A03EEC03212"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"2001:12f8::20","peer_asn":"28571","id":"2001:12f8::20-01984d132b080009","host":"rrc15.ripe.net","type":"UPDATE","path":[28571,61610,53062,3356,2914,137990,140731,140731,140731,140731,140731,140731,140731,140731,140731],"community":[[53062,10072],[53062,10074],[53062,30091],[61610,410],[61610,4000],[61610,4101]],"origin":"IGP","announcements":[{"next_hop":"2001:12f8::20,fe80::ae4b:c804:b184:d7c1","prefixes":["2406:840:9203::/48","2406:840:eb83::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00AE02000000974001010040023E020F00006F9B0000F0AA0000CF4600000D1C00000B6200021B06000225BB000225BB000225BB000225BB000225BB000225BB000225BB000225BB000225BBC00818CF462758CF46275ACF46758BF0AA019AF0AA0FA0F0AA1005900E003300020120200112F8000000000000000000000020FE80000000000000AE4BC804B184D7C100302406084092033024060840EB83"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"2001:12f8::20","peer_asn":"28571","id":"2001:12f8::20-01984d132b08000c","host":"rrc15.ripe.net","type":"UPDATE","path":[28571,1251,15830,12956,6453,19905],"community":[[15830,400],[15830,3425],[15830,12956]],"origin":"IGP","announcements":[{"next_hop":"2001:12f8::20,fe80::ae4b:c804:b184:d7c1","prefixes":["2610:a1:1028::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007702000000604001010040021A020600006F9B000004E300003DD60000329C0000193500004DC1C0080C3DD601903DD60D613DD6329C900E002C00020120200112F8000000000000000000000020FE80000000000000AE4BC804B184D7C10030261000A11028"}} +{"type":"ris_message","data":{"timestamp":1753639759.600,"peer":"2001:12f8::20","peer_asn":"28571","id":"2001:12f8::20-01984d132ef00002","host":"rrc15.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2a03:eec0:3212:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A000201302A03EEC03212"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"196.60.8.178","peer_asn":"37271","id":"196.60.8.178-01984d132b080000","host":"rrc19.ripe.net","type":"UPDATE","path":[37271,174,3356,9002,214294],"community":[[174,21100],[174,22008],[37271,5002],[37271,5100],[37271,5102]],"origin":"IGP","med":1810,"announcements":[{"next_hop":"196.60.8.178","prefixes":["195.216.179.0/24","176.116.6.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0061020000004240010100400216020500009197000000AE00000D1C0000232A00034516400304C43C08B280040400000712C0081400AE526C00AE55F89197138A919713EC919713EE18C3D8B318B07406"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"196.60.9.165","peer_asn":"917","id":"196.60.9.165-01984d132b080003","host":"rrc19.ripe.net","type":"UPDATE","path":[917,60068,37468,23947,131736],"community":[[917,59001],[23947,20],[24115,23947],[24115,24115],[24115,65012],[37468,2000],[37468,2500],[37468,2510],[37468,2511],[37468,15000],[37468,15100],[37468,15101],[37468,37468],[57695,13000],[60068,204],[60068,2000],[60068,2330],[60068,7180]],"origin":"IGP","announcements":[{"next_hop":"196.60.9.165","prefixes":["103.132.12.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00C902000000AE400101004002160205000003950000EAA40000925C00005D8B00020298400304C43C09A5C008480395E6795D8B00145E335D8B5E335E335E33FDF4925C07D0925C09C4925C09CE925C09CF925C3A98925C3AFC925C3AFD925C925CE15F32C8EAA400CCEAA407D0EAA4091AEAA41C0CC0203C00005E33000003E80000000100005E33000003E90000000100005E33000003EA0000000100005E33000003EB0000000000005E33000003EC00005D8B1867840C"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"196.60.9.84","peer_asn":"37697","id":"196.60.9.84-01984d132b080006","host":"rrc19.ripe.net","type":"UPDATE","path":[37697,37497,174,3356,7195,52863,262880],"community":[[174,21300],[174,22046],[37497,4001],[37697,2000]],"origin":"IGP","announcements":[{"next_hop":"196.60.9.84","prefixes":["177.10.233.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005A020000003F4001010040021E02070000934100009279000000AE00000D1C00001C1B0000CE7F000402E0400304C43C0954C0081000AE533400AE561E92790FA1934107D018B10AE9"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"196.60.9.84","peer_asn":"37697","id":"196.60.9.84-01984d132b080009","host":"rrc19.ripe.net","type":"KEEPALIVE","raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001304"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"196.60.9.165","peer_asn":"917","id":"196.60.9.165-01984d132b08000c","host":"rrc19.ripe.net","type":"UPDATE","path":[917,60068,174,3356,7195,52863,262880],"community":[[174,21300],[174,22046],[917,59001],[57695,13000],[60068,204],[60068,2000],[60068,2010],[60068,7180]],"origin":"IGP","announcements":[{"next_hop":"196.60.9.165","prefixes":["177.10.233.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006A020000004F4001010040021E0207000003950000EAA4000000AE00000D1C00001C1B0000CE7F000402E0400304C43C09A5C0082000AE533400AE561E0395E679E15F32C8EAA400CCEAA407D0EAA407DAEAA41C0C18B10AE9"}} +{"type":"ris_message","data":{"timestamp":1753639759.600,"peer":"196.60.8.178","peer_asn":"37271","id":"196.60.8.178-01984d132ef00000","host":"rrc19.ripe.net","type":"UPDATE","path":[37271,174,20473,25048],"community":[[174,21101],[174,22012],[37271,5002],[37271,5100],[37271,5102]],"origin":"INCOMPLETE","med":1810,"announcements":[{"next_hop":"196.60.8.178","prefixes":["81.90.132.0/24","81.90.133.0/24","81.90.139.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0061020000003E40010102400212020400009197000000AE00004FF9000061D8400304C43C08B280040400000712C0081400AE526D00AE55FC9197138A919713EC919713EE18515A8418515A8518515A8B"}} +{"type":"ris_message","data":{"timestamp":1753639759.600,"peer":"196.60.9.165","peer_asn":"917","id":"196.60.9.165-01984d132ef00003","host":"rrc19.ripe.net","type":"UPDATE","path":[917,60068,5511,12389,8369],"community":[[917,59001],[5511,500],[5511,521],[5511,999],[5511,10009],[5511,30428],[5511,30482],[5511,30652],[5511,30653],[5511,41418],[57695,13000],[60068,204],[60068,2000],[60068,2260],[60068,7180]],"origin":"INCOMPLETE","announcements":[{"next_hop":"196.60.9.165","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007E0200000063400101024002160205000003950000EAA40000158700003065000020B1400304C43C09A5C0083C0395E679158701F415870209158703E715872719158776DC15877712158777BC158777BD1587A1CAE15F32C8EAA400CCEAA407D0EAA408D4EAA41C0C18C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639759.600,"peer":"2001:43f8:6d0::178","peer_asn":"37271","id":"2001:43f8:6d0::178-01984d132ef00006","host":"rrc19.ripe.net","type":"UPDATE","path":[37271,33891,64289,52025],"community":[[33891,33892],[33891,40001],[37271,1005],[37271,2150],[37271,2155],[37271,3528],[37271,4006],[37271,5002],[37271,5200],[37271,5212],[64289,3000]],"origin":"INCOMPLETE","med":2010,"announcements":[{"next_hop":"2001:43f8:6d0::178","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0086020000006F40010102400212020400009197000084630000FB210000CB39800404000007DAC0082C8463846484639C41919703ED919708669197086B91970DC891970FA69197138A919714509197145CFB210BB8900E001C00020110200143F806D00000000000000000017800302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.600,"peer":"196.60.8.178","peer_asn":"37271","id":"196.60.8.178-01984d132ef00009","host":"rrc19.ripe.net","type":"UPDATE","path":[37271,3356,14840,262473],"community":[[3356,5],[3356,22],[3356,100],[3356,123],[3356,800],[3356,901],[3356,2190],[37271,5002],[37271,5100],[37271,5101]],"origin":"IGP","med":1810,"aggregator":"65064:10.100.64.1","announcements":[{"next_hop":"196.60.8.178","prefixes":["177.47.213.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007B02000000604001010040021202040000919700000D1C000039F800040149400304C43C08B280040400000712400600C007080000FE280A644001C008280D1C00050D1C00160D1C00640D1C007B0D1C03200D1C03850D1C088E9197138A919713EC919713ED18B12FD5"}} +{"type":"ris_message","data":{"timestamp":1753639759.600,"peer":"2001:43f8:6d0::9:165","peer_asn":"917","id":"2001:43f8:6d0::9:165-01984d132ef0000c","host":"rrc19.ripe.net","type":"UPDATE","path":[917,60068,174,52025,52025],"community":[[174,21101],[174,22010],[917,59001],[57695,13000],[60068,204],[60068,2000],[60068,2010],[60068,7180]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:43f8:6d0::9:165","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00770200000060400101024002160205000003950000EAA4000000AE0000CB390000CB39C0082000AE526D00AE55FA0395E679E15F32C8EAA400CCEAA407D0EAA407DAEAA41C0C900E001C00020110200143F806D00000000000000009016500302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.610,"peer":"2001:43f8:6d0::9:165","peer_asn":"917","id":"2001:43f8:6d0::9:165-01984d132efa0002","host":"rrc19.ripe.net","type":"UPDATE","path":[917,60068,37468,34927,52025],"community":[[917,59001],[34927,722],[37468,2000],[37468,2200],[37468,2260],[37468,2262],[37468,12000],[37468,12600],[37468,12601],[37468,12602],[37468,37468],[57695,13000],[60068,204],[60068,2000],[60068,2330],[60068,7180],[65000,52054],[65000,65031],[65000,65101],[65000,65151]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:43f8:6d0::9:165","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A70200000090400101024002160205000003950000EAA40000925C0000886F0000CB39C008500395E679886F02D2925C07D0925C0898925C08D4925C08D6925C2EE0925C3138925C3139925C313A925C925CE15F32C8EAA400CCEAA407D0EAA4091AEAA41C0CFDE8CB56FDE8FE07FDE8FE4DFDE8FE7F900E001C00020110200143F806D00000000000000009016500302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.610,"peer":"196.60.8.178","peer_asn":"37271","id":"196.60.8.178-01984d132efa0005","host":"rrc19.ripe.net","type":"UPDATE","path":[37271,174,3356,9002,214294],"community":[[174,21100],[174,22005],[37271,5002],[37271,5100],[37271,5102]],"origin":"IGP","med":2010,"announcements":[{"next_hop":"196.60.8.178","prefixes":["195.216.179.0/24","176.116.6.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0061020000004240010100400216020500009197000000AE00000D1C0000232A00034516400304C43C08B2800404000007DAC0081400AE526C00AE55F59197138A919713EC919713EE18C3D8B318B07406"}} +{"type":"ris_message","data":{"timestamp":1753639759.610,"peer":"2001:43f8:6d0::178","peer_asn":"37271","id":"2001:43f8:6d0::178-01984d132efa0008","host":"rrc19.ripe.net","type":"UPDATE","path":[37271,3257,174,53667,202256],"community":[[3257,8047],[3257,30157],[3257,50001],[3257,53300],[3257,53301],[37271,5002],[37271,5100],[37271,5107]],"origin":"IGP","med":1910,"announcements":[{"next_hop":"2001:43f8:6d0::178","prefixes":["2a06:de02:5bb::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007E02000000674001010040021602050000919700000CB9000000AE0000D1A30003161080040400000776C008200CB91F6F0CB975CD0CB9C3510CB9D0340CB9D0359197138A919713EC919713F3900E001C00020110200143F806D00000000000000000017800302A06DE0205BB"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"45.65.244.1","peer_asn":"265721","id":"45.65.244.1-01984d132ae00002","host":"rrc24.ripe.net","type":"UPDATE","path":[265721,64126,1299,4637,4637,4637,4637,7568,4750],"community":[],"origin":"IGP","announcements":[{"next_hop":"45.65.244.1","prefixes":["58.137.31.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004F020000003440010100400226020900040DF90000FA7E000005130000121D0000121D0000121D0000121D00001D900000128E4003042D41F401183A891F"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"45.65.244.1","peer_asn":"265721","id":"45.65.244.1-01984d132ec80002","host":"rrc24.ripe.net","type":"UPDATE","path":[265721,64126,1299,174,262645,263561],"community":[],"origin":"IGP","announcements":[{"next_hop":"45.65.244.1","prefixes":["186.251.12.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004302000000284001010040021A020600040DF90000FA7E00000513000000AE000401F5000405894003042D41F40116BAFB0C"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"45.65.244.1","peer_asn":"265721","id":"45.65.244.1-01984d132ec80005","host":"rrc24.ripe.net","type":"UPDATE","path":[265721,64126,174,262645,263561],"community":[],"origin":"IGP","announcements":[{"next_hop":"45.65.244.1","prefixes":["186.251.12.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003F020000002440010100400216020500040DF90000FA7E000000AE000401F5000405894003042D41F40116BAFB0C"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"45.65.244.1","peer_asn":"265721","id":"45.65.244.1-01984d132ec80008","host":"rrc24.ripe.net","type":"UPDATE","path":[265721,64126,1299,6453,22356,22356,22356,13786,264409,11432],"community":[],"origin":"IGP","announcements":[{"next_hop":"45.65.244.1","prefixes":["200.155.182.0/24","200.155.183.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005702000000384001010040022A020A00040DF90000FA7E0000051300001935000057540000575400005754000035DA000408D900002CA84003042D41F40118C89BB618C89BB7"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:de8:8::6:4096:1","peer_asn":"64096","id":"2001:de8:8::6:4096:1-01984d132ebe0001","host":"rrc06.ripe.net","type":"KEEPALIVE","raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001304"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"195.66.224.193","peer_asn":"9002","id":"195.66.224.193-01984d132aea0002","host":"rrc01.ripe.net","type":"UPDATE","path":[9002,3356,3257,3257,400282,52863,262880],"community":[],"origin":"IGP","announcements":[{"next_hop":"195.66.224.193","prefixes":["177.10.233.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0047020000002C4001010040021E02070000232A00000D1C00000CB900000CB900061B9A0000CE7F000402E0400304C342E0C118B10AE9"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:4::98d2:1","peer_asn":"39122","id":"2001:7f8:4::98d2:1-01984d132aea0005","host":"rrc01.ripe.net","type":"UPDATE","path":[39122,1299,6453,8151,396966],"community":[[1299,431],[1299,4000],[1299,20000],[1299,20600]],"origin":"IGP","med":0,"announcements":[{"next_hop":"2001:7f8:4::98d2:1,fe80::f2d7:afff:fe2a:aaaa","prefixes":["2604:d440:c005::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007E0200000067400101004002160205000098D2000005130000193500001FD700060EA680040400000000C00810051301AF05130FA005134E2005135078900E002C00020120200107F8000400000000000098D20001FE80000000000000F2D7AFFFFE2AAAAA00302604D440C005"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:4::232a:1","peer_asn":"9002","id":"2001:7f8:4::232a:1-01984d132aea0008","host":"rrc01.ripe.net","type":"UPDATE","path":[9002,12956,61832,28598],"community":[],"origin":"IGP","aggregator":"28598:138.122.80.84","announcements":[{"next_hop":"2001:7f8:4::232a:1,fe80::76e7:9800:a21:ad1d","prefixes":["2804:248:100::/40"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006D02000000564001010040021202040000232A0000329C0000F18800006FB6400600C0070800006FB68A7A5054900E002B00020120200107F80004000000000000232A0001FE8000000000000076E798000A21AD1D00282804024801"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:4::724:1","peer_asn":"1828","id":"2001:7f8:4::724:1-01984d132aea000b","host":"rrc01.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2602:fa7e:17:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0024020000000D800F0A000201302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:4::98d2:1","peer_asn":"39122","id":"2001:7f8:4::98d2:1-01984d132aea000e","host":"rrc01.ripe.net","type":"UPDATE","path":[39122,1299,16509,8987],"community":[[1299,430],[1299,1000],[1299,35000],[1299,35400]],"origin":"IGP","med":0,"announcements":[{"next_hop":"2001:7f8:4::98d2:1,fe80::f2d7:afff:fe2a:aaaa","prefixes":["2605:9cc0:c0d::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063400101004002120204000098D2000005130000407D0000231B80040400000000C00810051301AE051303E8051388B805138A48900E002C00020120200107F8000400000000000098D20001FE80000000000000F2D7AFFFFE2AAAAA003026059CC00C0D"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"195.66.226.97","peer_asn":"39122","id":"195.66.226.97-01984d132aea0011","host":"rrc01.ripe.net","type":"UPDATE","path":[39122,1299,174,264409,11432],"community":[[1299,430],[1299,4000],[1299,25000],[1299,25120]],"origin":"IGP","med":0,"announcements":[{"next_hop":"195.66.226.97","prefixes":["200.155.183.0/24","200.155.182.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005D020000003E400101004002160205000098D200000513000000AE000408D900002CA8400304C342E26180040400000000C00810051301AE05130FA0051361A80513622018C89BB718C89BB6"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"195.66.224.81","peer_asn":"1828","id":"195.66.224.81-01984d132aea0014","host":"rrc01.ripe.net","type":"UPDATE","path":[1828,262535],"community":[[1828,20],[1828,21110]],"origin":"IGP","announcements":[{"next_hop":"195.66.224.81","prefixes":["138.36.195.0/24","138.36.194.0/24","138.36.193.0/24","138.36.192.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004A02000000234001010040020A02020000072400040187400304C342E051C008080724001407245276188A24C3188A24C2188A24C1188A24C0"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:4::724:1","peer_asn":"1828","id":"2001:7f8:4::724:1-01984d132aea0017","host":"rrc01.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2602:fa7e:17:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0024020000000D800F0A000201302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.580,"peer":"2001:7f8:4::98d2:1","peer_asn":"39122","id":"2001:7f8:4::98d2:1-01984d132af40000","host":"rrc01.ripe.net","type":"UPDATE","path":[39122,52025],"community":[[0,6939],[0,13335],[0,57463]],"origin":"IGP","med":0,"announcements":[{"next_hop":"2001:7f8:4::98d2:1,fe80::f2d7:afff:fe2a:aaaa","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00B902000000A24001010040020A0202000098D20000CB3980040400000000C0080C00001B1B000034170000E077C020480003258D00000383000000120003258D00000385000000120003258D000003850000003E0003258D00000385000000F50003258D00000385000001760003258D000003850000043B900E002C00020120200107F8000400000000000098D20001FE80000000000000F2D7AFFFFE2AAAAA00302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.580,"peer":"195.66.226.97","peer_asn":"39122","id":"195.66.226.97-01984d132af40003","host":"rrc01.ripe.net","type":"UPDATE","path":[39122,7552,38623,23673,23673,23673,23673],"community":[[8714,65010],[8714,65012]],"origin":"IGP","med":0,"announcements":[{"next_hop":"195.66.226.166","prefixes":["124.248.160.0/19"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007B02000000604001010040021E0207000098D200001D80000096DF00005C7900005C7900005C7900005C79400304C342E2A680040400000000C00808220AFDF2220AFDF4C020180000220A000003E8000000010000220A000003E900000002E023040000220A137CF8A0"}} +{"type":"ris_message","data":{"timestamp":1753639758.580,"peer":"195.66.224.81","peer_asn":"1828","id":"195.66.224.81-01984d132af40006","host":"rrc01.ripe.net","type":"UPDATE","path":[1828,13030,60728],"community":[[1828,20],[1828,23301]],"origin":"IGP","announcements":[{"next_hop":"195.66.224.175","prefixes":["185.22.52.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004202000000274001010040020E020300000724000032E60000ED38400304C342E0AFC008080724001407245B0516B91634"}} +{"type":"ris_message","data":{"timestamp":1753639758.580,"peer":"2001:7f8:4::724:1","peer_asn":"1828","id":"2001:7f8:4::724:1-01984d132af40009","host":"rrc01.ripe.net","type":"UPDATE","path":[1828,64289,52025],"community":[[1828,20],[1828,23303]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:4::724:1,fe80::fe0a:81ff:fefe:b932","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A5020000008E4001010040020E0203000007240000FB210000CB39C008080724001407245B07C0203C00001A27000007770000005900001A27000007780000000000001A27000007790000011400001A270000077A000000960000FB2100000BB80000000A800E2C00020120200107F8000400000000000007240001FE80000000000000FE0A81FFFEFEB93200302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"80.81.192.187","peer_asn":"33891","id":"80.81.192.187-01984d132ad60002","host":"rrc12.ripe.net","type":"KEEPALIVE","raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001304"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"80.81.196.156","peer_asn":"34927","id":"80.81.196.156-01984d132ad60005","host":"rrc12.ripe.net","type":"UPDATE","path":[34927,9002,7568,4750],"community":[[34927,110],[34927,910],[34927,948]],"origin":"IGP","announcements":[{"next_hop":"80.81.196.156","prefixes":["58.137.31.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004A020000002F4001010040021202040000886F0000232A00001D900000128E4003045051C49CC0080C886F006E886F038E886F03B4183A891F"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8::e3bb:0:1","peer_asn":"58299","id":"2001:7f8::e3bb:0:1-01984d132ad60008","host":"rrc12.ripe.net","type":"UPDATE","path":[58299,52025],"community":[[58299,1100]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8::e3bb:0:1,fe80::3eec:efff:fe46:697d","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00600200000049900E002C00020120200107F8000000000000E3BB00000001FE800000000000003EECEFFFFE46697D00302602FA7E0017400101025002000A02020000E3BB0000CB39C00804E3BB044C"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"80.81.196.156","peer_asn":"34927","id":"80.81.196.156-01984d132ad6000b","host":"rrc12.ripe.net","type":"UPDATE","path":[34927,24482,45430,4750],"community":[[0,62041],[34927,730],[34927,782]],"origin":"IGP","med":0,"announcements":[{"next_hop":"80.81.196.156","prefixes":["58.137.31.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008402000000694001010040021202040000886F00005FA20000B1760000128E4003045051C49C80040400000000C0080C0000F259886F02DA886F030EE020300000C457000007770000003E0000C457000007780000006C0000C45700000779000001140000C4570000077A00000096183A891F"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8::e3bb:0:1","peer_asn":"58299","id":"2001:7f8::e3bb:0:1-01984d132ad6000e","host":"rrc12.ripe.net","type":"UPDATE","path":[58299,34549,1299,16509,8987],"community":[[1299,35000],[34549,100],[34549,1299],[58299,1000]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8::e3bb:0:1,fe80::3eec:efff:fe46:697d","prefixes":["2605:9cc0:c0d::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00780200000061900E002C00020120200107F8000000000000E3BB00000001FE800000000000003EECEFFFFE46697D003026059CC00C0D400101005002001602050000E3BB000086F5000005130000407D0000231BC00810051388B886F5006486F50513E3BB03E8"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8::886f:0:1","peer_asn":"34927","id":"2001:7f8::886f:0:1-01984d132ad60011","host":"rrc12.ripe.net","type":"UPDATE","path":[34927,52025],"community":[[34927,722]],"origin":"INCOMPLETE","med":0,"announcements":[{"next_hop":"2001:7f8::886f:0:1,fe80::92e2:baff:fe5e:7908","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0065020000004E4001010240020A02020000886F0000CB3980040400000000E00804886F02D2800E2C00020120200107F8000000000000886F00000001FE8000000000000092E2BAFFFE5E790800302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8::fbdb:0:1","peer_asn":"64475","id":"2001:7f8::fbdb:0:1-01984d132ad60014","host":"rrc12.ripe.net","type":"UPDATE","path":[64475,52025,52025,52025,52025],"community":[[0,6939],[0,13335],[0,57463],[64475,201],[64475,210],[65000,50041],[65000,65031],[65000,65101],[65000,65151]],"origin":"INCOMPLETE","med":0,"announcements":[{"next_hop":"2001:7f8::fbdb:0:1,fe80::7efe:90ff:fe3b:3e5b","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0091020000007A4001010240021602050000FBDB0000CB390000CB390000CB390000CB3980040400000000C0082400001B1B000034170000E077FBDB00C9FBDB00D2FDE8C379FDE8FE07FDE8FE4DFDE8FE7F800E2C00020120200107F8000000000000FBDB00000001FE800000000000007EFE90FFFE3B3E5B00302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"80.81.196.197","peer_asn":"58299","id":"80.81.196.197-01984d132ad60017","host":"rrc12.ripe.net","type":"UPDATE","path":[58299,174,262645,263561],"community":[[174,21301],[174,22042],[58299,1000]],"origin":"IGP","announcements":[{"next_hop":"80.81.196.197","prefixes":["186.251.12.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004B0200000030400101005002001202040000E3BB000000AE000401F5000405894003045051C4C5C0080C00AE533500AE561AE3BB03E816BAFB0C"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"80.81.196.156","peer_asn":"34927","id":"80.81.196.156-01984d132ad6001a","host":"rrc12.ripe.net","type":"UPDATE","path":[34927,7195,55211],"community":[[34927,130],[34927,1301]],"origin":"IGP","med":0,"announcements":[{"next_hop":"80.81.196.156","prefixes":["76.72.161.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A002000000854001010040020E02030000886F00001C1B0000D7AB4003045051C49C80040400000000C00808886F0082886F0515C0205400001A27000007770000005900001A27000007780000000000001A27000007790000011400001A270000077A0000009600001C1B000000010000000000001C1B0001D53C0001D53C00001C1B005B8D8000000000184C48A1"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe0028","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,52025],"community":[[0,6939],[0,13335],[0,57463],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A6020000008F900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020A02020000205B0000CB39C0081800001B1B000034170000E077205B0001205B0065205B0066E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B0000000800000DB8"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe002b","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,6453,64289,52025],"community":[[6453,2000],[6453,2400],[6453,2406],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00AE0200000097900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240021202040000205B000019350000FB210000CB39C00818193507D01935096019350966205B0001205B0065205B0066E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B000000080000001A"}} +{"type":"ris_message","data":{"timestamp":1753639758.580,"peer":"2001:7f8:1c:24a::1a4a:1","peer_asn":"6730","id":"2001:7f8:1c:24a::1a4a:1-01984d132af40002","host":"rrc04.ripe.net","type":"UPDATE","path":[6730,6830,174,53667,202256],"community":[[6730,6100],[6830,17000],[6830,17504],[6830,23001],[6830,35301]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:1c:24a::1a4a:1","prefixes":["2a06:de02:5bb::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006B020000005440010100400216020500001A4A00001AAE000000AE0000D1A300031610C008141A4A17D41AAE42681AAE44601AAE59D91AAE89E5900E001C00020110200107F8001C024A000000001A4A000100302A06DE0205BB"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe002c","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,34927,52025],"community":[[8283,1],[8283,101],[8283,102],[34927,722]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00EA02000000D3900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020E02030000205B0000886F0000CB39C00810205B0001205B0065205B0066886F02D2C020780000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B0000000800000ECD0003258D00000383000000120003258D00000385000000120003258D000003850000003E0003258D00000385000000F50003258D00000385000001760003258D000003850000043B"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe002f","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,52025],"community":[[0,6939],[0,13335],[0,57463],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A6020000008F900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020A02020000205B0000CB39C0081800001B1B000034170000E077205B0001205B0065205B0066E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B0000000800000DB8"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe0032","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,34927,52025],"community":[[8283,1],[8283,101],[8283,102],[34927,722]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00EA02000000D3900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020E02030000205B0000886F0000CB39C00810205B0001205B0065205B0066886F02D2C020780000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B0000000800000ECD0003258D00000383000000120003258D00000385000000120003258D000003850000003E0003258D00000385000000F50003258D00000385000001760003258D000003850000043B"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe0035","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,6453,64289,52025],"community":[[6453,2000],[6453,2400],[6453,2406],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00AE0200000097900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240021202040000205B000019350000FB210000CB39C00818193507D01935096019350966205B0001205B0065205B0066E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B000000080000001A"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe0038","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,64289,52025],"community":[[8283,1],[8283,101],[8283,102],[64289,3000]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00AE0200000097900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020E02030000205B0000FB210000CB39C00810205B0001205B0065205B0066FB210BB8C0203C0000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B0000000800000DB80000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe003b","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,52025],"community":[[0,6939],[0,13335],[0,57463],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A6020000008F900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020A02020000205B0000CB39C0081800001B1B000034170000E077205B0001205B0065205B0066E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B0000000800000DB8"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe003e","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,6453,64289,52025],"community":[[6453,2000],[6453,2400],[6453,2406],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00AE0200000097900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240021202040000205B000019350000FB210000CB39C00818193507D01935096019350966205B0001205B0065205B0066E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B000000080000001A"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe0041","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,6453,64289,52025],"community":[[6453,2000],[6453,2400],[6453,2406],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00AE0200000097900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240021202040000205B000019350000FB210000CB39C00818193507D01935096019350966205B0001205B0065205B0066E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B000000080000001A"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe0044","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,52025],"community":[[0,6939],[0,13335],[0,57463],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A6020000008F900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020A02020000205B0000CB39C0081800001B1B000034170000E077205B0001205B0065205B0066E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B0000000800000DB8"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe0047","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,400587,52025],"community":[[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF010A02000000F3900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020E02030000205B00061CCB0000CB39E0080C205B0001205B0065205B0066C0209C0000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B0000000800000ECD0003258D00000383000000120003258D00000385000000120003258D000003850000003E0003258D00000385000000F50003258D00000385000001760003258D000003850000043B00061CCB000000010000001200061CCB000000020000CB3900061CCB0000000300000002"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe004a","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,6453,64289,52025],"community":[[6453,2000],[6453,2400],[6453,2406],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00AE0200000097900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240021202040000205B000019350000FB210000CB39C00818193507D01935096019350966205B0001205B0065205B0066E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B000000080000001A"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe004d","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,52025],"community":[[0,6939],[0,13335],[0,57463],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A6020000008F900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020A02020000205B0000CB39C0081800001B1B000034170000E077205B0001205B0065205B0066E020300000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B0000000800000DB8"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:1::a500:8283:1","peer_asn":"8283","id":"2001:7f8:1::a500:8283:1-01984d132ebe0050","host":"rrc03.ripe.net","type":"UPDATE","path":[8283,52025],"community":[[0,6939],[0,13335],[0,57463],[8283,1],[8283,101],[8283,102]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:1::a500:8283:1,fe80::669d:99ff:feb1:31ac","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00EE02000000D7900E002C00020120200107F8000100000000A50082830001FE80000000000000669D99FFFEB131AC00302602FA7E00174001010240020A02020000205B0000CB39C0081800001B1B000034170000E077205B0001205B0065205B0066C020780000205B00000000000000010000205B00000005000000010000205B00000005000000020000205B0000000800000ECD0003258D00000383000000120003258D00000385000000120003258D000003850000003E0003258D00000385000000F50003258D00000385000001760003258D000003850000043B"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"194.68.123.136","peer_asn":"6667","id":"194.68.123.136-01984d132ae00000","host":"rrc07.ripe.net","type":"UPDATE","path":[6667,3356,701,63306,63376],"community":[[3356,3],[3356,22],[3356,86],[3356,575],[3356,666],[3356,901],[3356,2040],[6667,3004],[6667,4005],[6667,5001],[6667,8890]],"origin":"IGP","med":0,"announcements":[{"next_hop":"194.68.123.136","prefixes":["140.174.37.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0075020000005A40010100400216020500001A0B00000D1C000002BD0000F74A0000F790400304C2447B8880040400000000C0082C0D1C00030D1C00160D1C00560D1C023F0D1C029A0D1C03850D1C07F81A0B0BBC1A0B0FA51A0B13891A0B22BA188CAE25"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"194.68.123.136","peer_asn":"6667","id":"194.68.123.136-01984d132ae00003","host":"rrc07.ripe.net","type":"UPDATE","path":[6667,3356,2914,63306,63376],"community":[[2914,410],[2914,1005],[2914,2000],[2914,3000],[3356,2],[3356,22],[3356,86],[3356,508],[3356,666],[3356,901],[3356,2086],[6667,3004],[6667,4005],[6667,5001],[6667,8890]],"origin":"IGP","med":0,"announcements":[{"next_hop":"194.68.123.136","prefixes":["140.174.37.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0085020000006A40010100400216020500001A0B00000D1C00000B620000F74A0000F790400304C2447B8880040400000000C0083C0B62019A0B6203ED0B6207D00B620BB80D1C00020D1C00160D1C00560D1C01FC0D1C029A0D1C03850D1C08261A0B0BBC1A0B0FA51A0B13891A0B22BA188CAE25"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"194.68.123.136","peer_asn":"6667","id":"194.68.123.136-01984d132ae00006","host":"rrc07.ripe.net","type":"UPDATE","path":[6667,12389,8369],"community":[[6667,3001],[6667,4003],[6667,5203],[6667,8891]],"origin":"INCOMPLETE","med":0,"announcements":[{"next_hop":"194.68.123.182","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005102000000364001010240020E020300001A0B00003065000020B1400304C2447BB680040400000000C008101A0B0BB91A0B0FA31A0B14531A0B22BB18C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"194.68.123.136","peer_asn":"6667","id":"194.68.123.136-01984d132aea0002","host":"rrc07.ripe.net","type":"UPDATE","path":[6667,1299,174,264409,11432],"community":[[1299,25000],[6667,3004],[6667,4006],[6667,5010],[6667,8890]],"origin":"IGP","med":0,"announcements":[{"next_hop":"194.68.123.136","prefixes":["200.155.182.0/24","200.155.183.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0061020000004240010100400216020500001A0B00000513000000AE000408D900002CA8400304C2447B8880040400000000C00814051361A81A0B0BBC1A0B0FA61A0B13921A0B22BA18C89BB618C89BB7"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.136","peer_asn":"6667","id":"194.68.123.136-01984d132ed20000","host":"rrc07.ripe.net","type":"UPDATE","path":[6667,174,20473,25048],"community":[[174,21101],[174,22012],[6667,3004],[6667,4004],[6667,5009],[6667,8890]],"origin":"INCOMPLETE","med":0,"announcements":[{"next_hop":"194.68.123.136","prefixes":["81.90.139.0/24","81.90.132.0/24","81.90.133.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0074020000005140010102400212020400001A0B000000AE00004FF9000061D8400304C2447B8880040400000000C0081800AE526D00AE55FC1A0B0BBC1A0B0FA41A0B13911A0B22BAC0200C00004FF900000000BBCDCA8718515A8B18515A8418515A85"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:7f8:d:ff::136","peer_asn":"6667","id":"2001:7f8:d:ff::136-01984d132ed20003","host":"rrc07.ripe.net","type":"UPDATE","path":[6667,3257,1299,16509,8987],"community":[[3257,8778],[3257,30050],[3257,50001],[3257,53100],[3257,53101],[6667,3004],[6667,4003],[6667,5006],[6667,8890]],"origin":"IGP","med":0,"announcements":[{"next_hop":"2001:7f8:d:ff::136,fe80::ae78:d100:d752:e079","prefixes":["2605:9cc0:c0d::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0092020000007B40010100400216020500001A0B00000CB9000005130000407D0000231B80040400000000C008240CB9224A0CB975620CB9C3510CB9CF6C0CB9CF6D1A0B0BBC1A0B0FA31A0B138E1A0B22BA900E002C00020120200107F8000D00FF0000000000000136FE80000000000000AE78D100D752E079003026059CC00C0D"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.136","peer_asn":"6667","id":"194.68.123.136-01984d132ed20006","host":"rrc07.ripe.net","type":"UPDATE","path":[6667,9002,200019],"community":[[6667,3003],[6667,4002],[6667,5310],[6667,8890]],"origin":"IGP","med":0,"announcements":[{"next_hop":"194.68.123.136","prefixes":["176.123.2.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005102000000364001010040020E020300001A0B0000232A00030D53400304C2447B8880040400000000C008101A0B0BBB1A0B0FA21A0B14BE1A0B22BA18B07B02"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.136","peer_asn":"6667","id":"194.68.123.136-01984d132ed20009","host":"rrc07.ripe.net","type":"UPDATE","path":[6667,3257,6453,22356,22356,22356,13786,264409,11432],"community":[[3257,8921],[3257,30682],[3257,50001],[3257,54600],[3257,54601],[6667,3004],[6667,4003],[6667,5006],[6667,8890]],"origin":"IGP","med":0,"announcements":[{"next_hop":"194.68.123.136","prefixes":["200.155.182.0/24","200.155.183.0/24"]}],"withdrawals":["41.220.92.0/22","41.220.80.0/22","41.220.84.0/22","41.220.80.0/20","41.220.88.0/22"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00950200141629DC5C1629DC501629DC541429DC501629DC58006240010100400226020900001A0B00000CB900001935000057540000575400005754000035DA000408D900002CA8400304C2447B8880040400000000C008240CB922D90CB977DA0CB9C3510CB9D5480CB9D5491A0B0BBC1A0B0FA31A0B138E1A0B22BA18C89BB618C89BB7"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"217.29.66.158","peer_asn":"24482","id":"217.29.66.158-01984d132ebe0017","host":"rrc10.ripe.net","type":"UPDATE","path":[24482,23673],"community":[[24482,2],[24482,200],[24482,11000],[24482,11040],[24482,11041],[24482,65105],[55822,65021]],"origin":"IGP","med":147120,"announcements":[{"next_hop":"217.29.66.158","prefixes":["124.248.160.0/19"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006402000000494001010040020A020200005FA200005C79400304D91D429E80040400023EB0C0081C5FA200025FA200C85FA22AF85FA22B205FA22B215FA2FE51DA0EFDFDC0100800025FA200000136137CF8A0"}} +{"type":"ris_message","data":{"timestamp":1753639757.570,"peer":"196.60.8.221","peer_asn":"327804","id":"196.60.8.221-01984d1327020002","host":"rrc19.ripe.net","type":"UPDATE","path":[327804,5713,3491,138415,64013],"community":[],"origin":"IGP","announcements":[{"next_hop":"196.60.8.221","prefixes":["156.247.51.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0066020000004B4001010040021602050005007C0000165100000DA300021CAF0000FA0D400304C43C08DDC020240005007C0000006F000000020005007C0000014D000016510005007C0000037800000001189CF733"}} +{"type":"ris_message","data":{"timestamp":1753639757.570,"peer":"196.60.8.221","peer_asn":"327804","id":"196.60.8.221-01984d1327020005","host":"rrc19.ripe.net","type":"UPDATE","path":[327804,37271,52320,53087,53087,53087,53087,52901,52901,52901,52901,52901,263671],"community":[],"origin":"IGP","announcements":[{"next_hop":"196.60.8.221","prefixes":["191.241.129.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A020000005F40010100400236020D0005007C000091970000CC600000CF5F0000CF5F0000CF5F0000CF5F0000CEA50000CEA50000CEA50000CEA50000CEA5000405F7400304C43C08DDC020180005007C0000006F000000020005007C0000014D0000919718BFF181"}} +{"type":"ris_message","data":{"timestamp":1753639757.570,"peer":"2001:43f8:6d0::221","peer_asn":"327804","id":"2001:43f8:6d0::221-01984d1327020008","host":"rrc19.ripe.net","type":"UPDATE","path":[327804,37271,174,6453,4755,20473,40138],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:43f8:6d0::221,fe80::82ac:ac02:a84:c2f0","prefixes":["2402:e580:74ba::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0093020000007C4001010040021E02070005007C00009197000000AE000019350000129300004FF900009CCAC020240005007C0000006F000000020005007C0000014D000091970005007C0000037800000001900E002C00020120200143F806D000000000000000000221FE8000000000000082ACAC020A84C2F000302402E58074BA"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"196.60.9.141","peer_asn":"328214","id":"196.60.9.141-01984d132aea0002","host":"rrc19.ripe.net","type":"STATE","state":"connected","raw":""}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:43f8:6d0::221","peer_asn":"327804","id":"2001:43f8:6d0::221-01984d132aea0005","host":"rrc19.ripe.net","type":"UPDATE","path":[327804,37271,174,3356,22616],"community":[],"origin":"IGP","announcements":[{"next_hop":"2001:43f8:6d0::221,fe80::82ac:ac02:a84:c2f0","prefixes":["2a03:eec0:3212::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007F02000000684001010040021602050005007C00009197000000AE00000D1C00005858C020180005007C0000006F000000020005007C0000014D00009197900E002C00020120200143F806D000000000000000000221FE8000000000000082ACAC020A84C2F000302A03EEC03212"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:43f8:6d0::221","peer_asn":"327804","id":"2001:43f8:6d0::221-01984d132ed20001","host":"rrc19.ripe.net","type":"UPDATE","path":[327804,37271,33891,64289,52025],"community":[],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:43f8:6d0::221,fe80::82ac:ac02:a84:c2f0","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008B02000000744001010240021602050005007C00009197000084630000FB210000CB39C020240005007C0000006F000000020005007C0000014D000091970005007C0000037800000001900E002C00020120200143F806D000000000000000000221FE8000000000000082ACAC020A84C2F000302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ad60001","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,7195,55211],"community":[[7195,5],[8298,1046]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2607:b3c0:10::/44"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00CA02000000B3900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE324616002C2607B3C000104001010040020E02030000206A00001C1B0000D7ABC008081C1B0005206A0416C0206000001A27000007770000005900001A27000007780000000000001A27000007790000011400001A270000077A0000009600001C1B000000010000000000001C1B0001D53C0001D53C00001C1B005B8D80000000000000206A0000000100000416"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"91.206.53.12","peer_asn":"8298","id":"91.206.53.12-01984d132ad60004","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,23947,131736],"community":[[8298,1121],[23947,20]],"origin":"IGP","announcements":[{"next_hop":"91.206.53.12","prefixes":["103.132.12.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0058020000003D4001010040020E02030000206A00005D8B000202984003045BCE350CC00808206A04615D8B0014E0200C0000206A0000000100000461C0230400001A791867840C"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::7f","peer_asn":"20612","id":"2001:7f8:24::7f-01984d132ad60007","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,9044,1299,174,64289,52025],"community":[[20612,9044]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::25","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005F02000000484001010040021A0206000050840000235400000513000000AE0000FB210000CB39C0080450842354900E001C00020110200107F800240000000000000000002500302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"91.206.52.127","peer_asn":"20612","id":"91.206.52.127-01984d132ad6000a","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,8758,9002,7568,4750],"community":[[8758,110],[8758,301],[9002,0],[9002,64867],[20612,8758]],"origin":"IGP","announcements":[{"next_hop":"91.206.52.2","prefixes":["58.137.31.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0056020000003B40010100400216020500005084000022360000232A00001D900000128E4003045BCE3402C008142236006E2236012D232A0000232AFD6350842236183A891F"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ad6000d","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"91.206.53.12","peer_asn":"8298","id":"91.206.53.12-01984d132ad60010","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,7195,55211],"community":[[7195,5],[8298,1046]],"origin":"IGP","announcements":[{"next_hop":"91.206.53.12","prefixes":["76.72.161.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A5020000008A4001010040020E02030000206A00001C1B0000D7AB4003045BCE350CC008081C1B0005206A0416C0206000001A27000007770000005900001A27000007780000000000001A27000007790000011400001A270000077A0000009600001C1B000000010000000000001C1B0001D53C0001D53C00001C1B005B8D80000000000000206A0000000100000416184C48A1"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::7f","peer_asn":"20612","id":"2001:7f8:24::7f-01984d132ad60013","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,9044,1299,174,64289,52025],"community":[[20612,9044]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::25","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005F02000000484001010040021A0206000050840000235400000513000000AE0000FB210000CB39C0080450842354900E001C00020110200107F800240000000000000000002500302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"91.206.52.127","peer_asn":"20612","id":"91.206.52.127-01984d132ad60016","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,9044,9304,38623,23673,23673,23673,23673],"community":[[20612,9044]],"origin":"IGP","announcements":[{"next_hop":"91.206.52.37","prefixes":["124.248.160.0/19"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0059020000003E400101004002220208000050840000235400002458000096DF00005C7900005C7900005C7900005C794003045BCE3425C0080450842354E023040000220A137CF8A0"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ad60019","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"91.206.53.12","peer_asn":"8298","id":"91.206.53.12-01984d132ad6001c","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,23947,131736],"community":[[8298,1121],[23947,20]],"origin":"IGP","announcements":[{"next_hop":"91.206.53.12","prefixes":["103.132.12.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0058020000003D4001010040020E02030000206A00005D8B000202984003045BCE350CC00808206A04615D8B0014E0200C0000206A0000000100000461C0230400001A791867840C"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::7f","peer_asn":"20612","id":"2001:7f8:24::7f-01984d132ad6001f","host":"rrc20.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2a03:eec0:3212:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A000201302A03EEC03212"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"91.206.52.127","peer_asn":"20612","id":"91.206.52.127-01984d132ad60022","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,8758,15576,3356,262645,263561],"community":[[3356,5],[3356,22],[3356,100],[3356,123],[3356,800],[3356,903],[3356,2246],[8758,110],[8758,300],[15576,100],[15576,102],[15576,1000],[20612,8758]],"origin":"IGP","announcements":[{"next_hop":"91.206.52.2","prefixes":["186.251.12.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A020000005F4001010040021A0206000050840000223600003CD800000D1C000401F5000405894003045BCE3402C008340D1C00050D1C00160D1C00640D1C007B0D1C03200D1C03870D1C08C62236006E2236012C3CD800643CD800663CD803E85084223616BAFB0C"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ad60025","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,25091,34927,52025],"community":[[8298,2000],[25091,23407],[65400,34307],[65401,407]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0082020000006B900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240021202040000206A000062030000886F0000CB39C00810206A07D062035B6FFF788603FF790197E0200C0000206A0000000200006203"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"91.206.53.12","peer_asn":"8298","id":"91.206.53.12-01984d132ad60028","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,6939,12389,8369],"community":[[8298,1000]],"origin":"IGP","announcements":[{"next_hop":"91.206.53.12","prefixes":["193.105.156.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005102000000364001010040021202040000206A00001B1B00003065000020B14003045BCE350CE00804206A03E8E0200C0000206A00000001000003E818C1699C"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ad6002b","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ad6002e","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ad60031","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639758.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ad60034","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1041]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0411E0200C0000206A0000000100000411"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00002","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00005","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,25091,34927,52025],"community":[[8298,2000],[25091,23407],[65400,34307],[65401,407]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0082020000006B900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240021202040000206A000062030000886F0000CB39C00810206A07D062035B6FFF788603FF790197E0200C0000206A0000000200006203"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00008","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,51088,2914,20473,40138],"community":[[2914,410],[2914,1004],[2914,2000],[2914,3000],[8298,2020],[20473,15],[20473,4000],[40138,1007],[51088,2914],[51088,65021]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2402:e580:73ef::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00AA0200000093900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302402E58073EF4001010040021602050000206A0000C79000000B6200004FF900009CCAC008280B62019A0B6203EC0B6207D00B620BB8206A07E44FF9000F4FF90FA09CCA03EFC7900B62C790FDFDC020180000206A000000020000C79000004FF900000000B41D9EF3"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae0000b","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1031]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0407E0200C0000206A0000000100000407"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae0000e","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,58299,52025],"community":[[8298,2005],[58299,1100]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0076020000005F900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020E02030000206A0000E3BB0000CB39C00808206A07D5E3BB044CE0200C0000206A000000020000E3BB"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00011","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00014","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00017","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,55818,45147,150279,214028,214028,214028],"community":[[20,1159],[8298,1041],[55818,1000],[57463,57463],[64700,55818],[65400,0],[65400,65400],[65535,1566],[65535,2222],[65535,2667],[65535,6666]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2a0f:85c1:8b9::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00B6020000009F900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302A0F85C108B94001010040021E02070000206A0000DA0A0000B05B00024B070003440C0003440C0003440CC0082C00140487206A0411DA0A03E8E077E077FCBCDA0AFF780000FF78FF78FFFF061EFFFF08AEFFFF0A6BFFFF1A0AC020180000206A00000001000004110000E0770000FCBC0000DA0A"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae0001a","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1056],[65000,50041],[65000,65031],[65000,65101],[65000,65151]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008A0200000073900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0082000001B1B000034170000E077206A0420FDE8C379FDE8FE07FDE8FE4DFDE8FE7FE0200C0000206A0000000100000420"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae0001d","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00020","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1041]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0411E0200C0000206A0000000100000411"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00023","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,64289,52025],"community":[[8298,1121],[64289,3000]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00890200000072900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020E02030000206A0000FB210000CB39C00808206A0461FB210BB8C020180000206A00000001000004610000FB2100000BB80000000AC0230400001A79"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00026","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00029","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae0002c","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1031]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0407E0200C0000206A0000000100000407"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae0002f","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00032","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1031]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0407E0200C0000206A0000000100000407"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00035","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,55818,45147,150279,214028,214028,214028],"community":[[20,1159],[8298,1041],[55818,1000],[57463,57463],[64700,55818],[65400,0],[65400,65400],[65535,1566],[65535,2222],[65535,2667],[65535,6666]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2a0f:85c1:8b9::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00B6020000009F900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302A0F85C108B94001010040021E02070000206A0000DA0A0000B05B00024B070003440C0003440C0003440CC0082C00140487206A0411DA0A03E8E077E077FCBCDA0AFF780000FF78FF78FFFF061EFFFF08AEFFFF0A6BFFFF1A0AC020180000206A00000001000004110000E0770000FCBC0000DA0A"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00038","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,25091,34927,52025],"community":[[8298,2000],[25091,23407],[65400,34307],[65401,407]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0082020000006B900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240021202040000206A000062030000886F0000CB39C00810206A07D062035B6FFF788603FF790197E0200C0000206A0000000200006203"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae0003b","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,34927,52025],"community":[[8298,1116],[34927,722]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0076020000005F900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020E02030000206A0000886F0000CB39C00808206A045C886F02D2E0200C0000206A000000010000045C"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae0003e","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ae00041","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"91.206.52.127","peer_asn":"20612","id":"91.206.52.127-01984d132ebe0002","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,8758,6775],"community":[[8758,105],[8758,225],[8758,301],[20612,8758]],"origin":"IGP","announcements":[{"next_hop":"91.206.52.2","prefixes":["79.134.250.0/23"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005102000000364001010040020E0203000050840000223600001A774003045BCE3402C0081022360069223600E12236012D50842236E0230400001A79174F86FA"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ebe0005","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,64289,52025],"community":[[8298,1121],[64289,3000]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00890200000072900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020E02030000206A0000FB210000CB39C00808206A0461FB210BB8C020180000206A00000001000004610000FB2100000BB80000000AC0230400001A79"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:d:ff::96","peer_asn":"35280","id":"2001:7f8:d:ff::96-01984d132aea0001","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,6453,2914,20473,151674],"community":[[6453,86],[6453,2000],[6453,2100],[6453,2101],[35280,10],[35280,1010],[35280,2060],[35280,3070],[35280,4070],[35280,10000],[35280,10020]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:d:ff::96,fe80::8a90:900:d7f8:eac5","prefixes":["2406:840:e720::/44"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A2020000008B400101004002160205000089D00000193500000B6200004FF90002507AC0082C19350056193507D0193508341935083589D0000A89D003F289D0080C89D00BFE89D00FE689D0271089D02724C0200C000089D00000FDE700001935900E002C00020120200107F8000D00FF0000000000000096FE800000000000008A900900D7F8EAC5002C24060840E720"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"194.68.123.96","peer_asn":"35280","id":"194.68.123.96-01984d132aea0004","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,3356,262645,263561],"community":[[3356,5],[3356,22],[3356,100],[3356,123],[3356,800],[3356,903],[3356,2246],[35280,20],[35280,1010],[35280,2030],[35280,3050],[35280,4060],[35280,10000],[35280,10040]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.96","prefixes":["186.251.12.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00900200000075400101004002120204000089D000000D1C000401F500040589400304C2447B60C008380D1C00050D1C00160D1C00640D1C007B0D1C03200D1C03870D1C08C689D0001489D003F289D007EE89D00BEA89D00FDC89D0271089D02738C010080202000401F51F40C0200C000089D00000FDE700000D1C16BAFB0C"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:d:ff::96","peer_asn":"35280","id":"2001:7f8:d:ff::96-01984d132aea0007","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,6453,6762,38193,45773],"community":[[6453,86],[6453,2000],[6453,2100],[6453,2101],[35280,10],[35280,1010],[35280,2060],[35280,3070],[35280,4070],[35280,10000],[35280,10020]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:d:ff::96,fe80::8a90:900:d7f8:eac5","prefixes":["2400:fc00:8cf1::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A2020000008B400101004002160205000089D00000193500001A6A000095310000B2CDC0082C19350056193507D0193508341935083589D0000A89D003F289D0080C89D00BFE89D00FE689D0271089D02724C0200C000089D00000FDE700001935900E002C00020120200107F8000D00FF0000000000000096FE800000000000008A900900D7F8EAC500302400FC008CF1"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"194.68.123.96","peer_asn":"35280","id":"194.68.123.96-01984d132aea000a","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,3356,174,52468,28370,28370,28370,28657],"community":[[3356,2],[3356,22],[3356,86],[3356,507],[3356,666],[3356,903],[3356,2111],[35280,20],[35280,1010],[35280,2150],[35280,3230],[35280,4080],[35280,10000],[35280,10040]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.96","prefixes":["138.99.97.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0095020000007A400101004002220208000089D000000D1C000000AE0000CCF400006ED200006ED200006ED200006FF1400304C2447B60C008380D1C00020D1C00160D1C00560D1C01FB0D1C029A0D1C03870D1C083F89D0001489D003F289D0086689D00C9E89D00FF089D0271089D02738C0200C000089D00000FDE700000D1C188A6361"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:d:ff::96","peer_asn":"35280","id":"2001:7f8:d:ff::96-01984d132aea000d","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,6453,2914,20473,40138],"community":[[6453,86],[6453,2000],[6453,2100],[6453,2101],[35280,10],[35280,1010],[35280,2060],[35280,3070],[35280,4070],[35280,10000],[35280,10020]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:d:ff::96,fe80::8a90:900:d7f8:eac5","prefixes":["2402:e580:74b3::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A2020000008B400101004002160205000089D00000193500000B6200004FF900009CCAC0082C19350056193507D0193508341935083589D0000A89D003F289D0080C89D00BFE89D00FE689D0271089D02724C0200C000089D00000FDE700001935900E002C00020120200107F8000D00FF0000000000000096FE800000000000008A900900D7F8EAC500302402E58074B3"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:d:ff::96","peer_asn":"35280","id":"2001:7f8:d:ff::96-01984d132aea0010","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,28458],"community":[[35280,10],[35280,1010],[35280,2060],[35280,3070],[35280,4070],[35280,20000],[35280,21000],[35280,21050],[35280,24000]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:d:ff::96,fe80::8a90:900:d7f8:eac5","prefixes":["2806:202::/32"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00BC02000000A54001010240020A0202000089D000006F2AC0082489D0000A89D003F289D0080C89D00BFE89D00FE689D04E2089D0520889D0523A89D05DC0C0203C00001A2700000777000000D000001A27000007780000000800001A27000007790000034800001A270000077A00000013000089D00000FDE700001A27900E002A00020120200107F8000D00FF0000000000000096FE800000000000008A900900D7F8EAC5002028060202"}} +{"type":"ris_message","data":{"timestamp":1753639758.570,"peer":"2001:7f8:d:ff::96","peer_asn":"35280","id":"2001:7f8:d:ff::96-01984d132aea0013","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,3356,174,53667,202256],"community":[[3356,2],[3356,22],[3356,86],[3356,502],[3356,601],[3356,666],[3356,901],[3356,2090],[35280,10],[35280,1010],[35280,2150],[35280,3230],[35280,4080],[35280,10000],[35280,10040]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:d:ff::96,fe80::8a90:900:d7f8:eac5","prefixes":["2a06:de02:5bb::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00B2020000009B400101004002160205000089D000000D1C000000AE0000D1A300031610C0083C0D1C00020D1C00160D1C00560D1C01F60D1C02590D1C029A0D1C03850D1C082A89D0000A89D003F289D0086689D00C9E89D00FF089D0271089D02738C0200C000089D00000FDE700000D1C900E002C00020120200107F8000D00FF0000000000000096FE800000000000008A900900D7F8EAC500302A06DE0205BB"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.96","peer_asn":"35280","id":"194.68.123.96-01984d132ed20000","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,2914,267613,262645,263561],"community":[[2914,410],[2914,1601],[2914,2601],[2914,3600],[35280,20],[35280,1010],[35280,2150],[35280,3230],[35280,4080],[35280,10000],[35280,10030]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.96","prefixes":["186.251.12.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007D0200000062400101004002160205000089D000000B620004155D000401F500040589400304C2447B60C0082C0B62019A0B6206410B620A290B620E1089D0001489D003F289D0086689D00C9E89D00FF089D0271089D0272EC0200C000089D00000FDE700000B6216BAFB0C"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"2001:7f8:d:ff::96","peer_asn":"35280","id":"2001:7f8:d:ff::96-01984d132ed20003","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,6453,64289,52025],"community":[[6453,50],[6453,2000],[6453,2400],[6453,2406],[35280,10],[35280,1010],[35280,2030],[35280,3050],[35280,4060],[35280,10000],[35280,10020]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:d:ff::96,fe80::8a90:900:d7f8:eac5","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009E0200000087400101024002120204000089D0000019350000FB210000CB39C0082C19350032193507D0193509601935096689D0000A89D003F289D007EE89D00BEA89D00FDC89D0271089D02724C0200C000089D00000FDE700001935900E002C00020120200107F8000D00FF0000000000000096FE800000000000008A900900D7F8EAC500302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.96","peer_asn":"35280","id":"194.68.123.96-01984d132ed20006","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,6453,9002,200019],"community":[[6453,50],[6453,2000],[6453,2300],[6453,2302],[35280,10],[35280,1010],[35280,2110],[35280,3150],[35280,4090],[35280,10000],[35280,10020]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.96","prefixes":["176.123.2.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0079020000005E400101004002120204000089D0000019350000232A00030D53400304C2447B60C0082C19350032193507D0193508FC193508FE89D0000A89D003F289D0083E89D00C4E89D00FFA89D0271089D02724C0200C000089D00000FDE70000193518B07B02"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.96","peer_asn":"35280","id":"194.68.123.96-01984d132ed20009","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,6453,3356,37282,37506],"community":[[6453,86],[6453,2000],[6453,2100],[6453,2101],[35280,20],[35280,1010],[35280,2030],[35280,3050],[35280,4060],[35280,10000],[35280,10020]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.96","prefixes":["41.220.92.0/22","41.220.88.0/22","41.220.80.0/20","41.220.80.0/22","41.220.84.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008D0200000062400101004002160205000089D00000193500000D1C000091A200009282400304C2447B60C0082C19350056193507D0193508341935083589D0001489D003F289D007EE89D00BEA89D00FDC89D0271089D02724C0200C000089D00000FDE7000019351629DC5C1629DC581429DC501629DC501629DC54"}} +{"type":"ris_message","data":{"timestamp":1753639759.570,"peer":"194.68.123.96","peer_asn":"35280","id":"194.68.123.96-01984d132ed2000c","host":"rrc07.ripe.net","type":"UPDATE","path":[35280,2914,7568,4750],"community":[[2914,410],[2914,1405],[2914,2406],[2914,3400],[4750,202],[4750,54191],[35280,10],[35280,1010],[35280,2150],[35280,3230],[35280,4080],[35280,10000],[35280,10030]],"origin":"IGP","announcements":[{"next_hop":"194.68.123.96","prefixes":["58.137.31.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008C0200000071400101004002120204000089D000000B6200001D900000128E400304C2447B60C008340B62019A0B62057D0B6209660B620D48128E00CA128ED3AF89D0000A89D003F289D0086689D00C9E89D00FF089D0271089D0272EC010080002B17600000FA1C0200C000089D00000FDE700000B62183A891F"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"91.206.53.12","peer_asn":"8298","id":"91.206.53.12-01984d132ebe0008","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,267613,263069],"community":[[8298,1046]],"origin":"IGP","announcements":[{"next_hop":"91.206.53.12","prefixes":["168.0.128.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007D02000000624001010040020E02030000206A0004155D0004039D4003045BCE350CE00804206A0416C0203C00001A2700000777000000C400001A27000007780000000400001A27000007790000034800001A270000077A000000130000206A000000010000041616A80080"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:24::7f","peer_asn":"20612","id":"2001:7f8:24::7f-01984d132ebe000b","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,6939,212001,214028,214028,214028,214028],"community":[[20612,42476]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::aa","prefixes":["2a0f:85c1:8b9::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0096020000007F4001010040021E02070000508400001B1B00033C210003440C0003440C0003440C0003440CC008045084A5ECE020300000A5EC00000777000000990000A5EC000007780000001C0000A5EC00000779000002F40000A5EC0000077A00000096900E001C00020110200107F80024000000000000000000AA00302A0F85C108B9"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"91.206.52.127","peer_asn":"20612","id":"91.206.52.127-01984d132ebe000e","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,9044,9002,200019],"community":[[20612,9044]],"origin":"IGP","announcements":[{"next_hop":"91.206.52.37","prefixes":["176.123.2.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0042020000002740010100400212020400005084000023540000232A00030D534003045BCE3425C008045084235418B07B02"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ebe0011","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,38158,150242,214028,214028],"community":[[8298,1121],[38158,65030],[65535,1167]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2a0f:85c1:8b9::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00890200000072900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302A0F85C108B94001010040021602050000206A0000950E00024AE20003440C0003440CC0080C206A0461950EFE06FFFF048FE0200C0000206A0000000100000461C0230400001A79"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"91.206.53.12","peer_asn":"8298","id":"91.206.53.12-01984d132ebe0014","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,58299,6939,1031,262535],"community":[[8298,2005],[58299,1000]],"origin":"IGP","announcements":[{"next_hop":"91.206.53.12","prefixes":["177.84.215.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0059020000003E4001010040021602050000206A0000E3BB00001B1B00000407000401874003045BCE350CC00808206A07D5E3BB03E8E0200C0000206A000000020000E3BB18B154D7"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:24::7f","peer_asn":"20612","id":"2001:7f8:24::7f-01984d132ebe0017","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,64289,52025],"community":[[20612,42476],[64289,3000]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::fb21:0:1","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0096020000007F4001010240020E0203000050840000FB210000CB39C008085084A5ECFB210BB8C0203C0000A5EC00000777000000960000A5EC000007780000001C0000A5EC00000779000002F40000A5EC0000077A000000960000FB2100000BB80000000A900E001C00020110200107F8002400000000FB210000000100302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"91.206.52.127","peer_asn":"20612","id":"91.206.52.127-01984d132ebe001a","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,9044,6695,9318,38684,38684,38684,38684,38684,38684,38684],"community":[[20612,9044]],"origin":"IGP","announcements":[{"next_hop":"91.206.52.37","prefixes":["124.195.190.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005E02000000434001010040022E020B000050840000235400001A27000024660000971C0000971C0000971C0000971C0000971C0000971C0000971C4003045BCE3425C0080450842354187CC3BE"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ebe001d","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"91.206.53.12","peer_asn":"8298","id":"91.206.53.12-01984d132ebe0020","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,51088,2914,9457,38684],"community":[[2914,410],[2914,1408],[2914,2401],[2914,3400],[8298,2020],[51088,2914]],"origin":"IGP","announcements":[{"next_hop":"91.206.53.12","prefixes":["124.195.190.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0069020000004E4001010040021602050000206A0000C79000000B62000024F10000971C4003045BCE350CC008180B62019A0B6205800B6209610B620D48206A07E4C7900B62E0200C0000206A000000020000C790187CC3BE"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:24::7f","peer_asn":"20612","id":"2001:7f8:24::7f-01984d132ebe0023","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,8758,34927,34927,52025],"community":[[8758,105],[8758,225],[8758,301],[20612,8758],[34927,722]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::2","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0072020000005B40010102400216020500005084000022360000886F0000886F0000CB39C0081422360069223600E12236012D50842236886F02D2E0230400001A79900E001C00020110200107F800240000000000000000000200302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.550,"peer":"2001:7f8:24::7f","peer_asn":"20612","id":"2001:7f8:24::7f-01984d132ebe0026","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,9044,174,53667,202256],"community":[[20612,9044]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::25","prefixes":["2a06:de02:496::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005B02000000444001010040021602050000508400002354000000AE0000D1A300031610C0080450842354900E001C00020110200107F800240000000000000000002500302A06DE020496"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80000","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1031]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0407E0200C0000206A0000000100000407"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::7f","peer_asn":"20612","id":"2001:7f8:24::7f-01984d132ec80003","host":"rrc20.ripe.net","type":"UPDATE","path":[20612,9044,1299,174,64289,52025],"community":[[20612,9044]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::25","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005F02000000484001010040021A0206000050840000235400000513000000AE0000FB210000CB39C0080450842354900E001C00020110200107F800240000000000000000002500302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80006","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1031]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0407E0200C0000206A0000000100000407"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80009","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,25091,34927,52025],"community":[[8298,2000],[25091,23407],[65400,34307],[65401,407]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0082020000006B900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240021202040000206A000062030000886F0000CB39C00810206A07D062035B6FFF788603FF790197E0200C0000206A0000000200006203"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8000c","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,57463,34927,34927,34927,34927,52025],"community":[[0,6695],[0,6777],[0,6939],[0,12876],[0,16276],[0,32934],[0,41441],[7,1111],[6939,0],[8075,0],[8298,1101],[8866,0],[15169,0],[16509,0],[20940,0],[24940,0],[32934,0],[34927,722],[36040,0],[49544,0],[59900,0],[60068,0],[64700,34927],[65400,0],[65400,65400]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00F902000000E2900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240021E02070000206A0000E0770000886F0000886F0000886F0000886F0000CB39C0086400001A2700001A7900001B1B0000324C00003F94000080A60000A1E1000704571B1B00001F8B0000206A044D22A200003B410000407D000051CC0000616C000080A60000886F02D28CC80000C1880000E9FC0000EAA40000FCBC886FFF780000FF78FF78E010080002E077000004D2C020180000206A000000010000044D0000E0770000FCBC0000886F"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8000f","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80012","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80015","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80018","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,25091,34927,52025],"community":[[8298,2000],[25091,23407],[65400,34307],[65401,407]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0082020000006B900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240021202040000206A000062030000886F0000CB39C00810206A07D062035B6FFF788603FF790197E0200C0000206A0000000200006203"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8001b","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1041]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0411E0200C0000206A0000000100000411"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8001e","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,25091,34927,52025],"community":[[8298,2000],[25091,23407],[65400,34307],[65401,407]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0082020000006B900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240021202040000206A000062030000886F0000CB39C00810206A07D062035B6FFF788603FF790197E0200C0000206A0000000200006203"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80021","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1056],[65000,50041],[65000,65031],[65000,65101],[65000,65151]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008A0200000073900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0082000001B1B000034170000E077206A0420FDE8C379FDE8FE07FDE8FE4DFDE8FE7FE0200C0000206A0000000100000420"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80024","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80027","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8002a","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8002d","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80030","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80033","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80036","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1056],[65000,50041],[65000,65031],[65000,65101],[65000,65151]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008A0200000073900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0082000001B1B000034170000E077206A0420FDE8C379FDE8FE07FDE8FE4DFDE8FE7FE0200C0000206A0000000100000420"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80039","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,38158,150242,214028,214028],"community":[[8298,1121],[38158,65030],[65535,1167]],"origin":"IGP","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2a0f:85c1:8b9::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00890200000072900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302A0F85C108B94001010040021602050000206A0000950E00024AE20003440C0003440CC0080C206A0461950EFE06FFFF048FE0200C0000206A0000000100000461C0230400001A79"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8003c","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8003f","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80042","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80045","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,25091,34927,52025],"community":[[8298,2000],[25091,23407],[65400,34307],[65401,407]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0082020000006B900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240021202040000206A000062030000886F0000CB39C00810206A07D062035B6FFF788603FF790197E0200C0000206A0000000200006203"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80048","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8004b","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec8004e","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1056],[65000,50041],[65000,65031],[65000,65101],[65000,65151]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008A0200000073900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0082000001B1B000034170000E077206A0420FDE8C379FDE8FE07FDE8FE4DFDE8FE7FE0200C0000206A0000000100000420"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80051","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[8298,1091],[64512,11],[64512,21]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A80200000091900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0080C206A0443FC00000BFC000015E010100002FC000000000B0002FC0000000015C020240000206A00000001000004430000B98A0000FC000000000B0000B98A0000FC0000000015C023040000B98A"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80054","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1091]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0443E0200C0000206A0000000100000443"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"2001:7f8:24::10c","peer_asn":"8298","id":"2001:7f8:24::10c-01984d132ec80057","host":"rrc20.ripe.net","type":"UPDATE","path":[8298,52025],"community":[[0,6939],[0,13335],[0,57463],[8298,1031]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:7f8:24::10c,fe80::6a05:caff:fe32:4616","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007A0200000063900E002C00020120200107F800240000000000000000010CFE800000000000006A05CAFFFE32461600302602FA7E00174001010240020A02020000206A0000CB39C0081000001B1B000034170000E077206A0407E0200C0000206A0000000100000407"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"2001:12f8::214:32","peer_asn":"60503","id":"2001:12f8::214:32-01984d132b080001","host":"rrc15.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2605:9cc0:c0d:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0025020000000E900F000A0002013026059CC00C0D"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"2001:12f8::20","peer_asn":"28571","id":"2001:12f8::20-01984d132b080004","host":"rrc15.ripe.net","type":"UPDATE","path":[28571,1251,15830,3356,6453,4755,20473,40138],"community":[[15830,400],[15830,3356],[15830,3425]],"origin":"IGP","announcements":[{"next_hop":"2001:12f8::20,fe80::ae4b:c804:b184:d7c1","prefixes":["2402:e580:74ba::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007F020000006840010100400222020800006F9B000004E300003DD600000D1C000019350000129300004FF900009CCAC0080C3DD601903DD60D1C3DD60D61900E002C00020120200112F8000000000000000000000020FE80000000000000AE4BC804B184D7C100302402E58074BA"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"187.16.214.32","peer_asn":"60503","id":"187.16.214.32-01984d132b080007","host":"rrc15.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["186.251.12.0/22"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001B02000416BAFB0C0000"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"2001:12f8::20","peer_asn":"28571","id":"2001:12f8::20-01984d132b08000a","host":"rrc15.ripe.net","type":"UPDATE","path":[28571,1251,15830,12956,6453,139341,139341],"community":[[15830,400],[15830,3425],[15830,12956]],"origin":"IGP","aggregator":"65269:43.174.88.2","announcements":[{"next_hop":"2001:12f8::20,fe80::ae4b:c804:b184:d7c1","prefixes":["240d:c010:165::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008902000000724001010040021E020700006F9B000004E300003DD60000329C000019350002204D0002204D400600C007080000FEF52BAE5802C0080C3DD601903DD60D613DD6329C900E002C00020120200112F8000000000000000000000020FE80000000000000AE4BC804B184D7C10030240DC0100165"}} +{"type":"ris_message","data":{"timestamp":1753639759.600,"peer":"187.16.214.32","peer_asn":"60503","id":"187.16.214.32-01984d132ef00000","host":"rrc15.ripe.net","type":"UPDATE","path":[60503,1031,262535],"community":[[1031,1010],[1031,1020],[1031,1031],[1031,1049],[1031,4050],[1031,4400],[1031,4700],[1031,6045],[24115,3010],[26162,1031],[26162,64662],[26162,64671],[26162,64685],[26162,65011],[26162,65111],[26162,65121],[26162,65131],[28604,3019],[28604,3029],[60503,1000]],"origin":"IGP","announcements":[{"next_hop":"187.16.214.32","prefixes":["177.84.215.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF017002000001554001010040020E02030000EC570000040700040187400304BB10D620C00850040703F2040703FC040704070407041904070FD2040711300407125C0407179D5E330BC2663204076632FC966632FC9F6632FCAD6632FDF36632FE576632FE616632FE6B6FBC0BCB6FBC0BD5EC5703E8E010800002663200000407000266320000FC96000266320000FC9F000266320000FCAD000266320000FDF3000266320000FE57000266320000FE61000266320000FE6B0003663200000407000366320000FC96000366320000FC9F000366320000FCAD000366320000FDF3000366320000FE57000366320000FE61000366320000FE6BE0206000006632000000000000040700006632000000000000FDF300006632000000640000000100006632000000C800000001000066320000012C00000001000066320000029400000002000066320000029E0000000100006632000002A80000000518B154D7"}} +{"type":"ris_message","data":{"timestamp":1753639759.600,"peer":"2001:12f8::20","peer_asn":"28571","id":"2001:12f8::20-01984d132ef00003","host":"rrc15.ripe.net","type":"UPDATE","path":[28571,61610,263558,52573,10429,12956,1299,22616],"community":[[61610,620],[61610,4000],[61610,4621],[61610,6201]],"origin":"IGP","announcements":[{"next_hop":"2001:12f8::20,fe80::ae4b:c804:b184:d7c1","prefixes":["2a03:eec0:3212::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0083020000006C40010100400222020800006F9B0000F0AA000405860000CD5D000028BD0000329C0000051300005858C00810F0AA026CF0AA0FA0F0AA120DF0AA1839900E002C00020120200112F8000000000000000000000020FE80000000000000AE4BC804B184D7C100302A03EEC03212"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"2001:43f8:6d0::178","peer_asn":"37271","id":"2001:43f8:6d0::178-01984d132b080001","host":"rrc19.ripe.net","type":"UPDATE","path":[37271,33891,64289,52025],"community":[[33891,33892],[33891,40001],[37271,1005],[37271,2150],[37271,2155],[37271,3528],[37271,4006],[37271,5002],[37271,5200],[37271,5212],[64289,3000]],"origin":"INCOMPLETE","med":2010,"announcements":[{"next_hop":"2001:43f8:6d0::178","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0086020000006F40010102400212020400009197000084630000FB210000CB39800404000007DAC0082C8463846484639C41919703ED919708669197086B91970DC891970FA69197138A919714509197145CFB210BB8900E001C00020110200143F806D00000000000000000017800302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"2001:43f8:6d0::9:165","peer_asn":"917","id":"2001:43f8:6d0::9:165-01984d132b080004","host":"rrc19.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["2a14:6:10:0:0:0:0:0/48","2406:840:e720:0:0:0:0:0/44","2400:fc00:8cf1:0:0:0:0:0/48","2402:e580:73ef:0:0:0:0:0/48","2610:a1:1028:0:0:0:0:0/48","2605:9cc0:c04:0:0:0:0:0/48","2605:9cc0:c03:0:0:0:0:0/48"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF004F0200000038900F0034000201302A14000600102C24060840E720302400FC008CF1302402E58073EF30261000A110283026059CC00C043026059CC00C03"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"196.60.9.165","peer_asn":"917","id":"196.60.9.165-01984d132b080007","host":"rrc19.ripe.net","type":"UPDATE","path":[917,60068,174,45430,4750],"community":[[174,21201],[174,22038],[917,59001],[57695,13000],[60068,204],[60068,2000],[60068,2010],[60068,7180]],"origin":"IGP","announcements":[{"next_hop":"196.60.9.165","prefixes":["58.137.31.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00620200000047400101004002160205000003950000EAA4000000AE0000B1760000128E400304C43C09A5C0082000AE52D100AE56160395E679E15F32C8EAA400CCEAA407D0EAA407DAEAA41C0C183A891F"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"196.60.9.165","peer_asn":"917","id":"196.60.9.165-01984d132b08000a","host":"rrc19.ripe.net","type":"UPDATE","path":[917,60068,37468,2603],"community":[[917,59001],[37468,2000],[37468,2500],[37468,2510],[37468,2512],[37468,15000],[37468,15100],[37468,15101],[37468,37468],[57695,13000],[60068,204],[60068,2000],[60068,2330],[60068,7180]],"origin":"IGP","aggregator":"2603:109.105.96.109","announcements":[{"next_hop":"196.60.9.165","prefixes":["193.10.255.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00810200000066400101004002120204000003950000EAA40000925C00000A2B400304C43C09A5C0070800000A2B6D69606DC008380395E679925C07D0925C09C4925C09CE925C09D0925C3A98925C3AFC925C3AFD925C925CE15F32C8EAA400CCEAA407D0EAA4091AEAA41C0C18C10AFF"}} +{"type":"ris_message","data":{"timestamp":1753639758.600,"peer":"2001:43f8:6d0::9:165","peer_asn":"917","id":"2001:43f8:6d0::9:165-01984d132b08000d","host":"rrc19.ripe.net","type":"UPDATE","path":[917,60068,5511,64289,52025],"community":[[917,59001],[5511,500],[5511,514],[5511,999],[5511,10009],[5511,30428],[5511,30486],[5511,30487],[5511,30489],[5511,40021],[57695,13000],[60068,204],[60068,2000],[60068,2260],[60068,7180],[64289,3000]],"origin":"INCOMPLETE","announcements":[{"next_hop":"2001:43f8:6d0::9:165","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A6020000008F400101024002160205000003950000EAA4000015870000FB210000CB39C008400395E679158701F415870202158703E715872719158776DC15877716158777171587771915879C55E15F32C8EAA400CCEAA407D0EAA408D4EAA41C0CFB210BB8900E001C00020110200143F806D00000000000000009016500302602FA7E0017C0200C0000FB2100000BB80000000A"}} +{"type":"ris_message","data":{"timestamp":1753639759.600,"peer":"2001:43f8:6d0::178","peer_asn":"37271","id":"2001:43f8:6d0::178-01984d132ef00001","host":"rrc19.ripe.net","type":"UPDATE","path":[37271,33891,64289,52025],"community":[[33891,33892],[33891,40001],[37271,1005],[37271,2150],[37271,2155],[37271,3276],[37271,4005],[37271,5002],[37271,5200],[37271,5210],[64289,3000]],"origin":"INCOMPLETE","med":2010,"announcements":[{"next_hop":"2001:43f8:6d0::178","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0086020000006F40010102400212020400009197000084630000FB210000CB39800404000007DAC0082C8463846484639C41919703ED919708669197086B91970CCC91970FA59197138A919714509197145AFB210BB8900E001C00020110200143F806D00000000000000000017800302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.600,"peer":"2001:43f8:6d0::9:165","peer_asn":"917","id":"2001:43f8:6d0::9:165-01984d132ef00004","host":"rrc19.ripe.net","type":"UPDATE","path":[917,60068,5511,6453,16509,8987],"community":[[917,59001],[5511,521],[5511,666],[5511,710],[5511,10009],[5511,30428],[5511,30482],[5511,30561],[5511,30603],[5511,40108],[57695,13000],[60068,204],[60068,2000],[60068,2260],[60068,7180]],"origin":"IGP","announcements":[{"next_hop":"2001:43f8:6d0::9:165","prefixes":["2605:9cc0:c0d::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009702000000804001010040021A0206000003950000EAA400001587000019350000407D0000231BC0083C0395E679158702091587029A158702C615872719158776DC15877712158777611587778B15879CACE15F32C8EAA400CCEAA407D0EAA408D4EAA41C0C900E001C00020110200143F806D000000000000000090165003026059CC00C0D"}} +{"type":"ris_message","data":{"timestamp":1753639759.600,"peer":"196.60.9.165","peer_asn":"917","id":"196.60.9.165-01984d132ef00007","host":"rrc19.ripe.net","type":"UPDATE","path":[],"community":[],"announcements":[],"withdrawals":["103.132.12.0/24"],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001B0200041867840C0000"}} +{"type":"ris_message","data":{"timestamp":1753639759.600,"peer":"2001:43f8:6d0::178","peer_asn":"37271","id":"2001:43f8:6d0::178-01984d132ef0000a","host":"rrc19.ripe.net","type":"UPDATE","path":[37271,33891,64289,52025],"community":[[33891,33892],[33891,40001],[37271,1005],[37271,2150],[37271,2155],[37271,3276],[37271,4005],[37271,5002],[37271,5200],[37271,5210],[64289,3000]],"origin":"INCOMPLETE","med":2010,"announcements":[{"next_hop":"2001:43f8:6d0::178","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0086020000006F40010102400212020400009197000084630000FB210000CB39800404000007DAC0082C8463846484639C41919703ED919708669197086B91970CCC91970FA59197138A919714509197145AFB210BB8900E001C00020110200143F806D00000000000000000017800302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639759.610,"peer":"196.60.8.178","peer_asn":"37271","id":"196.60.8.178-01984d132efa0000","host":"rrc19.ripe.net","type":"UPDATE","path":[37271,174,13786,28263,262272],"community":[[174,21301],[174,22042],[37271,5002],[37271,5100],[37271,5102]],"origin":"IGP","med":1810,"announcements":[{"next_hop":"196.60.8.178","prefixes":["177.21.138.0/23","187.120.128.0/23","187.120.130.0/23","177.21.132.0/23","177.21.136.0/23","177.21.134.0/23"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0071020000004240010100400216020500009197000000AE000035DA00006E6700040080400304C43C08B280040400000712C0081400AE533500AE561A9197138A919713EC919713EE17B1158A17BB788017BB788217B1158417B1158817B11586"}} +{"type":"ris_message","data":{"timestamp":1753639759.610,"peer":"196.60.8.178","peer_asn":"37271","id":"196.60.8.178-01984d132efa0003","host":"rrc19.ripe.net","type":"UPDATE","path":[37271,3356,1299,17072,17072,17072,17072,265566],"community":[[3356,2],[3356,86],[3356,503],[3356,666],[3356,901],[3356,2067],[37271,5002],[37271,5100],[37271,5101]],"origin":"IGP","med":2010,"announcements":[{"next_hop":"196.60.8.178","prefixes":["45.172.92.0/22"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0079020000005E4001010040022202080000919700000D1C00000513000042B0000042B0000042B0000042B000040D5E400304C43C08B2800404000007DAC008240D1C00020D1C00560D1C01F70D1C029A0D1C03850D1C08139197138A919713EC919713ED162DAC5C"}} +{"type":"ris_message","data":{"timestamp":1753639759.610,"peer":"2001:43f8:6d0::178","peer_asn":"37271","id":"2001:43f8:6d0::178-01984d132efa0006","host":"rrc19.ripe.net","type":"UPDATE","path":[37271,174,34927,52025],"community":[[174,21101],[174,22010],[37271,5002],[37271,5100],[37271,5102]],"origin":"INCOMPLETE","med":1910,"announcements":[{"next_hop":"2001:43f8:6d0::178","prefixes":["2602:fa7e:17::/48"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF006E020000005740010102400212020400009197000000AE0000886F0000CB3980040400000776C0081400AE526D00AE55FA9197138A919713EC919713EE900E001C00020110200143F806D00000000000000000017800302602FA7E0017"}} +{"type":"ris_message","data":{"timestamp":1753639758.560,"peer":"45.65.244.1","peer_asn":"265721","id":"45.65.244.1-01984d132ae00000","host":"rrc24.ripe.net","type":"UPDATE","path":[265721,64126,23520,6762,174,63306,63376],"community":[],"origin":"IGP","announcements":[{"next_hop":"45.65.244.1","prefixes":["140.174.37.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0047020000002C4001010040021E020700040DF90000FA7E00005BE000001A6A000000AE0000F74A0000F7904003042D41F401188CAE25"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"45.65.244.1","peer_asn":"265721","id":"45.65.244.1-01984d132ec80000","host":"rrc24.ripe.net","type":"UPDATE","path":[265721,64126,174,45430,4750],"community":[],"origin":"IGP","announcements":[{"next_hop":"45.65.244.1","prefixes":["58.137.31.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003F020000002440010100400216020500040DF90000FA7E000000AE0000B1760000128E4003042D41F401183A891F"}} +{"type":"ris_message","data":{"timestamp":1753639759.560,"peer":"45.65.244.1","peer_asn":"265721","id":"45.65.244.1-01984d132ec80003","host":"rrc24.ripe.net","type":"UPDATE","path":[265721,64126,23520,6762,2914,63306,63376],"community":[],"origin":"IGP","announcements":[{"next_hop":"45.65.244.1","prefixes":["140.174.37.0/24"]}],"withdrawals":[],"raw":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0047020000002C4001010040021E020700040DF90000FA7E00005BE000001A6A00000B620000F74A0000F7904003042D41F401188CAE25"}} diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..56dc9a5 --- /dev/null +++ b/go.mod @@ -0,0 +1,26 @@ +module git.eeqj.de/sneak/routewatch + +go 1.24.4 + +require ( + github.com/google/uuid v1.6.0 + go.uber.org/fx v1.24.0 + modernc.org/sqlite v1.38.1 +) + +require ( + github.com/dustin/go-humanize v1.0.1 // indirect + github.com/go-chi/chi/v5 v5.2.2 // indirect + github.com/mattn/go-isatty v0.0.20 // indirect + github.com/ncruces/go-strftime v0.1.9 // indirect + github.com/rcrowley/go-metrics v0.0.0-20250401214520-65e299d6c5c9 // indirect + github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect + go.uber.org/dig v1.19.0 // indirect + go.uber.org/multierr v1.10.0 // indirect + go.uber.org/zap v1.26.0 // indirect + golang.org/x/exp v0.0.0-20250620022241-b7579e27df2b // indirect + golang.org/x/sys v0.34.0 // indirect + modernc.org/libc v1.66.3 // indirect + modernc.org/mathutil v1.7.1 // indirect + modernc.org/memory v1.11.0 // indirect +) diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..79d0b46 --- /dev/null +++ b/go.sum @@ -0,0 +1,71 @@ +github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/dustin/go-humanize v1.0.1 h1:GzkhY7T5VNhEkwH0PVJgjz+fX1rhBrR7pRT3mDkpeCY= +github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto= +github.com/go-chi/chi/v5 v5.2.2 h1:CMwsvRVTbXVytCk1Wd72Zy1LAsAh9GxMmSNWLHCG618= +github.com/go-chi/chi/v5 v5.2.2/go.mod h1:L2yAIGWB3H+phAw1NxKwWM+7eUH/lU8pOMm5hHcoops= +github.com/google/pprof v0.0.0-20250317173921-a4b03ec1a45e h1:ijClszYn+mADRFY17kjQEVQ1XRhq2/JR1M3sGqeJoxs= +github.com/google/pprof v0.0.0-20250317173921-a4b03ec1a45e/go.mod h1:boTsfXsheKC2y+lKOCMpSfarhxDeIzfZG1jqGcPl3cA= +github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= +github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY= +github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= +github.com/ncruces/go-strftime v0.1.9 h1:bY0MQC28UADQmHmaF5dgpLmImcShSi2kHU9XLdhx/f4= +github.com/ncruces/go-strftime v0.1.9/go.mod h1:Fwc5htZGVVkseilnfgOVb9mKy6w1naJmn9CehxcKcls= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/rcrowley/go-metrics v0.0.0-20250401214520-65e299d6c5c9 h1:bsUq1dX0N8AOIL7EB/X911+m4EHsnWEHeJ0c+3TTBrg= +github.com/rcrowley/go-metrics v0.0.0-20250401214520-65e299d6c5c9/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= +github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec h1:W09IVJc94icq4NjY3clb7Lk8O1qJ8BdBEF8z0ibU0rE= +github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= +github.com/stretchr/testify v1.8.1 h1:w7B6lhMri9wdJUVmEZPGGhZzrYTPvgJArz7wNPgYKsk= +github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= +go.uber.org/dig v1.19.0 h1:BACLhebsYdpQ7IROQ1AGPjrXcP5dF80U3gKoFzbaq/4= +go.uber.org/dig v1.19.0/go.mod h1:Us0rSJiThwCv2GteUN0Q7OKvU7n5J4dxZ9JKUXozFdE= +go.uber.org/fx v1.24.0 h1:wE8mruvpg2kiiL1Vqd0CC+tr0/24XIB10Iwp2lLWzkg= +go.uber.org/fx v1.24.0/go.mod h1:AmDeGyS+ZARGKM4tlH4FY2Jr63VjbEDJHtqXTGP5hbo= +go.uber.org/goleak v1.2.0 h1:xqgm/S+aQvhWFTtR0XK3Jvg7z8kGV8P4X14IzwN3Eqk= +go.uber.org/goleak v1.2.0/go.mod h1:XJYK+MuIchqpmGmUSAzotztawfKvYLUIgg7guXrwVUo= +go.uber.org/multierr v1.10.0 h1:S0h4aNzvfcFsC3dRF1jLoaov7oRaKqRGC/pUEJ2yvPQ= +go.uber.org/multierr v1.10.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y= +go.uber.org/zap v1.26.0 h1:sI7k6L95XOKS281NhVKOFCUNIvv9e0w4BF8N3u+tCRo= +go.uber.org/zap v1.26.0/go.mod h1:dtElttAiwGvoJ/vj4IwHBS/gXsEu/pZ50mUIRWuG0so= +golang.org/x/exp v0.0.0-20250620022241-b7579e27df2b h1:M2rDM6z3Fhozi9O7NWsxAkg/yqS/lQJ6PmkyIV3YP+o= +golang.org/x/exp v0.0.0-20250620022241-b7579e27df2b/go.mod h1:3//PLf8L/X+8b4vuAfHzxeRUl04Adcb341+IGKfnqS8= +golang.org/x/mod v0.25.0 h1:n7a+ZbQKQA/Ysbyb0/6IbB1H/X41mKgbhfv7AfG/44w= +golang.org/x/mod v0.25.0/go.mod h1:IXM97Txy2VM4PJ3gI61r1YEk/gAj6zAHN3AdZt6S9Ww= +golang.org/x/sync v0.15.0 h1:KWH3jNZsfyT6xfAfKiz6MRNmd46ByHDYaZ7KSkCtdW8= +golang.org/x/sync v0.15.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA= +golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.34.0 h1:H5Y5sJ2L2JRdyv7ROF1he/lPdvFsd0mJHFw2ThKHxLA= +golang.org/x/sys v0.34.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k= +golang.org/x/tools v0.34.0 h1:qIpSLOxeCYGg9TrcJokLBG4KFA6d795g0xkBkiESGlo= +golang.org/x/tools v0.34.0/go.mod h1:pAP9OwEaY1CAW3HOmg3hLZC5Z0CCmzjAF2UQMSqNARg= +gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +modernc.org/cc/v4 v4.26.2 h1:991HMkLjJzYBIfha6ECZdjrIYz2/1ayr+FL8GN+CNzM= +modernc.org/cc/v4 v4.26.2/go.mod h1:uVtb5OGqUKpoLWhqwNQo/8LwvoiEBLvZXIQ/SmO6mL0= +modernc.org/ccgo/v4 v4.28.0 h1:rjznn6WWehKq7dG4JtLRKxb52Ecv8OUGah8+Z/SfpNU= +modernc.org/ccgo/v4 v4.28.0/go.mod h1:JygV3+9AV6SmPhDasu4JgquwU81XAKLd3OKTUDNOiKE= +modernc.org/fileutil v1.3.8 h1:qtzNm7ED75pd1C7WgAGcK4edm4fvhtBsEiI/0NQ54YM= +modernc.org/fileutil v1.3.8/go.mod h1:HxmghZSZVAz/LXcMNwZPA/DRrQZEVP9VX0V4LQGQFOc= +modernc.org/gc/v2 v2.6.5 h1:nyqdV8q46KvTpZlsw66kWqwXRHdjIlJOhG6kxiV/9xI= +modernc.org/gc/v2 v2.6.5/go.mod h1:YgIahr1ypgfe7chRuJi2gD7DBQiKSLMPgBQe9oIiito= +modernc.org/goabi0 v0.2.0 h1:HvEowk7LxcPd0eq6mVOAEMai46V+i7Jrj13t4AzuNks= +modernc.org/goabi0 v0.2.0/go.mod h1:CEFRnnJhKvWT1c1JTI3Avm+tgOWbkOu5oPA8eH8LnMI= +modernc.org/libc v1.66.3 h1:cfCbjTUcdsKyyZZfEUKfoHcP3S0Wkvz3jgSzByEWVCQ= +modernc.org/libc v1.66.3/go.mod h1:XD9zO8kt59cANKvHPXpx7yS2ELPheAey0vjIuZOhOU8= +modernc.org/mathutil v1.7.1 h1:GCZVGXdaN8gTqB1Mf/usp1Y/hSqgI2vAGGP4jZMCxOU= +modernc.org/mathutil v1.7.1/go.mod h1:4p5IwJITfppl0G4sUEDtCr4DthTaT47/N3aT6MhfgJg= +modernc.org/memory v1.11.0 h1:o4QC8aMQzmcwCK3t3Ux/ZHmwFPzE6hf2Y5LbkRs+hbI= +modernc.org/memory v1.11.0/go.mod h1:/JP4VbVC+K5sU2wZi9bHoq2MAkCnrt2r98UGeSK7Mjw= +modernc.org/opt v0.1.4 h1:2kNGMRiUjrp4LcaPuLY2PzUfqM/w9N23quVwhKt5Qm8= +modernc.org/opt v0.1.4/go.mod h1:03fq9lsNfvkYSfxrfUhZCWPk1lm4cq4N+Bh//bEtgns= +modernc.org/sortutil v1.2.1 h1:+xyoGf15mM3NMlPDnFqrteY07klSFxLElE2PVuWIJ7w= +modernc.org/sortutil v1.2.1/go.mod h1:7ZI3a3REbai7gzCLcotuw9AC4VZVpYMjDzETGsSMqJE= +modernc.org/sqlite v1.38.1 h1:jNnIjleVta+DKSAr3TnkKK87EEhjPhBLzi6hvIX9Bas= +modernc.org/sqlite v1.38.1/go.mod h1:cPTJYSlgg3Sfg046yBShXENNtPrWrDX8bsbAQBzgQ5E= +modernc.org/strutil v1.2.1 h1:UneZBkQA+DX2Rp35KcM69cSsNES9ly8mQWD71HKlOA0= +modernc.org/strutil v1.2.1/go.mod h1:EHkiggD70koQxjVdSBM3JKM7k6L0FbGE5eymy9i3B9A= +modernc.org/token v1.1.0 h1:Xl7Ap9dKaEs5kLoOQeQmPWevfnk/DM5qcLcYlA8ys6Y= +modernc.org/token v1.1.0/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= diff --git a/internal/database/database.go b/internal/database/database.go new file mode 100644 index 0000000..a6086fa --- /dev/null +++ b/internal/database/database.go @@ -0,0 +1,462 @@ +// Package database provides SQLite storage for BGP routing data including ASNs, prefixes, announcements and peerings. +package database + +import ( + "database/sql" + "fmt" + "log/slog" + "time" + + "github.com/google/uuid" + _ "modernc.org/sqlite" // Pure Go SQLite driver +) + +const ( + dbSchema = ` +CREATE TABLE IF NOT EXISTS asns ( + id TEXT PRIMARY KEY, + number INTEGER UNIQUE NOT NULL, + first_seen DATETIME NOT NULL, + last_seen DATETIME NOT NULL +); + +CREATE TABLE IF NOT EXISTS prefixes ( + id TEXT PRIMARY KEY, + prefix TEXT UNIQUE NOT NULL, + ip_version INTEGER NOT NULL, -- 4 for IPv4, 6 for IPv6 + first_seen DATETIME NOT NULL, + last_seen DATETIME NOT NULL +); + +CREATE TABLE IF NOT EXISTS announcements ( + id TEXT PRIMARY KEY, + prefix_id TEXT NOT NULL, + asn_id TEXT NOT NULL, + origin_asn_id TEXT NOT NULL, + path TEXT NOT NULL, + next_hop TEXT, + timestamp DATETIME NOT NULL, + is_withdrawal BOOLEAN NOT NULL DEFAULT 0, + FOREIGN KEY (prefix_id) REFERENCES prefixes(id), + FOREIGN KEY (asn_id) REFERENCES asns(id), + FOREIGN KEY (origin_asn_id) REFERENCES asns(id) +); + +CREATE TABLE IF NOT EXISTS asn_peerings ( + id TEXT PRIMARY KEY, + from_asn_id TEXT NOT NULL, + to_asn_id TEXT NOT NULL, + first_seen DATETIME NOT NULL, + last_seen DATETIME NOT NULL, + FOREIGN KEY (from_asn_id) REFERENCES asns(id), + FOREIGN KEY (to_asn_id) REFERENCES asns(id), + UNIQUE(from_asn_id, to_asn_id) +); + +-- Live routing table: current state of announced routes +CREATE TABLE IF NOT EXISTS live_routes ( + id TEXT PRIMARY KEY, + prefix_id TEXT NOT NULL, + origin_asn_id TEXT NOT NULL, + peer_asn INTEGER NOT NULL, + next_hop TEXT, + announced_at DATETIME NOT NULL, + withdrawn_at DATETIME, + FOREIGN KEY (prefix_id) REFERENCES prefixes(id), + FOREIGN KEY (origin_asn_id) REFERENCES asns(id), + UNIQUE(prefix_id, origin_asn_id, peer_asn) +); + +CREATE INDEX IF NOT EXISTS idx_prefixes_ip_version ON prefixes(ip_version); +CREATE INDEX IF NOT EXISTS idx_prefixes_version_prefix ON prefixes(ip_version, prefix); +CREATE INDEX IF NOT EXISTS idx_announcements_timestamp ON announcements(timestamp); +CREATE INDEX IF NOT EXISTS idx_announcements_prefix_id ON announcements(prefix_id); +CREATE INDEX IF NOT EXISTS idx_announcements_asn_id ON announcements(asn_id); +CREATE INDEX IF NOT EXISTS idx_asn_peerings_from_asn ON asn_peerings(from_asn_id); +CREATE INDEX IF NOT EXISTS idx_asn_peerings_to_asn ON asn_peerings(to_asn_id); + +-- Indexes for live routes table +CREATE INDEX IF NOT EXISTS idx_live_routes_active + ON live_routes(prefix_id, origin_asn_id) + WHERE withdrawn_at IS NULL; + +CREATE INDEX IF NOT EXISTS idx_live_routes_origin + ON live_routes(origin_asn_id) + WHERE withdrawn_at IS NULL; + +CREATE INDEX IF NOT EXISTS idx_live_routes_prefix + ON live_routes(prefix_id) + WHERE withdrawn_at IS NULL; +` +) + +// Database manages the SQLite database connection and operations. +type Database struct { + db *sql.DB + logger *slog.Logger +} + +// Config holds database configuration +type Config struct { + Path string +} + +// NewConfig provides default database configuration +func NewConfig() Config { + return Config{ + Path: "routewatch.db", + } +} + +// New creates a new database connection and initializes the schema. +func New(logger *slog.Logger) (*Database, error) { + config := NewConfig() + + return NewWithConfig(config, logger) +} + +// NewWithConfig creates a new database connection with custom configuration +func NewWithConfig(config Config, logger *slog.Logger) (*Database, error) { + // Add connection parameters for modernc.org/sqlite + dsn := fmt.Sprintf("file:%s?_busy_timeout=5000&_journal_mode=WAL", config.Path) + db, err := sql.Open("sqlite", dsn) + if err != nil { + return nil, fmt.Errorf("failed to open database: %w", err) + } + + if err := db.Ping(); err != nil { + return nil, fmt.Errorf("failed to ping database: %w", err) + } + + // Set connection pool parameters + db.SetMaxOpenConns(1) // Force serialization since SQLite doesn't handle true concurrency well + db.SetMaxIdleConns(1) + db.SetConnMaxLifetime(0) + + database := &Database{db: db, logger: logger} + + if err := database.Initialize(); err != nil { + return nil, fmt.Errorf("failed to initialize database: %w", err) + } + + return database, nil +} + +// Initialize creates the database schema if it doesn't exist. +func (d *Database) Initialize() error { + _, err := d.db.Exec(dbSchema) + + return err +} + +// Close closes the database connection. +func (d *Database) Close() error { + return d.db.Close() +} + +// GetOrCreateASN retrieves an existing ASN or creates a new one if it doesn't exist. +func (d *Database) GetOrCreateASN(number int, timestamp time.Time) (*ASN, error) { + tx, err := d.db.Begin() + if err != nil { + return nil, err + } + defer func() { + if err := tx.Rollback(); err != nil && err != sql.ErrTxDone { + d.logger.Error("Failed to rollback transaction", "error", err) + } + }() + + var asn ASN + var idStr string + err = tx.QueryRow("SELECT id, number, first_seen, last_seen FROM asns WHERE number = ?", number). + Scan(&idStr, &asn.Number, &asn.FirstSeen, &asn.LastSeen) + + if err == nil { + // ASN exists, update last_seen + asn.ID, _ = uuid.Parse(idStr) + _, err = tx.Exec("UPDATE asns SET last_seen = ? WHERE id = ?", timestamp, asn.ID.String()) + if err != nil { + return nil, err + } + asn.LastSeen = timestamp + + if err = tx.Commit(); err != nil { + d.logger.Error("Failed to commit transaction for ASN update", "asn", number, "error", err) + + return nil, err + } + + return &asn, nil + } + + if err != sql.ErrNoRows { + return nil, err + } + + // ASN doesn't exist, create it + asn = ASN{ + ID: generateUUID(), + Number: number, + FirstSeen: timestamp, + LastSeen: timestamp, + } + _, err = tx.Exec("INSERT INTO asns (id, number, first_seen, last_seen) VALUES (?, ?, ?, ?)", + asn.ID.String(), asn.Number, asn.FirstSeen, asn.LastSeen) + if err != nil { + return nil, err + } + + if err = tx.Commit(); err != nil { + d.logger.Error("Failed to commit transaction for ASN creation", "asn", number, "error", err) + + return nil, err + } + + return &asn, nil +} + +// GetOrCreatePrefix retrieves an existing prefix or creates a new one if it doesn't exist. +func (d *Database) GetOrCreatePrefix(prefix string, timestamp time.Time) (*Prefix, error) { + tx, err := d.db.Begin() + if err != nil { + return nil, err + } + defer func() { + if err := tx.Rollback(); err != nil && err != sql.ErrTxDone { + d.logger.Error("Failed to rollback transaction", "error", err) + } + }() + + var p Prefix + var idStr string + err = tx.QueryRow("SELECT id, prefix, ip_version, first_seen, last_seen FROM prefixes WHERE prefix = ?", prefix). + Scan(&idStr, &p.Prefix, &p.IPVersion, &p.FirstSeen, &p.LastSeen) + + if err == nil { + // Prefix exists, update last_seen + p.ID, _ = uuid.Parse(idStr) + _, err = tx.Exec("UPDATE prefixes SET last_seen = ? WHERE id = ?", timestamp, p.ID.String()) + if err != nil { + return nil, err + } + p.LastSeen = timestamp + + if err = tx.Commit(); err != nil { + d.logger.Error("Failed to commit transaction for prefix update", "prefix", prefix, "error", err) + + return nil, err + } + + return &p, nil + } + + if err != sql.ErrNoRows { + return nil, err + } + + // Prefix doesn't exist, create it + p = Prefix{ + ID: generateUUID(), + Prefix: prefix, + IPVersion: detectIPVersion(prefix), + FirstSeen: timestamp, + LastSeen: timestamp, + } + _, err = tx.Exec("INSERT INTO prefixes (id, prefix, ip_version, first_seen, last_seen) VALUES (?, ?, ?, ?, ?)", + p.ID.String(), p.Prefix, p.IPVersion, p.FirstSeen, p.LastSeen) + if err != nil { + return nil, err + } + + if err = tx.Commit(); err != nil { + d.logger.Error("Failed to commit transaction for prefix creation", "prefix", prefix, "error", err) + + return nil, err + } + + return &p, nil +} + +// RecordAnnouncement inserts a new BGP announcement or withdrawal into the database. +func (d *Database) RecordAnnouncement(announcement *Announcement) error { + _, err := d.db.Exec(` + INSERT INTO announcements (id, prefix_id, asn_id, origin_asn_id, path, next_hop, timestamp, is_withdrawal) + VALUES (?, ?, ?, ?, ?, ?, ?, ?)`, + announcement.ID.String(), announcement.PrefixID.String(), + announcement.ASNID.String(), announcement.OriginASNID.String(), + announcement.Path, announcement.NextHop, announcement.Timestamp, announcement.IsWithdrawal) + + return err +} + +// RecordPeering records a peering relationship between two ASNs. +func (d *Database) RecordPeering(fromASNID, toASNID string, timestamp time.Time) error { + tx, err := d.db.Begin() + if err != nil { + return err + } + defer func() { + if err := tx.Rollback(); err != nil && err != sql.ErrTxDone { + d.logger.Error("Failed to rollback transaction", "error", err) + } + }() + + var exists bool + err = tx.QueryRow("SELECT EXISTS(SELECT 1 FROM asn_peerings WHERE from_asn_id = ? AND to_asn_id = ?)", + fromASNID, toASNID).Scan(&exists) + if err != nil { + return err + } + + if exists { + _, err = tx.Exec("UPDATE asn_peerings SET last_seen = ? WHERE from_asn_id = ? AND to_asn_id = ?", + timestamp, fromASNID, toASNID) + } else { + _, err = tx.Exec(` + INSERT INTO asn_peerings (id, from_asn_id, to_asn_id, first_seen, last_seen) + VALUES (?, ?, ?, ?, ?)`, + generateUUID().String(), fromASNID, toASNID, timestamp, timestamp) + } + if err != nil { + return err + } + + if err = tx.Commit(); err != nil { + d.logger.Error("Failed to commit transaction for peering", + "from_asn_id", fromASNID, + "to_asn_id", toASNID, + "error", err, + ) + + return err + } + + return nil +} + +// UpdateLiveRoute updates the live routing table for an announcement +func (d *Database) UpdateLiveRoute( + prefixID, originASNID uuid.UUID, + peerASN int, + nextHop string, + timestamp time.Time, +) error { + // Check if route already exists + var routeID sql.NullString + err := d.db.QueryRow(` + SELECT id FROM live_routes + WHERE prefix_id = ? AND origin_asn_id = ? AND peer_asn = ? AND withdrawn_at IS NULL`, + prefixID.String(), originASNID.String(), peerASN).Scan(&routeID) + + if err != nil && err != sql.ErrNoRows { + return err + } + + if routeID.Valid { + // Route exists and is active, update it + _, err = d.db.Exec(` + UPDATE live_routes + SET next_hop = ?, announced_at = ? + WHERE id = ?`, + nextHop, timestamp, routeID.String) + } else { + // Either new route or re-announcement of withdrawn route + _, err = d.db.Exec(` + INSERT OR REPLACE INTO live_routes + (id, prefix_id, origin_asn_id, peer_asn, next_hop, announced_at, withdrawn_at) + VALUES (?, ?, ?, ?, ?, ?, NULL)`, + generateUUID().String(), prefixID.String(), originASNID.String(), + peerASN, nextHop, timestamp) + } + + return err +} + +// WithdrawLiveRoute marks a route as withdrawn in the live routing table +func (d *Database) WithdrawLiveRoute(prefixID uuid.UUID, peerASN int, timestamp time.Time) error { + _, err := d.db.Exec(` + UPDATE live_routes + SET withdrawn_at = ? + WHERE prefix_id = ? AND peer_asn = ? AND withdrawn_at IS NULL`, + timestamp, prefixID.String(), peerASN) + + return err +} + +// GetActiveLiveRoutes returns all currently active routes (not withdrawn) +func (d *Database) GetActiveLiveRoutes() ([]LiveRoute, error) { + rows, err := d.db.Query(` + SELECT id, prefix_id, origin_asn_id, peer_asn, next_hop, announced_at + FROM live_routes + WHERE withdrawn_at IS NULL + ORDER BY announced_at DESC`) + if err != nil { + return nil, err + } + defer func() { + _ = rows.Close() + }() + + var routes []LiveRoute + for rows.Next() { + var route LiveRoute + var idStr, prefixIDStr, originASNIDStr string + err := rows.Scan(&idStr, &prefixIDStr, &originASNIDStr, + &route.PeerASN, &route.NextHop, &route.AnnouncedAt) + if err != nil { + return nil, err + } + + route.ID, _ = uuid.Parse(idStr) + route.PrefixID, _ = uuid.Parse(prefixIDStr) + route.OriginASNID, _ = uuid.Parse(originASNIDStr) + + routes = append(routes, route) + } + + return routes, rows.Err() +} + +// GetStats returns database statistics +func (d *Database) GetStats() (Stats, error) { + var stats Stats + + // Count ASNs + err := d.db.QueryRow("SELECT COUNT(*) FROM asns").Scan(&stats.ASNs) + if err != nil { + return stats, err + } + + // Count prefixes + err = d.db.QueryRow("SELECT COUNT(*) FROM prefixes").Scan(&stats.Prefixes) + if err != nil { + return stats, err + } + + // Count IPv4 and IPv6 prefixes + const ipVersionV4 = 4 + err = d.db.QueryRow("SELECT COUNT(*) FROM prefixes WHERE ip_version = ?", ipVersionV4).Scan(&stats.IPv4Prefixes) + if err != nil { + return stats, err + } + + const ipVersionV6 = 6 + err = d.db.QueryRow("SELECT COUNT(*) FROM prefixes WHERE ip_version = ?", ipVersionV6).Scan(&stats.IPv6Prefixes) + if err != nil { + return stats, err + } + + // Count peerings + err = d.db.QueryRow("SELECT COUNT(*) FROM asn_peerings").Scan(&stats.Peerings) + if err != nil { + return stats, err + } + + // Count live routes + err = d.db.QueryRow("SELECT COUNT(*) FROM live_routes WHERE withdrawn_at IS NULL").Scan(&stats.LiveRoutes) + if err != nil { + return stats, err + } + + return stats, nil +} diff --git a/internal/database/interface.go b/internal/database/interface.go new file mode 100644 index 0000000..fe05af5 --- /dev/null +++ b/internal/database/interface.go @@ -0,0 +1,46 @@ +package database + +import ( + "time" + + "github.com/google/uuid" +) + +// Stats contains database statistics +type Stats struct { + ASNs int + Prefixes int + IPv4Prefixes int + IPv6Prefixes int + Peerings int + LiveRoutes int +} + +// Store defines the interface for database operations +type Store interface { + // ASN operations + GetOrCreateASN(number int, timestamp time.Time) (*ASN, error) + + // Prefix operations + GetOrCreatePrefix(prefix string, timestamp time.Time) (*Prefix, error) + + // Announcement operations + RecordAnnouncement(announcement *Announcement) error + + // Peering operations + RecordPeering(fromASNID, toASNID string, timestamp time.Time) error + + // Live route operations + UpdateLiveRoute(prefixID, originASNID uuid.UUID, peerASN int, nextHop string, timestamp time.Time) error + WithdrawLiveRoute(prefixID uuid.UUID, peerASN int, timestamp time.Time) error + GetActiveLiveRoutes() ([]LiveRoute, error) + + // Statistics + GetStats() (Stats, error) + + // Lifecycle + Close() error +} + +// Ensure Database implements Store +var _ Store = (*Database)(nil) diff --git a/internal/database/models.go b/internal/database/models.go new file mode 100644 index 0000000..b9777f7 --- /dev/null +++ b/internal/database/models.go @@ -0,0 +1,57 @@ +package database + +import ( + "time" + + "github.com/google/uuid" +) + +// ASN represents an Autonomous System Number +type ASN struct { + ID uuid.UUID `json:"id"` + Number int `json:"number"` + FirstSeen time.Time `json:"first_seen"` + LastSeen time.Time `json:"last_seen"` +} + +// Prefix represents an IP prefix (CIDR block) +type Prefix struct { + ID uuid.UUID `json:"id"` + Prefix string `json:"prefix"` + IPVersion int `json:"ip_version"` // 4 or 6 + FirstSeen time.Time `json:"first_seen"` + LastSeen time.Time `json:"last_seen"` +} + +// Announcement represents a BGP announcement +type Announcement struct { + ID uuid.UUID `json:"id"` + PrefixID uuid.UUID `json:"prefix_id"` + ASNID uuid.UUID `json:"asn_id"` + OriginASNID uuid.UUID `json:"origin_asn_id"` + Path string `json:"path"` // JSON-encoded AS path + NextHop string `json:"next_hop"` + Timestamp time.Time `json:"timestamp"` + IsWithdrawal bool `json:"is_withdrawal"` +} + +// ASNPeering represents a peering relationship between two ASNs +type ASNPeering struct { + ID uuid.UUID `json:"id"` + FromASNID uuid.UUID `json:"from_asn_id"` + ToASNID uuid.UUID `json:"to_asn_id"` + FirstSeen time.Time `json:"first_seen"` + LastSeen time.Time `json:"last_seen"` +} + +// LiveRoute represents the current state of a route in the live routing table +type LiveRoute struct { + ID uuid.UUID `json:"id"` + PrefixID uuid.UUID `json:"prefix_id"` + OriginASNID uuid.UUID `json:"origin_asn_id"` + PeerASN int `json:"peer_asn"` + Path string `json:"path"` + NextHop string `json:"next_hop"` + AnnouncedAt time.Time `json:"announced_at"` + WithdrawnAt *time.Time `json:"withdrawn_at"` +} diff --git a/internal/database/utils.go b/internal/database/utils.go new file mode 100644 index 0000000..f09a3b8 --- /dev/null +++ b/internal/database/utils.go @@ -0,0 +1,25 @@ +package database + +import ( + "strings" + + "github.com/google/uuid" +) + +func generateUUID() uuid.UUID { + return uuid.New() +} + +const ( + ipVersionV4 = 4 + ipVersionV6 = 6 +) + +// detectIPVersion determines if a prefix is IPv4 (returns 4) or IPv6 (returns 6) +func detectIPVersion(prefix string) int { + if strings.Contains(prefix, ":") { + return ipVersionV6 + } + + return ipVersionV4 +} diff --git a/internal/metrics/metrics.go b/internal/metrics/metrics.go new file mode 100644 index 0000000..03f0f56 --- /dev/null +++ b/internal/metrics/metrics.go @@ -0,0 +1,100 @@ +// Package metrics provides centralized metrics tracking for the RouteWatch application +package metrics + +import ( + "sync" + "sync/atomic" + "time" + + "github.com/rcrowley/go-metrics" +) + +// Tracker provides centralized metrics tracking +type Tracker struct { + mu sync.RWMutex + registry metrics.Registry + connectedSince time.Time + isConnected atomic.Bool + + // Stream metrics + messageCounter metrics.Counter + byteCounter metrics.Counter + messageRate metrics.Meter + byteRate metrics.Meter +} + +// New creates a new metrics tracker +func New() *Tracker { + registry := metrics.NewRegistry() + + return &Tracker{ + registry: registry, + messageCounter: metrics.NewCounter(), + byteCounter: metrics.NewCounter(), + messageRate: metrics.NewMeter(), + byteRate: metrics.NewMeter(), + } +} + +// SetConnected updates the connection status +func (t *Tracker) SetConnected(connected bool) { + t.isConnected.Store(connected) + if connected { + t.mu.Lock() + t.connectedSince = time.Now() + t.mu.Unlock() + } +} + +// IsConnected returns the current connection status +func (t *Tracker) IsConnected() bool { + return t.isConnected.Load() +} + +// RecordMessage records a received message and its size +func (t *Tracker) RecordMessage(bytes int64) { + t.messageCounter.Inc(1) + t.byteCounter.Inc(bytes) + t.messageRate.Mark(1) + t.byteRate.Mark(bytes) +} + +// GetStreamMetrics returns current streaming metrics +func (t *Tracker) GetStreamMetrics() StreamMetrics { + t.mu.RLock() + connectedSince := t.connectedSince + t.mu.RUnlock() + + const bitsPerByte = 8 + + // Safely convert counters to uint64 + msgCount := t.messageCounter.Count() + byteCount := t.byteCounter.Count() + + var totalMessages, totalBytes uint64 + if msgCount >= 0 { + totalMessages = uint64(msgCount) + } + if byteCount >= 0 { + totalBytes = uint64(byteCount) + } + + return StreamMetrics{ + TotalMessages: totalMessages, + TotalBytes: totalBytes, + ConnectedSince: connectedSince, + Connected: t.isConnected.Load(), + MessagesPerSec: t.messageRate.Rate1(), + BitsPerSec: t.byteRate.Rate1() * bitsPerByte, + } +} + +// StreamMetrics contains streaming statistics +type StreamMetrics struct { + TotalMessages uint64 + TotalBytes uint64 + ConnectedSince time.Time + Connected bool + MessagesPerSec float64 + BitsPerSec float64 +} diff --git a/internal/ristypes/ris.go b/internal/ristypes/ris.go new file mode 100644 index 0000000..7ff46b3 --- /dev/null +++ b/internal/ristypes/ris.go @@ -0,0 +1,81 @@ +// Package ristypes defines the data structures for RIS Live BGP messages and announcements. +package ristypes + +import ( + "encoding/json" + "time" +) + +// ASPath represents an AS path that may contain nested AS sets +type ASPath []int + +// UnmarshalJSON implements custom JSON unmarshaling to flatten nested arrays +func (p *ASPath) UnmarshalJSON(data []byte) error { + // First try to unmarshal as a simple array of integers + var simple []int + if err := json.Unmarshal(data, &simple); err == nil { + *p = ASPath(simple) + + return nil + } + + // If that fails, unmarshal as array of interfaces and flatten + var raw []interface{} + if err := json.Unmarshal(data, &raw); err != nil { + return err + } + + // Flatten the array + result := make([]int, 0) + for _, item := range raw { + switch v := item.(type) { + case float64: + result = append(result, int(v)) + case []interface{}: + // Nested array - flatten it + for _, nested := range v { + if num, ok := nested.(float64); ok { + result = append(result, int(num)) + } + } + } + } + + *p = ASPath(result) + + return nil +} + +// RISLiveMessage represents the outer wrapper from the RIS Live stream +type RISLiveMessage struct { + Type string `json:"type"` + Data RISMessage `json:"data"` +} + +// RISMessage represents a message from the RIS Live stream +type RISMessage struct { + Type string `json:"type"` + Timestamp float64 `json:"timestamp"` + ParsedTimestamp time.Time `json:"-"` // Parsed from Timestamp field + Peer string `json:"peer"` + PeerASN string `json:"peer_asn"` + ID string `json:"id"` + Host string `json:"host"` + RRC string `json:"rrc,omitempty"` + MrtTime float64 `json:"mrt_time,omitempty"` + SocketTime float64 `json:"socket_time,omitempty"` + Path ASPath `json:"path,omitempty"` + Community [][]int `json:"community,omitempty"` + Origin string `json:"origin,omitempty"` + MED *int `json:"med,omitempty"` + LocalPref *int `json:"local_pref,omitempty"` + Announcements []RISAnnouncement `json:"announcements,omitempty"` + Withdrawals []string `json:"withdrawals,omitempty"` + Raw string `json:"raw,omitempty"` +} + +// RISAnnouncement represents announcement data within a RIS message +type RISAnnouncement struct { + NextHop string `json:"next_hop"` + Prefixes []string `json:"prefixes"` +} diff --git a/internal/routewatch/app.go b/internal/routewatch/app.go new file mode 100644 index 0000000..6434a78 --- /dev/null +++ b/internal/routewatch/app.go @@ -0,0 +1,158 @@ +// Package routewatch contains the primary RouteWatch type that represents a running instance +// of the application and contains pointers to its core dependencies, and is responsible for initialization. +package routewatch + +import ( + "context" + "log/slog" + "os" + "strings" + "time" + + "git.eeqj.de/sneak/routewatch/internal/database" + "git.eeqj.de/sneak/routewatch/internal/metrics" + "git.eeqj.de/sneak/routewatch/internal/server" + "git.eeqj.de/sneak/routewatch/internal/streamer" + + "go.uber.org/fx" +) + +// Config contains runtime configuration for RouteWatch +type Config struct { + MaxRuntime time.Duration // Maximum runtime (0 = run forever) +} + +// NewConfig provides default configuration +func NewConfig() Config { + return Config{ + MaxRuntime: 0, // Run forever by default + } +} + +// Dependencies contains all dependencies for RouteWatch +type Dependencies struct { + fx.In + + DB database.Store + Streamer *streamer.Streamer + Server *server.Server + Logger *slog.Logger + Config Config `optional:"true"` +} + +// RouteWatch represents the main application instance +type RouteWatch struct { + db database.Store + streamer *streamer.Streamer + server *server.Server + logger *slog.Logger + maxRuntime time.Duration +} + +// New creates a new RouteWatch instance +func New(deps Dependencies) *RouteWatch { + return &RouteWatch{ + db: deps.DB, + streamer: deps.Streamer, + server: deps.Server, + logger: deps.Logger, + maxRuntime: deps.Config.MaxRuntime, + } +} + +// Run starts the RouteWatch application +func (rw *RouteWatch) Run(ctx context.Context) error { + rw.logger.Info("Starting RouteWatch") + + // Apply runtime limit if specified + if rw.maxRuntime > 0 { + var cancel context.CancelFunc + ctx, cancel = context.WithTimeout(ctx, rw.maxRuntime) + defer cancel() + rw.logger.Info("Running with time limit", "max_runtime", rw.maxRuntime) + } + + // Register database handler to process BGP UPDATE messages + dbHandler := NewDatabaseHandler(rw.db, rw.logger) + rw.streamer.RegisterHandler(dbHandler) + + // Start streaming + if err := rw.streamer.Start(); err != nil { + return err + } + + // Start HTTP server + if err := rw.server.Start(); err != nil { + return err + } + + // Wait for context cancellation + <-ctx.Done() + + // Stop services + rw.streamer.Stop() + + // Stop HTTP server with a timeout + const serverStopTimeout = 5 * time.Second + stopCtx, cancel := context.WithTimeout(context.Background(), serverStopTimeout) + defer cancel() + if err := rw.server.Stop(stopCtx); err != nil { + rw.logger.Error("Failed to stop HTTP server gracefully", "error", err) + } + + // Log final metrics + metrics := rw.streamer.GetMetrics() + rw.logger.Info("Final metrics", + "total_messages", metrics.TotalMessages, + "total_bytes", metrics.TotalBytes, + "messages_per_sec", metrics.MessagesPerSec, + "bits_per_sec", metrics.BitsPerSec, + "duration", time.Since(metrics.ConnectedSince), + ) + + return nil +} + +// NewLogger creates a structured logger +func NewLogger() *slog.Logger { + level := slog.LevelInfo + if debug := os.Getenv("DEBUG"); strings.Contains(debug, "routewatch") { + level = slog.LevelDebug + } + + opts := &slog.HandlerOptions{ + Level: level, + } + + var handler slog.Handler + if os.Stdout.Name() != "/dev/stdout" || os.Getenv("TERM") == "" { + // Not a terminal, use JSON + handler = slog.NewJSONHandler(os.Stdout, opts) + } else { + // Terminal, use text + handler = slog.NewTextHandler(os.Stdout, opts) + } + + return slog.New(handler) +} + +// getModule provides all fx dependencies +func getModule() fx.Option { + return fx.Options( + fx.Provide( + NewLogger, + NewConfig, + metrics.New, + database.New, + fx.Annotate( + func(db *database.Database) database.Store { + return db + }, + fx.As(new(database.Store)), + ), + streamer.New, + server.New, + New, + ), + ) +} diff --git a/internal/routewatch/app_integration_test.go b/internal/routewatch/app_integration_test.go new file mode 100644 index 0000000..c088438 --- /dev/null +++ b/internal/routewatch/app_integration_test.go @@ -0,0 +1,243 @@ +package routewatch + +import ( + "context" + "strings" + "sync" + "testing" + "time" + + "git.eeqj.de/sneak/routewatch/internal/database" + "git.eeqj.de/sneak/routewatch/internal/metrics" + "git.eeqj.de/sneak/routewatch/internal/server" + "git.eeqj.de/sneak/routewatch/internal/streamer" + "github.com/google/uuid" +) + +// mockStore is a mock implementation of database.Store for testing +type mockStore struct { + mu sync.Mutex + + // Counters for tracking calls + ASNCount int + PrefixCount int + PeeringCount int + RouteCount int + WithdrawalCount int + + // Track unique items + ASNs map[int]*database.ASN + Prefixes map[string]*database.Prefix + Peerings map[string]bool // key is "from_to" + Routes map[string]bool // key is "prefix_origin_peer" + + // Track IP versions + IPv4Prefixes int + IPv6Prefixes int +} + +// newMockStore creates a new mock store +func newMockStore() *mockStore { + return &mockStore{ + ASNs: make(map[int]*database.ASN), + Prefixes: make(map[string]*database.Prefix), + Peerings: make(map[string]bool), + Routes: make(map[string]bool), + } +} + +// GetOrCreateASN mock implementation +func (m *mockStore) GetOrCreateASN(number int, timestamp time.Time) (*database.ASN, error) { + m.mu.Lock() + defer m.mu.Unlock() + + if asn, exists := m.ASNs[number]; exists { + asn.LastSeen = timestamp + + return asn, nil + } + + asn := &database.ASN{ + ID: uuid.New(), + Number: number, + FirstSeen: timestamp, + LastSeen: timestamp, + } + m.ASNs[number] = asn + m.ASNCount++ + + return asn, nil +} + +// GetOrCreatePrefix mock implementation +func (m *mockStore) GetOrCreatePrefix(prefix string, timestamp time.Time) (*database.Prefix, error) { + m.mu.Lock() + defer m.mu.Unlock() + + if p, exists := m.Prefixes[prefix]; exists { + p.LastSeen = timestamp + + return p, nil + } + + const ( + ipVersionV4 = 4 + ipVersionV6 = 6 + ) + + ipVersion := ipVersionV4 + if strings.Contains(prefix, ":") { + ipVersion = ipVersionV6 + } + + p := &database.Prefix{ + ID: uuid.New(), + Prefix: prefix, + IPVersion: ipVersion, + FirstSeen: timestamp, + LastSeen: timestamp, + } + m.Prefixes[prefix] = p + m.PrefixCount++ + + if ipVersion == ipVersionV4 { + m.IPv4Prefixes++ + } else { + m.IPv6Prefixes++ + } + + return p, nil +} + +// RecordAnnouncement mock implementation +func (m *mockStore) RecordAnnouncement(_ *database.Announcement) error { + // Not tracking announcements in detail for now + return nil +} + +// RecordPeering mock implementation +func (m *mockStore) RecordPeering(fromASNID, toASNID string, _ time.Time) error { + m.mu.Lock() + defer m.mu.Unlock() + + key := fromASNID + "_" + toASNID + if !m.Peerings[key] { + m.Peerings[key] = true + m.PeeringCount++ + } + + return nil +} + +// UpdateLiveRoute mock implementation +func (m *mockStore) UpdateLiveRoute(prefixID, originASNID uuid.UUID, peerASN int, _ string, _ time.Time) error { + m.mu.Lock() + defer m.mu.Unlock() + + key := prefixID.String() + "_" + originASNID.String() + "_" + string(rune(peerASN)) + if !m.Routes[key] { + m.Routes[key] = true + m.RouteCount++ + } + + return nil +} + +// WithdrawLiveRoute mock implementation +func (m *mockStore) WithdrawLiveRoute(_ uuid.UUID, _ int, _ time.Time) error { + m.mu.Lock() + defer m.mu.Unlock() + + m.WithdrawalCount++ + + return nil +} + +// GetActiveLiveRoutes mock implementation +func (m *mockStore) GetActiveLiveRoutes() ([]database.LiveRoute, error) { + return []database.LiveRoute{}, nil +} + +// Close mock implementation +func (m *mockStore) Close() error { + return nil +} + +// GetStats returns statistics about the mock store +func (m *mockStore) GetStats() (database.Stats, error) { + m.mu.Lock() + defer m.mu.Unlock() + + return database.Stats{ + ASNs: len(m.ASNs), + Prefixes: len(m.Prefixes), + IPv4Prefixes: m.IPv4Prefixes, + IPv6Prefixes: m.IPv6Prefixes, + Peerings: m.PeeringCount, + LiveRoutes: m.RouteCount, + }, nil +} + +func TestRouteWatchLiveFeed(t *testing.T) { + // Create mock database + mockDB := newMockStore() + defer mockDB.Close() + + logger := NewLogger() + + // Create metrics tracker + metricsTracker := metrics.New() + + // Create streamer + s := streamer.New(logger, metricsTracker) + + // Create server + srv := server.New(mockDB, s, logger) + + // Create RouteWatch with 5 second limit + deps := Dependencies{ + DB: mockDB, + Streamer: s, + Server: srv, + Logger: logger, + Config: Config{ + MaxRuntime: 5 * time.Second, + }, + } + rw := New(deps) + + // Run with context + ctx := context.Background() + go func() { + _ = rw.Run(ctx) + }() + + // Wait for the configured duration + time.Sleep(5 * time.Second) + + // Get statistics + stats, err := mockDB.GetStats() + if err != nil { + t.Fatalf("Failed to get stats: %v", err) + } + + if stats.ASNs == 0 { + t.Error("Expected to receive some ASNs from live feed") + } + t.Logf("Received %d unique ASNs in 5 seconds", stats.ASNs) + + if stats.Prefixes == 0 { + t.Error("Expected to receive some prefixes from live feed") + } + t.Logf("Received %d unique prefixes (%d IPv4, %d IPv6) in 5 seconds", stats.Prefixes, stats.IPv4Prefixes, stats.IPv6Prefixes) + + if stats.Peerings == 0 { + t.Error("Expected to receive some peerings from live feed") + } + t.Logf("Recorded %d AS peering relationships in 5 seconds", stats.Peerings) + + if stats.LiveRoutes == 0 { + t.Error("Expected to have some active routes") + } + t.Logf("Active routes: %d", stats.LiveRoutes) +} diff --git a/internal/routewatch/app_test.go b/internal/routewatch/app_test.go new file mode 100644 index 0000000..b2ea3af --- /dev/null +++ b/internal/routewatch/app_test.go @@ -0,0 +1,12 @@ +package routewatch + +import ( + "testing" +) + +func TestNewLogger(t *testing.T) { + logger := NewLogger() + if logger == nil { + t.Fatal("NewLogger returned nil") + } +} diff --git a/internal/routewatch/cli.go b/internal/routewatch/cli.go new file mode 100644 index 0000000..3c5b9b8 --- /dev/null +++ b/internal/routewatch/cli.go @@ -0,0 +1,51 @@ +package routewatch + +import ( + "context" + "log/slog" + "os" + "os/signal" + "syscall" + + "go.uber.org/fx" +) + +// CLIEntry is the main entry point for the CLI +func CLIEntry() { + app := fx.New( + getModule(), + fx.Invoke(func(lc fx.Lifecycle, rw *RouteWatch, logger *slog.Logger) { + lc.Append(fx.Hook{ + OnStart: func(_ context.Context) error { + go func() { + ctx, cancel := context.WithCancel(context.Background()) + defer cancel() + + // Handle shutdown signals + sigCh := make(chan os.Signal, 1) + signal.Notify(sigCh, os.Interrupt, syscall.SIGTERM) + + go func() { + <-sigCh + logger.Info("Received shutdown signal") + cancel() + }() + + if err := rw.Run(ctx); err != nil { + logger.Error("RouteWatch error", "error", err) + } + }() + + return nil + }, + OnStop: func(_ context.Context) error { + logger.Info("Shutting down RouteWatch") + + return nil + }, + }) + }), + ) + + app.Run() +} diff --git a/internal/routewatch/dbhandler.go b/internal/routewatch/dbhandler.go new file mode 100644 index 0000000..9e29281 --- /dev/null +++ b/internal/routewatch/dbhandler.go @@ -0,0 +1,144 @@ +package routewatch + +import ( + "log/slog" + "strconv" + + "git.eeqj.de/sneak/routewatch/internal/database" + "git.eeqj.de/sneak/routewatch/internal/ristypes" +) + +// DatabaseHandler handles BGP messages and stores them in the database +type DatabaseHandler struct { + db database.Store + logger *slog.Logger +} + +// NewDatabaseHandler creates a new database handler +func NewDatabaseHandler(db database.Store, logger *slog.Logger) *DatabaseHandler { + return &DatabaseHandler{ + db: db, + logger: logger, + } +} + +// WantsMessage returns true if this handler wants to process messages of the given type +func (h *DatabaseHandler) WantsMessage(messageType string) bool { + // We only care about UPDATE messages for the database + return messageType == "UPDATE" +} + +// HandleMessage processes a RIS message and updates the database +func (h *DatabaseHandler) HandleMessage(msg *ristypes.RISMessage) { + // Use the pre-parsed timestamp + timestamp := msg.ParsedTimestamp + + // Parse peer ASN + peerASN, err := strconv.Atoi(msg.PeerASN) + if err != nil { + h.logger.Error("Failed to parse peer ASN", "peer_asn", msg.PeerASN, "error", err) + + return + } + + // Get origin ASN from path (last element) + var originASN int + if len(msg.Path) > 0 { + originASN = msg.Path[len(msg.Path)-1] + } + + // Process announcements + for _, announcement := range msg.Announcements { + for _, prefix := range announcement.Prefixes { + // Get or create prefix + p, err := h.db.GetOrCreatePrefix(prefix, timestamp) + if err != nil { + h.logger.Error("Failed to get/create prefix", "prefix", prefix, "error", err) + + continue + } + + // Get or create origin ASN + asn, err := h.db.GetOrCreateASN(originASN, timestamp) + if err != nil { + h.logger.Error("Failed to get/create ASN", "asn", originASN, "error", err) + + continue + } + + // Update live route + err = h.db.UpdateLiveRoute( + p.ID, + asn.ID, + peerASN, + announcement.NextHop, + timestamp, + ) + if err != nil { + h.logger.Error("Failed to update live route", + "prefix", prefix, + "origin_asn", originASN, + "peer_asn", peerASN, + "error", err, + ) + } + + // TODO: Record the announcement in the announcements table + // Process AS path to update peerings + if len(msg.Path) > 1 { + for i := range len(msg.Path) - 1 { + fromASN := msg.Path[i] + toASN := msg.Path[i+1] + + // Get or create both ASNs + fromAS, err := h.db.GetOrCreateASN(fromASN, timestamp) + if err != nil { + h.logger.Error("Failed to get/create from ASN", "asn", fromASN, "error", err) + + continue + } + + toAS, err := h.db.GetOrCreateASN(toASN, timestamp) + if err != nil { + h.logger.Error("Failed to get/create to ASN", "asn", toASN, "error", err) + + continue + } + + // Record the peering + err = h.db.RecordPeering(fromAS.ID.String(), toAS.ID.String(), timestamp) + if err != nil { + h.logger.Error("Failed to record peering", + "from_asn", fromASN, + "to_asn", toASN, + "error", err, + ) + } + } + } + } + } + + // Process withdrawals + for _, prefix := range msg.Withdrawals { + // Get prefix + p, err := h.db.GetOrCreatePrefix(prefix, timestamp) + if err != nil { + h.logger.Error("Failed to get prefix for withdrawal", "prefix", prefix, "error", err) + + continue + } + + // Withdraw the route + err = h.db.WithdrawLiveRoute(p.ID, peerASN, timestamp) + if err != nil { + h.logger.Error("Failed to withdraw route", + "prefix", prefix, + "peer_asn", peerASN, + "error", err, + ) + } + + // TODO: Record the withdrawal in the withdrawals table + } +} diff --git a/internal/routewatch/handler.go b/internal/routewatch/handler.go new file mode 100644 index 0000000..1559b16 --- /dev/null +++ b/internal/routewatch/handler.go @@ -0,0 +1,45 @@ +package routewatch + +import ( + "git.eeqj.de/sneak/routewatch/internal/ristypes" + "log/slog" +) + +// SimpleHandler is a basic implementation of streamer.MessageHandler +type SimpleHandler struct { + logger *slog.Logger + messageTypes []string + callback func(*ristypes.RISMessage) +} + +// NewSimpleHandler creates a handler that accepts specific message types +func NewSimpleHandler(logger *slog.Logger, messageTypes []string, callback func(*ristypes.RISMessage)) *SimpleHandler { + return &SimpleHandler{ + logger: logger, + messageTypes: messageTypes, + callback: callback, + } +} + +// WantsMessage returns true if this handler wants to process messages of the given type +func (h *SimpleHandler) WantsMessage(messageType string) bool { + // If no specific types are set, accept all messages + if len(h.messageTypes) == 0 { + return true + } + + for _, t := range h.messageTypes { + if t == messageType { + return true + } + } + + return false +} + +// HandleMessage processes a RIS message +func (h *SimpleHandler) HandleMessage(msg *ristypes.RISMessage) { + if h.callback != nil { + h.callback(msg) + } +} diff --git a/internal/server/server.go b/internal/server/server.go new file mode 100644 index 0000000..d76ac5a --- /dev/null +++ b/internal/server/server.go @@ -0,0 +1,416 @@ +// Package server provides HTTP endpoints for status monitoring and statistics +package server + +import ( + "context" + "encoding/json" + "fmt" + "log/slog" + "net/http" + "os" + "time" + + "git.eeqj.de/sneak/routewatch/internal/database" + "git.eeqj.de/sneak/routewatch/internal/streamer" + "github.com/go-chi/chi/v5" + "github.com/go-chi/chi/v5/middleware" +) + +// Server provides HTTP endpoints for status monitoring +type Server struct { + router *chi.Mux + db database.Store + streamer *streamer.Streamer + logger *slog.Logger + srv *http.Server +} + +// New creates a new HTTP server +func New(db database.Store, streamer *streamer.Streamer, logger *slog.Logger) *Server { + s := &Server{ + db: db, + streamer: streamer, + logger: logger, + } + + s.setupRoutes() + + return s +} + +// setupRoutes configures the HTTP routes +func (s *Server) setupRoutes() { + r := chi.NewRouter() + + // Middleware + r.Use(middleware.RequestID) + r.Use(middleware.RealIP) + r.Use(middleware.Logger) + r.Use(middleware.Recoverer) + const requestTimeout = 60 * time.Second + r.Use(middleware.Timeout(requestTimeout)) + + // Routes + r.Get("/", s.handleRoot()) + r.Get("/status", s.handleStatusHTML()) + r.Get("/status.json", s.handleStatusJSON()) + + // API routes + r.Route("/api/v1", func(r chi.Router) { + r.Get("/stats", s.handleStats()) + }) + + s.router = r +} + +// Start starts the HTTP server +func (s *Server) Start() error { + port := os.Getenv("PORT") + if port == "" { + port = "8080" + } + + const readHeaderTimeout = 10 * time.Second + s.srv = &http.Server{ + Addr: ":" + port, + Handler: s.router, + ReadHeaderTimeout: readHeaderTimeout, + } + + s.logger.Info("Starting HTTP server", "port", port) + + go func() { + if err := s.srv.ListenAndServe(); err != nil && err != http.ErrServerClosed { + s.logger.Error("HTTP server error", "error", err) + } + }() + + return nil +} + +// Stop gracefully stops the HTTP server +func (s *Server) Stop(ctx context.Context) error { + if s.srv == nil { + return nil + } + + s.logger.Info("Stopping HTTP server") + + return s.srv.Shutdown(ctx) +} + +// handleRoot returns a handler that redirects to /status +func (s *Server) handleRoot() http.HandlerFunc { + return func(w http.ResponseWriter, r *http.Request) { + http.Redirect(w, r, "/status", http.StatusSeeOther) + } +} + +// handleStatusJSON returns a handler that serves JSON statistics +func (s *Server) handleStatusJSON() http.HandlerFunc { + // Stats represents the statistics response + type Stats struct { + Uptime string `json:"uptime"` + TotalMessages uint64 `json:"total_messages"` + TotalBytes uint64 `json:"total_bytes"` + MessagesPerSec float64 `json:"messages_per_sec"` + MbitsPerSec float64 `json:"mbits_per_sec"` + Connected bool `json:"connected"` + ASNs int `json:"asns"` + Prefixes int `json:"prefixes"` + IPv4Prefixes int `json:"ipv4_prefixes"` + IPv6Prefixes int `json:"ipv6_prefixes"` + Peerings int `json:"peerings"` + LiveRoutes int `json:"live_routes"` + } + + return func(w http.ResponseWriter, _ *http.Request) { + metrics := s.streamer.GetMetrics() + + // Get database stats + dbStats, err := s.db.GetStats() + if err != nil { + http.Error(w, err.Error(), http.StatusInternalServerError) + + return + } + + uptime := time.Since(metrics.ConnectedSince).Truncate(time.Second).String() + if metrics.ConnectedSince.IsZero() { + uptime = "0s" + } + + const bitsPerMegabit = 1000000.0 + + stats := Stats{ + Uptime: uptime, + TotalMessages: metrics.TotalMessages, + TotalBytes: metrics.TotalBytes, + MessagesPerSec: metrics.MessagesPerSec, + MbitsPerSec: metrics.BitsPerSec / bitsPerMegabit, + Connected: metrics.Connected, + ASNs: dbStats.ASNs, + Prefixes: dbStats.Prefixes, + IPv4Prefixes: dbStats.IPv4Prefixes, + IPv6Prefixes: dbStats.IPv6Prefixes, + Peerings: dbStats.Peerings, + LiveRoutes: dbStats.LiveRoutes, + } + + w.Header().Set("Content-Type", "application/json") + if err := json.NewEncoder(w).Encode(stats); err != nil { + s.logger.Error("Failed to encode stats", "error", err) + } + } +} + +// handleStats returns a handler that serves API v1 statistics +func (s *Server) handleStats() http.HandlerFunc { + // StatsResponse represents the API statistics response + type StatsResponse struct { + Uptime string `json:"uptime"` + TotalMessages uint64 `json:"total_messages"` + TotalBytes uint64 `json:"total_bytes"` + MessagesPerSec float64 `json:"messages_per_sec"` + MbitsPerSec float64 `json:"mbits_per_sec"` + Connected bool `json:"connected"` + ASNs int `json:"asns"` + Prefixes int `json:"prefixes"` + IPv4Prefixes int `json:"ipv4_prefixes"` + IPv6Prefixes int `json:"ipv6_prefixes"` + Peerings int `json:"peerings"` + LiveRoutes int `json:"live_routes"` + } + + return func(w http.ResponseWriter, _ *http.Request) { + metrics := s.streamer.GetMetrics() + + // Get database stats + dbStats, err := s.db.GetStats() + if err != nil { + http.Error(w, err.Error(), http.StatusInternalServerError) + + return + } + + uptime := time.Since(metrics.ConnectedSince).Truncate(time.Second).String() + if metrics.ConnectedSince.IsZero() { + uptime = "0s" + } + + const bitsPerMegabit = 1000000.0 + + stats := StatsResponse{ + Uptime: uptime, + TotalMessages: metrics.TotalMessages, + TotalBytes: metrics.TotalBytes, + MessagesPerSec: metrics.MessagesPerSec, + MbitsPerSec: metrics.BitsPerSec / bitsPerMegabit, + Connected: metrics.Connected, + ASNs: dbStats.ASNs, + Prefixes: dbStats.Prefixes, + IPv4Prefixes: dbStats.IPv4Prefixes, + IPv6Prefixes: dbStats.IPv6Prefixes, + Peerings: dbStats.Peerings, + LiveRoutes: dbStats.LiveRoutes, + } + + w.Header().Set("Content-Type", "application/json") + if err := json.NewEncoder(w).Encode(stats); err != nil { + s.logger.Error("Failed to encode stats", "error", err) + } + } +} + +// handleStatusHTML returns a handler that serves the HTML status page +func (s *Server) handleStatusHTML() http.HandlerFunc { + return func(w http.ResponseWriter, _ *http.Request) { + w.Header().Set("Content-Type", "text/html; charset=utf-8") + if _, err := fmt.Fprint(w, statusHTML); err != nil { + s.logger.Error("Failed to write HTML", "error", err) + } + } +} + +const statusHTML = ` + + + + + RouteWatch Status + + + +

RouteWatch Status

+ +
+
+

Connection Status

+
+ Status + - +
+
+ Uptime + - +
+
+ +
+

Stream Statistics

+
+ Total Messages + - +
+
+ Messages/sec + - +
+
+ Total Data + - +
+
+ Throughput + - +
+
+ +
+

Database Statistics

+
+ ASNs + - +
+
+ Total Prefixes + - +
+
+ IPv4 Prefixes + - +
+
+ IPv6 Prefixes + - +
+
+ Peerings + - +
+
+ Live Routes + - +
+
+
+ + + + +` diff --git a/internal/streamer/streamer.go b/internal/streamer/streamer.go new file mode 100644 index 0000000..6901408 --- /dev/null +++ b/internal/streamer/streamer.go @@ -0,0 +1,310 @@ +// Package streamer implements an HTTP client that connects to the RIPE RIS Live streaming API, +// parses BGP UPDATE messages from the JSON stream, and dispatches them to registered handlers. +package streamer + +import ( + "bufio" + "context" + "encoding/json" + "fmt" + "log/slog" + "net/http" + "os" + "sync" + "time" + + "git.eeqj.de/sneak/routewatch/internal/metrics" + "git.eeqj.de/sneak/routewatch/internal/ristypes" +) + +const ( + risLiveURL = "https://ris-live.ripe.net/v1/stream/?format=json" + metricsWindowSize = 60 // seconds for rolling average + metricsUpdateRate = time.Second + metricsLogInterval = 10 * time.Second + bytesPerKB = 1024 + bytesPerMB = 1024 * 1024 +) + +// MessageHandler is an interface for handling RIS messages +type MessageHandler interface { + // WantsMessage returns true if this handler wants to process messages of the given type + WantsMessage(messageType string) bool + + // HandleMessage processes a RIS message + HandleMessage(msg *ristypes.RISMessage) +} + +// RawMessageHandler is a callback for handling raw JSON lines from the stream +type RawMessageHandler func(line string) + +// Streamer handles streaming BGP updates from RIS Live +type Streamer struct { + logger *slog.Logger + client *http.Client + handlers []MessageHandler + rawHandler RawMessageHandler + mu sync.RWMutex + cancel context.CancelFunc + running bool + metrics *metrics.Tracker +} + +// New creates a new RIS streamer +func New(logger *slog.Logger, metrics *metrics.Tracker) *Streamer { + return &Streamer{ + logger: logger, + client: &http.Client{ + Timeout: 0, // No timeout for streaming + }, + handlers: make([]MessageHandler, 0), + metrics: metrics, + } +} + +// RegisterHandler adds a callback for message processing +func (s *Streamer) RegisterHandler(handler MessageHandler) { + s.mu.Lock() + defer s.mu.Unlock() + s.handlers = append(s.handlers, handler) +} + +// RegisterRawHandler sets a callback for raw message lines +func (s *Streamer) RegisterRawHandler(handler RawMessageHandler) { + s.mu.Lock() + defer s.mu.Unlock() + s.rawHandler = handler +} + +// Start begins streaming in a goroutine +func (s *Streamer) Start() error { + s.mu.Lock() + defer s.mu.Unlock() + + if s.running { + return fmt.Errorf("streamer already running") + } + + ctx, cancel := context.WithCancel(context.Background()) + s.cancel = cancel + s.running = true + + go func() { + if err := s.stream(ctx); err != nil { + s.logger.Error("Streaming error", "error", err) + } + s.mu.Lock() + s.running = false + s.mu.Unlock() + }() + + return nil +} + +// Stop halts the streaming +func (s *Streamer) Stop() { + s.mu.Lock() + if s.cancel != nil { + s.cancel() + } + s.mu.Unlock() + s.metrics.SetConnected(false) +} + +// IsRunning returns whether the streamer is currently active +func (s *Streamer) IsRunning() bool { + s.mu.RLock() + defer s.mu.RUnlock() + + return s.running +} + +// GetMetrics returns current streaming metrics +func (s *Streamer) GetMetrics() metrics.StreamMetrics { + return s.metrics.GetStreamMetrics() +} + +// logMetrics logs the current streaming statistics +func (s *Streamer) logMetrics() { + metrics := s.metrics.GetStreamMetrics() + uptime := time.Since(metrics.ConnectedSince) + + const bitsPerMegabit = 1000000 + s.logger.Info("Stream statistics", + "uptime", uptime, + "total_messages", metrics.TotalMessages, + "total_bytes", metrics.TotalBytes, + "total_mb", fmt.Sprintf("%.2f", float64(metrics.TotalBytes)/bytesPerMB), + "messages_per_sec", fmt.Sprintf("%.2f", metrics.MessagesPerSec), + "bits_per_sec", fmt.Sprintf("%.0f", metrics.BitsPerSec), + "mbps", fmt.Sprintf("%.2f", metrics.BitsPerSec/bitsPerMegabit), + ) +} + +// updateMetrics updates the metrics counters and rates +func (s *Streamer) updateMetrics(messageBytes int) { + s.metrics.RecordMessage(int64(messageBytes)) +} + +func (s *Streamer) stream(ctx context.Context) error { + req, err := http.NewRequestWithContext(ctx, "GET", risLiveURL, nil) + if err != nil { + return fmt.Errorf("failed to create request: %w", err) + } + + resp, err := s.client.Do(req) + if err != nil { + return fmt.Errorf("failed to connect to RIS Live: %w", err) + } + defer func() { + if err := resp.Body.Close(); err != nil { + s.logger.Error("Failed to close response body", "error", err) + } + }() + + if resp.StatusCode != http.StatusOK { + return fmt.Errorf("unexpected status code: %d", resp.StatusCode) + } + + s.logger.Info("Connected to RIS Live stream") + s.metrics.SetConnected(true) + + // Start metrics logging goroutine + metricsTicker := time.NewTicker(metricsLogInterval) + defer metricsTicker.Stop() + + go func() { + for { + select { + case <-metricsTicker.C: + s.logMetrics() + case <-ctx.Done(): + return + } + } + }() + + scanner := bufio.NewScanner(resp.Body) + + for scanner.Scan() { + select { + case <-ctx.Done(): + s.logger.Info("Stream stopped by context") + + return ctx.Err() + default: + } + + line := scanner.Bytes() + if len(line) == 0 { + continue + } + + // Update metrics with message size + s.updateMetrics(len(line)) + + // Call raw handler if registered + s.mu.RLock() + rawHandler := s.rawHandler + s.mu.RUnlock() + + if rawHandler != nil { + // Call raw handler synchronously to preserve order + rawHandler(string(line)) + } + + // Get current handlers + s.mu.RLock() + handlers := make([]MessageHandler, len(s.handlers)) + copy(handlers, s.handlers) + s.mu.RUnlock() + + // Spawn goroutine to parse and process the message + go func(rawLine []byte, messageHandlers []MessageHandler) { + + // Parse the outer wrapper first + var wrapper ristypes.RISLiveMessage + if err := json.Unmarshal(rawLine, &wrapper); err != nil { + // Output the raw line and panic on parse failure + fmt.Fprintf(os.Stderr, "Failed to parse JSON: %v\n", err) + fmt.Fprintf(os.Stderr, "Raw line: %s\n", string(rawLine)) + panic(fmt.Sprintf("JSON parse error: %v", err)) + } + + // Check if it's a ris_message wrapper + if wrapper.Type != "ris_message" { + s.logger.Error("Unexpected wrapper type", + "type", wrapper.Type, + "line", string(rawLine), + ) + + return + } + + // Get the actual message + msg := wrapper.Data + + // Parse the timestamp + msg.ParsedTimestamp = time.Unix(int64(msg.Timestamp), 0).UTC() + + // Process based on message type + switch msg.Type { + case "UPDATE": + // Process BGP UPDATE messages + // Will be handled by registered handlers + case "RIS_PEER_STATE": + s.logger.Info("RIS peer state change", + "peer", msg.Peer, + "peer_asn", msg.PeerASN, + ) + case "KEEPALIVE": + // BGP keepalive messages - just log at debug level + s.logger.Debug("BGP keepalive", + "peer", msg.Peer, + "peer_asn", msg.PeerASN, + ) + case "OPEN": + // BGP open messages + s.logger.Info("BGP session opened", + "peer", msg.Peer, + "peer_asn", msg.PeerASN, + ) + case "NOTIFICATION": + // BGP notification messages (errors) + s.logger.Warn("BGP notification", + "peer", msg.Peer, + "peer_asn", msg.PeerASN, + ) + case "STATE": + // Peer state changes + s.logger.Info("Peer state change", + "peer", msg.Peer, + "peer_asn", msg.PeerASN, + ) + default: + fmt.Fprintf( + os.Stderr, + "UNKNOWN MESSAGE TYPE: %s\nRAW MESSAGE: %s\n", + msg.Type, + string(rawLine), + ) + panic(fmt.Sprintf("Unknown RIS message type: %s", msg.Type)) + } + + // Spawn goroutine for each handler callback that wants this message type + for _, handler := range messageHandlers { + if handler.WantsMessage(msg.Type) { + go func(h MessageHandler) { + h.HandleMessage(&msg) + }(handler) + } + } + }(append([]byte(nil), line...), handlers) // Copy the line to avoid data races + } + + if err := scanner.Err(); err != nil { + return fmt.Errorf("scanner error: %w", err) + } + + return nil +} diff --git a/internal/streamer/streamer_test.go b/internal/streamer/streamer_test.go new file mode 100644 index 0000000..103ab56 --- /dev/null +++ b/internal/streamer/streamer_test.go @@ -0,0 +1,34 @@ +package streamer + +import ( + "testing" + + "git.eeqj.de/sneak/routewatch/internal/metrics" + "log/slog" +) + +func TestNewStreamer(t *testing.T) { + logger := slog.Default() + metricsTracker := metrics.New() + s := New(logger, metricsTracker) + + if s == nil { + t.Fatal("New() returned nil") + } + + if s.logger != logger { + t.Error("logger not set correctly") + } + + if s.client == nil { + t.Error("HTTP client not initialized") + } + + if s.handlers == nil { + t.Error("handlers slice not initialized") + } + + if s.metrics != metricsTracker { + t.Error("metrics tracker not set correctly") + } +}