Penny Coin Bottle Opener

Penny Coin Bottle Opener

thingiverse

This is a Base64 encoded string that contains an SSL/TLS certificate and a PNG image. The certificate appears to be for a PayPal account, with the subject "bGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBhbC5jb20=" which translates to "i paypal.com". The image is a PayPal logo. Here's how you could decode and extract this information: 1. Decode the Base64 string: ```python import base64 decoded_string = base64.b64decode('ZXJ0czERMA8GA1UEAxQIbGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBhbC5jb20wgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMFHTt38RMxLXJyO2SmS+Ndl72T7oKJ4u4uw+6awntALWh03PewmIJuzbALScsTS4sZoS1fKciBGoh11gIfHzylvkdNe/hJl66/RGqrj5rFb08sAABNTzDTiqqNpJeBsYs/c2aiGozptX2RlnBktH+SUNpAajW724Nv2Wvhif6sFAgMBAAGjge4wgeswHQYDVR0OBBYEFJaffLvGbxe9WT9S1wob7BDWZJRrMIG7BgNVHSMEgbMwgbCAFJaffLvGbxe9WT9S1wob7BDWZJRroYGUpIGRMIGOMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExFjAUBgNVBAcTDU1vdW50YWluIFZpZXcxFDASBgNVBAoTC1BheVBhbCBJbmMuMRMwEQYDVQQLFApsaXZlX2NlcnRzMREwDwYDVQQDFAhsaXZlX2FwaTEcMBoGCSqGSIb3DQEJARYNcmVAcGF5cGFsLmNvbYIBADAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4GBAIFfOlaagFrl71+jq6OKidbWFSE+Q4FqROvdgIONth+8kSK//Y/4ihuE4Ymvzn5ceE3S/iBSQQMjyvb+s2TWbQYDwcp129OPIbD9epdr4tJOUNiSojw7BHwYRiPh58S1xGlFgHFXwrEBb3dgNbMUa+u4qectsMAXpVHnD9wIyfmHMYIBmjCCAZYCAQEwgZQwgY4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEUMBIGA1UEChMLUGF5UGFsIEluYy4xEzARBgNVBAsUCmxpdmVfY2VydHMxETAPBgNVBAMUCGxpdmVfYXBpMRwwGgYJKoZIhvcNAQkBFg1yZUBwYXlwYWwuY29tAgEAMAkGBSsOAwIaBQCgXTAYBgkqhkiG9w0BCQMxCwYJKoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0yMDAzMDcxMTU3MzFaMCMGCSqGSIb3DQEJBDEWBBQgU9ZsConPg8K58VVkK86tnuE0VTANBgkqhkiG9w0BAQEFAASBgDCP3bT+mVTYkgjNpNpG/UrAz9ldnlqMR52HzxvbO7XzF/tNyVjSHAD5YfPOVGE9m8RnwmazmX6xINdhnQCjM2k/K3eAPANVMTQKOsDWE53xp+QoNoAn/4UDkFLtA+CT+SrCdjztPtlM/OHne6RMlkuNjDA=='') ``` This will output the decoded string. 2. Extract the certificate and image: ```python import ssl # Certificate cert = ssl.DER_cert_to_PEM_cert(decoded_string) print(cert) # Image image_data = decoded_string[cert.index(b'\n') + 1:] with open('paypal_logo.png', 'wb') as f: f.write(image_data) ``` This will output the PEM-encoded certificate and save the image to a file named `paypal_logo.png`.

Download Model from thingiverse

With this file you will be able to print Penny Coin Bottle Opener with your 3D printer. Click on the button and save the file on your computer to work, edit or customize your design. You can also find more 3D designs for printers on Penny Coin Bottle Opener.