Created
February 22, 2021 21:49
-
-
Save FlorianCassayre/56e753ffc50058212328b0cdb3a7b7b3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Data is listed from the outer ring (first line) to the inner ring (last line). | |
'#' corresponds to a red stripe, while '.' is a white one. | |
The triangular patterns starts as valley (wrt the center). | |
#....#...#.......#.##....###.#.......###....###.##.......#.#......#####.....#.## | |
#...#################.....#.#........#.........#..#......###........###.....#..# | |
......#.#.......##..#...#################......##.#......#..#.......###......#.. | |
#.......#...........#.....#..#........#.#...#################################### |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Spoiler
Data should be read clockwise (for a downward observer) and starting from the inner ring.
Symbols are encoded in groups of 10 bits, letters are mapped alphabetically from 1 to 26 (
1 -> A
,2 -> B
, etc.).The outer ring contains a mix between letters and numbers ; numbers map directly to their binary representation.
The symbols
127
both translate to a space and instructs to continue reading to the next ring, at the same position. The symbols1023
shall be ignored (blanks).