If you have a Linux or macOS machine with a bitcoin node running, and have bitcoin-cli available in the path, you can simply run this one line command and you will get a bitcoin.pdf file containing the original bitcoin whitepaper:
seq 0 947 | (while read -r n; do bitcoin-cli gettxout 54e48e5f5c656b26c3bca14a8c95aa583d07ebe84dde3b7dd4a78f4e4186e713 $n | jq -r '.scriptPubKey.asm' | awk '{ print $2 $3 $4 }'; done) | tr -d '\n' | cut -c 17-368600 | xxd -r -p > bitcoin.pdf
Just in case you need to check something from it and bitcoin.org is down.