1 #ifndef PSGS_FAVICON__HPP 2 #define PSGS_FAVICON__HPP 3 4 /* $Id: favicon.hpp 629860 2021-04-22 16:38:08Z ivanov $ 5 * =========================================================================== 6 * 7 * PUBLIC DOMAIN NOTICE 8 * National Center for Biotechnology Information 9 * 10 * This software/database is a "United States Government Work" under the 11 * terms of the United States Copyright Act. It was written as part of 12 * the author's official duties as a United States Government employee and 13 * thus cannot be copyrighted. This software/database is freely available 14 * to the public for use. The National Library of Medicine and the U.S. 15 * Government have not placed any restriction on its use or reproduction. 16 * 17 * Although all reasonable efforts have been taken to ensure the accuracy 18 * and reliability of the software and data, the NLM and the U.S. 19 * Government do not and cannot warrant the performance or results that 20 * may be obtained by using this software or data. The NLM and the U.S. 21 * Government disclaim all warranties, express or implied, including 22 * warranties of performance, merchantability or fitness for any particular 23 * purpose. 24 * 25 * Please cite the author in any work or product based on this material. 26 * 27 * =========================================================================== 28 * 29 * Authors: Sergey Satskiy 30 * 31 * File Description: hardcoded favicon.ico 32 * 33 */ 34 35 const unsigned char favicon[] = { 36 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x10, 0x10, 0x10, 0x00, 0x01, 0x00, 0x04, 0x00, 0x28, 0x01, 37 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x20, 0x00, 38 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 39 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x42, 40 0x24, 0x00, 0xb4, 0xa2, 0x94, 0x00, 0xe4, 0xda, 0xd4, 0x00, 0x8c, 0x72, 0x5c, 0x00, 0xc8, 0xbe, 41 0xb4, 0x00, 0x74, 0x5a, 0x3c, 0x00, 0xf4, 0xf2, 0xf4, 0x00, 0x9c, 0x8a, 0x74, 0x00, 0xdc, 0xce, 42 0xc4, 0x00, 0x84, 0x66, 0x4c, 0x00, 0xec, 0xe6, 0xe4, 0x00, 0xa4, 0x96, 0x84, 0x00, 0x6c, 0x4e, 43 0x2c, 0x00, 0xbc, 0xae, 0x9c, 0x00, 0x94, 0x7e, 0x64, 0x00, 0xfc, 0xfe, 0xfc, 0x00, 0xff, 0xff, 44 0xff, 0xff, 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x03, 0x46, 0xff, 0xff, 0xff, 45 0xff, 0xff, 0x13, 0x90, 0x05, 0x2f, 0xff, 0xff, 0xad, 0x8f, 0xff, 0xf6, 0xd0, 0x1f, 0xff, 0xf1, 46 0x76, 0xff, 0xff, 0xff, 0x6c, 0x4f, 0xff, 0x19, 0xff, 0xff, 0xff, 0xfa, 0xe4, 0xff, 0xff, 0xe0, 47 0x12, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x25, 0x00, 0x03, 0x3b, 0x4a, 0xff, 0xff, 0xff, 0xff, 48 0x47, 0xc0, 0x00, 0x00, 0x94, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x88, 0x1e, 0xc0, 0x4f, 0xff, 0xfa, 49 0xe8, 0xff, 0xff, 0xff, 0x65, 0x7f, 0xff, 0x45, 0x6f, 0xff, 0xff, 0xff, 0x25, 0xaf, 0xff, 0x35, 50 0x6f, 0xff, 0xff, 0xfd, 0x16, 0xff, 0xff, 0x10, 0x03, 0x11, 0x2f, 0x86, 0xff, 0xff, 0xff, 0xf8, 51 0x30, 0x00, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x41, 0x4f, 0xff, 0xff, 0xff, 0x00, 0x00, 52 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 53 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 54 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 55 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 56 }; 57 58 #endif 59 60