STM32Cube BSP FW for STM32F769I-Discovery

Dependents:   mbed-os-example-blinky-5 DISCO-F769NI_TOUCHSCREEN_demo_custom_1 Datarecorder2 DISCO-F769NI_TOUCHSCREEN_demo ... more

Committer:
Jerome Coutant
Date:
Thu Mar 23 10:42:33 2017 +0100
Revision:
2:39d2c2c79afa
Parent:
0:c0f3bbab73d2
Add IRQHandler functions for audio part

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Jerome Coutant 0:c0f3bbab73d2 1 /**
Jerome Coutant 0:c0f3bbab73d2 2 ******************************************************************************
Jerome Coutant 0:c0f3bbab73d2 3 * @file font16.c
Jerome Coutant 0:c0f3bbab73d2 4 * @author MCD Application Team
Jerome Coutant 0:c0f3bbab73d2 5 * @version V1.0.0
Jerome Coutant 0:c0f3bbab73d2 6 * @date 18-February-2014
Jerome Coutant 0:c0f3bbab73d2 7 * @brief This file provides text font16 for STM32xx-EVAL's LCD driver.
Jerome Coutant 0:c0f3bbab73d2 8 ******************************************************************************
Jerome Coutant 0:c0f3bbab73d2 9 * @attention
Jerome Coutant 0:c0f3bbab73d2 10 *
Jerome Coutant 0:c0f3bbab73d2 11 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
Jerome Coutant 0:c0f3bbab73d2 12 *
Jerome Coutant 0:c0f3bbab73d2 13 * Redistribution and use in source and binary forms, with or without modification,
Jerome Coutant 0:c0f3bbab73d2 14 * are permitted provided that the following conditions are met:
Jerome Coutant 0:c0f3bbab73d2 15 * 1. Redistributions of source code must retain the above copyright notice,
Jerome Coutant 0:c0f3bbab73d2 16 * this list of conditions and the following disclaimer.
Jerome Coutant 0:c0f3bbab73d2 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
Jerome Coutant 0:c0f3bbab73d2 18 * this list of conditions and the following disclaimer in the documentation
Jerome Coutant 0:c0f3bbab73d2 19 * and/or other materials provided with the distribution.
Jerome Coutant 0:c0f3bbab73d2 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Jerome Coutant 0:c0f3bbab73d2 21 * may be used to endorse or promote products derived from this software
Jerome Coutant 0:c0f3bbab73d2 22 * without specific prior written permission.
Jerome Coutant 0:c0f3bbab73d2 23 *
Jerome Coutant 0:c0f3bbab73d2 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Jerome Coutant 0:c0f3bbab73d2 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Jerome Coutant 0:c0f3bbab73d2 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Jerome Coutant 0:c0f3bbab73d2 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Jerome Coutant 0:c0f3bbab73d2 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Jerome Coutant 0:c0f3bbab73d2 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Jerome Coutant 0:c0f3bbab73d2 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Jerome Coutant 0:c0f3bbab73d2 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Jerome Coutant 0:c0f3bbab73d2 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Jerome Coutant 0:c0f3bbab73d2 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Jerome Coutant 0:c0f3bbab73d2 34 *
Jerome Coutant 0:c0f3bbab73d2 35 ******************************************************************************
Jerome Coutant 0:c0f3bbab73d2 36 */
Jerome Coutant 0:c0f3bbab73d2 37
Jerome Coutant 0:c0f3bbab73d2 38 /* Includes ------------------------------------------------------------------*/
Jerome Coutant 0:c0f3bbab73d2 39 #include "fonts.h"
Jerome Coutant 0:c0f3bbab73d2 40
Jerome Coutant 0:c0f3bbab73d2 41 /** @addtogroup Utilities
Jerome Coutant 0:c0f3bbab73d2 42 * @{
Jerome Coutant 0:c0f3bbab73d2 43 */
Jerome Coutant 0:c0f3bbab73d2 44
Jerome Coutant 0:c0f3bbab73d2 45 /** @addtogroup STM32_EVAL
Jerome Coutant 0:c0f3bbab73d2 46 * @{
Jerome Coutant 0:c0f3bbab73d2 47 */
Jerome Coutant 0:c0f3bbab73d2 48
Jerome Coutant 0:c0f3bbab73d2 49 /** @addtogroup Common
Jerome Coutant 0:c0f3bbab73d2 50 * @{
Jerome Coutant 0:c0f3bbab73d2 51 */
Jerome Coutant 0:c0f3bbab73d2 52
Jerome Coutant 0:c0f3bbab73d2 53 /** @addtogroup FONTS
Jerome Coutant 0:c0f3bbab73d2 54 * @brief This file provides text font16 for STM32xx-EVAL's LCD driver.
Jerome Coutant 0:c0f3bbab73d2 55 * @{
Jerome Coutant 0:c0f3bbab73d2 56 */
Jerome Coutant 0:c0f3bbab73d2 57
Jerome Coutant 0:c0f3bbab73d2 58 /** @defgroup FONTS_Private_Types
Jerome Coutant 0:c0f3bbab73d2 59 * @{
Jerome Coutant 0:c0f3bbab73d2 60 */
Jerome Coutant 0:c0f3bbab73d2 61 /**
Jerome Coutant 0:c0f3bbab73d2 62 * @}
Jerome Coutant 0:c0f3bbab73d2 63 */
Jerome Coutant 0:c0f3bbab73d2 64
Jerome Coutant 0:c0f3bbab73d2 65
Jerome Coutant 0:c0f3bbab73d2 66 /** @defgroup FONTS_Private_Defines
Jerome Coutant 0:c0f3bbab73d2 67 * @{
Jerome Coutant 0:c0f3bbab73d2 68 */
Jerome Coutant 0:c0f3bbab73d2 69 /**
Jerome Coutant 0:c0f3bbab73d2 70 * @}
Jerome Coutant 0:c0f3bbab73d2 71 */
Jerome Coutant 0:c0f3bbab73d2 72
Jerome Coutant 0:c0f3bbab73d2 73
Jerome Coutant 0:c0f3bbab73d2 74 /** @defgroup FONTS_Private_Macros
Jerome Coutant 0:c0f3bbab73d2 75 * @{
Jerome Coutant 0:c0f3bbab73d2 76 */
Jerome Coutant 0:c0f3bbab73d2 77 /**
Jerome Coutant 0:c0f3bbab73d2 78 * @}
Jerome Coutant 0:c0f3bbab73d2 79 */
Jerome Coutant 0:c0f3bbab73d2 80
Jerome Coutant 0:c0f3bbab73d2 81
Jerome Coutant 0:c0f3bbab73d2 82 /** @defgroup FONTS_Private_Variables
Jerome Coutant 0:c0f3bbab73d2 83 * @{
Jerome Coutant 0:c0f3bbab73d2 84 */
Jerome Coutant 0:c0f3bbab73d2 85 //
Jerome Coutant 0:c0f3bbab73d2 86 // Font data for Courier New 12pt
Jerome Coutant 0:c0f3bbab73d2 87 //
Jerome Coutant 0:c0f3bbab73d2 88
Jerome Coutant 0:c0f3bbab73d2 89 const uint8_t Font16_Table[] =
Jerome Coutant 0:c0f3bbab73d2 90 {
Jerome Coutant 0:c0f3bbab73d2 91 // @0 ' ' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 92 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 93 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 94 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 95 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 96 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 97 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 98 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 99 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 100 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 101 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 102 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 103 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 104 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 105 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 106 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 107 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 108
Jerome Coutant 0:c0f3bbab73d2 109 // @32 '!' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 110 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 111 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 112 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 113 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 114 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 115 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 116 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 117 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 118 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 119 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 120 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 121 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 122 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 123 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 124 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 125 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 126
Jerome Coutant 0:c0f3bbab73d2 127 // @64 '"' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 128 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 129 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 130 0x1D, 0xC0, // ### ###
Jerome Coutant 0:c0f3bbab73d2 131 0x1D, 0xC0, // ### ###
Jerome Coutant 0:c0f3bbab73d2 132 0x08, 0x80, // # #
Jerome Coutant 0:c0f3bbab73d2 133 0x08, 0x80, // # #
Jerome Coutant 0:c0f3bbab73d2 134 0x08, 0x80, // # #
Jerome Coutant 0:c0f3bbab73d2 135 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 136 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 137 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 138 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 139 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 140 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 141 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 142 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 143 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 144
Jerome Coutant 0:c0f3bbab73d2 145 // @96 '#' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 146 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 147 0x0D, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 148 0x0D, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 149 0x0D, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 150 0x0D, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 151 0x3F, 0xC0, // ########
Jerome Coutant 0:c0f3bbab73d2 152 0x1B, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 153 0x3F, 0xC0, // ########
Jerome Coutant 0:c0f3bbab73d2 154 0x1B, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 155 0x1B, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 156 0x1B, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 157 0x1B, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 158 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 159 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 160 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 161 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 162
Jerome Coutant 0:c0f3bbab73d2 163 // @128 '$' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 164 0x04, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 165 0x1F, 0x80, // ######
Jerome Coutant 0:c0f3bbab73d2 166 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 167 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 168 0x38, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 169 0x1E, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 170 0x0F, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 171 0x03, 0x80, // ###
Jerome Coutant 0:c0f3bbab73d2 172 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 173 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 174 0x3F, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 175 0x04, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 176 0x04, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 177 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 178 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 179 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 180
Jerome Coutant 0:c0f3bbab73d2 181 // @160 '%' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 182 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 183 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 184 0x24, 0x00, // # #
Jerome Coutant 0:c0f3bbab73d2 185 0x24, 0x00, // # #
Jerome Coutant 0:c0f3bbab73d2 186 0x18, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 187 0x07, 0x80, // ####
Jerome Coutant 0:c0f3bbab73d2 188 0x1E, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 189 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 190 0x02, 0x40, // # #
Jerome Coutant 0:c0f3bbab73d2 191 0x02, 0x40, // # #
Jerome Coutant 0:c0f3bbab73d2 192 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 193 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 194 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 195 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 196 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 197 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 198
Jerome Coutant 0:c0f3bbab73d2 199 // @192 '&' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 200 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 201 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 202 0x0F, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 203 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 204 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 205 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 206 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 207 0x1D, 0x80, // ### ##
Jerome Coutant 0:c0f3bbab73d2 208 0x37, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 209 0x33, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 210 0x1D, 0x80, // ### ##
Jerome Coutant 0:c0f3bbab73d2 211 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 212 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 213 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 214 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 215 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 216
Jerome Coutant 0:c0f3bbab73d2 217 // @224 ''' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 218 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 219 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 220 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 221 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 222 0x02, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 223 0x02, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 224 0x02, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 225 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 226 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 227 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 228 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 229 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 230 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 231 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 232 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 233 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 234
Jerome Coutant 0:c0f3bbab73d2 235 // @256 '(' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 236 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 237 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 238 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 239 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 240 0x0E, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 241 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 242 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 243 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 244 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 245 0x0E, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 246 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 247 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 248 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 249 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 250 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 251 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 252
Jerome Coutant 0:c0f3bbab73d2 253 // @288 ')' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 254 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 255 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 256 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 257 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 258 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 259 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 260 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 261 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 262 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 263 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 264 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 265 0x1C, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 266 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 267 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 268 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 269 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 270
Jerome Coutant 0:c0f3bbab73d2 271 // @320 '*' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 272 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 273 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 274 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 275 0x3F, 0xC0, // ########
Jerome Coutant 0:c0f3bbab73d2 276 0x3F, 0xC0, // ########
Jerome Coutant 0:c0f3bbab73d2 277 0x0F, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 278 0x1F, 0x80, // ######
Jerome Coutant 0:c0f3bbab73d2 279 0x19, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 280 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 281 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 282 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 283 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 284 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 285 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 286 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 287 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 288
Jerome Coutant 0:c0f3bbab73d2 289 // @352 '+' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 290 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 291 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 292 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 293 0x04, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 294 0x04, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 295 0x04, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 296 0x3F, 0x80, // #######
Jerome Coutant 0:c0f3bbab73d2 297 0x04, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 298 0x04, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 299 0x04, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 300 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 301 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 302 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 303 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 304 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 305 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 306
Jerome Coutant 0:c0f3bbab73d2 307 // @384 ',' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 308 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 309 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 310 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 311 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 312 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 313 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 314 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 315 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 316 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 317 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 318 0x04, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 319 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 320 0x08, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 321 0x08, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 322 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 323 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 324
Jerome Coutant 0:c0f3bbab73d2 325 // @416 '-' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 326 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 327 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 328 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 329 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 330 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 331 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 332 0x3F, 0x80, // #######
Jerome Coutant 0:c0f3bbab73d2 333 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 334 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 335 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 336 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 337 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 338 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 339 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 340 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 341 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 342
Jerome Coutant 0:c0f3bbab73d2 343 // @448 '.' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 344 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 345 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 346 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 347 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 348 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 349 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 350 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 351 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 352 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 353 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 354 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 355 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 356 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 357 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 358 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 359 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 360
Jerome Coutant 0:c0f3bbab73d2 361 // @480 '/' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 362 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 363 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 364 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 365 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 366 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 367 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 368 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 369 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 370 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 371 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 372 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 373 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 374 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 375 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 376 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 377 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 378
Jerome Coutant 0:c0f3bbab73d2 379 // @512 '0' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 380 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 381 0x0E, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 382 0x1B, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 383 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 384 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 385 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 386 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 387 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 388 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 389 0x1B, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 390 0x0E, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 391 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 392 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 393 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 394 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 395 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 396
Jerome Coutant 0:c0f3bbab73d2 397 // @544 '1' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 398 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 399 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 400 0x3E, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 401 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 402 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 403 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 404 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 405 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 406 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 407 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 408 0x3F, 0xC0, // ########
Jerome Coutant 0:c0f3bbab73d2 409 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 410 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 411 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 412 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 413 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 414
Jerome Coutant 0:c0f3bbab73d2 415 // @576 '2' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 416 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 417 0x0F, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 418 0x19, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 419 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 420 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 421 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 422 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 423 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 424 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 425 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 426 0x3F, 0x80, // #######
Jerome Coutant 0:c0f3bbab73d2 427 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 428 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 429 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 430 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 431 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 432
Jerome Coutant 0:c0f3bbab73d2 433 // @608 '3' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 434 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 435 0x3F, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 436 0x61, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 437 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 438 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 439 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 440 0x03, 0x80, // ###
Jerome Coutant 0:c0f3bbab73d2 441 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 442 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 443 0x61, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 444 0x3F, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 445 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 446 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 447 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 448 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 449 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 450
Jerome Coutant 0:c0f3bbab73d2 451 // @640 '4' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 452 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 453 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 454 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 455 0x0F, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 456 0x0B, 0x00, // # ##
Jerome Coutant 0:c0f3bbab73d2 457 0x1B, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 458 0x13, 0x00, // # ##
Jerome Coutant 0:c0f3bbab73d2 459 0x33, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 460 0x3F, 0x80, // #######
Jerome Coutant 0:c0f3bbab73d2 461 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 462 0x0F, 0x80, // #####
Jerome Coutant 0:c0f3bbab73d2 463 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 464 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 465 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 466 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 467 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 468
Jerome Coutant 0:c0f3bbab73d2 469 // @672 '5' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 470 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 471 0x1F, 0x80, // ######
Jerome Coutant 0:c0f3bbab73d2 472 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 473 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 474 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 475 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 476 0x11, 0x80, // # ##
Jerome Coutant 0:c0f3bbab73d2 477 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 478 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 479 0x21, 0x80, // # ##
Jerome Coutant 0:c0f3bbab73d2 480 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 481 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 482 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 483 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 484 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 485 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 486
Jerome Coutant 0:c0f3bbab73d2 487 // @704 '6' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 488 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 489 0x07, 0x80, // ####
Jerome Coutant 0:c0f3bbab73d2 490 0x1C, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 491 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 492 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 493 0x37, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 494 0x39, 0x80, // ### ##
Jerome Coutant 0:c0f3bbab73d2 495 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 496 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 497 0x19, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 498 0x0F, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 499 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 500 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 501 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 502 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 503 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 504
Jerome Coutant 0:c0f3bbab73d2 505 // @736 '7' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 506 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 507 0x7F, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 508 0x43, 0x00, // # ##
Jerome Coutant 0:c0f3bbab73d2 509 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 510 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 511 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 512 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 513 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 514 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 515 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 516 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 517 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 518 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 519 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 520 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 521 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 522
Jerome Coutant 0:c0f3bbab73d2 523 // @768 '8' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 524 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 525 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 526 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 527 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 528 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 529 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 530 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 531 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 532 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 533 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 534 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 535 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 536 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 537 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 538 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 539 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 540
Jerome Coutant 0:c0f3bbab73d2 541 // @800 '9' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 542 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 543 0x1E, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 544 0x33, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 545 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 546 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 547 0x33, 0x80, // ## ###
Jerome Coutant 0:c0f3bbab73d2 548 0x1D, 0x80, // ### ##
Jerome Coutant 0:c0f3bbab73d2 549 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 550 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 551 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 552 0x3C, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 553 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 554 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 555 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 556 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 557 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 558
Jerome Coutant 0:c0f3bbab73d2 559 // @832 ':' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 560 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 561 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 562 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 563 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 564 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 565 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 566 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 567 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 568 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 569 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 570 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 571 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 572 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 573 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 574 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 575 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 576
Jerome Coutant 0:c0f3bbab73d2 577 // @864 ';' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 578 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 579 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 580 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 581 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 582 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 583 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 584 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 585 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 586 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 587 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 588 0x04, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 589 0x08, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 590 0x08, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 591 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 592 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 593 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 594
Jerome Coutant 0:c0f3bbab73d2 595 // @896 '<' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 596 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 597 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 598 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 599 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 600 0x04, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 601 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 602 0x60, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 603 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 604 0x04, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 605 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 606 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 607 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 608 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 609 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 610 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 611 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 612
Jerome Coutant 0:c0f3bbab73d2 613 // @928 '=' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 614 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 615 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 616 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 617 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 618 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 619 0x7F, 0xC0, // #########
Jerome Coutant 0:c0f3bbab73d2 620 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 621 0x7F, 0xC0, // #########
Jerome Coutant 0:c0f3bbab73d2 622 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 623 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 624 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 625 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 626 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 627 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 628 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 629 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 630
Jerome Coutant 0:c0f3bbab73d2 631 // @960 '>' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 632 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 633 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 634 0x60, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 635 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 636 0x04, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 637 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 638 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 639 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 640 0x04, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 641 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 642 0x60, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 643 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 644 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 645 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 646 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 647 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 648
Jerome Coutant 0:c0f3bbab73d2 649 // @992 '?' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 650 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 651 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 652 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 653 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 654 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 655 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 656 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 657 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 658 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 659 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 660 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 661 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 662 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 663 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 664 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 665 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 666
Jerome Coutant 0:c0f3bbab73d2 667 // @1024 '@' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 668 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 669 0x0E, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 670 0x11, 0x00, // # #
Jerome Coutant 0:c0f3bbab73d2 671 0x21, 0x00, // # #
Jerome Coutant 0:c0f3bbab73d2 672 0x21, 0x00, // # #
Jerome Coutant 0:c0f3bbab73d2 673 0x27, 0x00, // # ###
Jerome Coutant 0:c0f3bbab73d2 674 0x29, 0x00, // # # #
Jerome Coutant 0:c0f3bbab73d2 675 0x29, 0x00, // # # #
Jerome Coutant 0:c0f3bbab73d2 676 0x27, 0x00, // # ###
Jerome Coutant 0:c0f3bbab73d2 677 0x20, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 678 0x11, 0x00, // # #
Jerome Coutant 0:c0f3bbab73d2 679 0x0E, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 680 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 681 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 682 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 683 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 684
Jerome Coutant 0:c0f3bbab73d2 685 // @1056 'A' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 686 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 687 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 688 0x3F, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 689 0x0F, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 690 0x09, 0x00, // # #
Jerome Coutant 0:c0f3bbab73d2 691 0x19, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 692 0x19, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 693 0x1F, 0x80, // ######
Jerome Coutant 0:c0f3bbab73d2 694 0x30, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 695 0x30, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 696 0x79, 0xE0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 697 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 698 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 699 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 700 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 701 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 702
Jerome Coutant 0:c0f3bbab73d2 703 // @1088 'B' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 704 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 705 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 706 0x7F, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 707 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 708 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 709 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 710 0x3F, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 711 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 712 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 713 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 714 0x7F, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 715 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 716 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 717 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 718 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 719 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 720
Jerome Coutant 0:c0f3bbab73d2 721 // @1120 'C' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 722 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 723 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 724 0x1F, 0x40, // ##### #
Jerome Coutant 0:c0f3bbab73d2 725 0x30, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 726 0x60, 0x40, // ## #
Jerome Coutant 0:c0f3bbab73d2 727 0x60, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 728 0x60, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 729 0x60, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 730 0x60, 0x40, // ## #
Jerome Coutant 0:c0f3bbab73d2 731 0x30, 0x80, // ## #
Jerome Coutant 0:c0f3bbab73d2 732 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 733 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 734 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 735 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 736 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 737 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 738
Jerome Coutant 0:c0f3bbab73d2 739 // @1152 'D' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 740 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 741 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 742 0x7F, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 743 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 744 0x30, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 745 0x30, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 746 0x30, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 747 0x30, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 748 0x30, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 749 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 750 0x7F, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 751 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 752 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 753 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 754 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 755 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 756
Jerome Coutant 0:c0f3bbab73d2 757 // @1184 'E' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 758 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 759 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 760 0x7F, 0x80, // ########
Jerome Coutant 0:c0f3bbab73d2 761 0x30, 0x80, // ## #
Jerome Coutant 0:c0f3bbab73d2 762 0x30, 0x80, // ## #
Jerome Coutant 0:c0f3bbab73d2 763 0x32, 0x00, // ## #
Jerome Coutant 0:c0f3bbab73d2 764 0x3E, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 765 0x32, 0x00, // ## #
Jerome Coutant 0:c0f3bbab73d2 766 0x30, 0x80, // ## #
Jerome Coutant 0:c0f3bbab73d2 767 0x30, 0x80, // ## #
Jerome Coutant 0:c0f3bbab73d2 768 0x7F, 0x80, // ########
Jerome Coutant 0:c0f3bbab73d2 769 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 770 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 771 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 772 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 773 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 774
Jerome Coutant 0:c0f3bbab73d2 775 // @1216 'F' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 776 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 777 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 778 0x7F, 0xC0, // #########
Jerome Coutant 0:c0f3bbab73d2 779 0x30, 0x40, // ## #
Jerome Coutant 0:c0f3bbab73d2 780 0x30, 0x40, // ## #
Jerome Coutant 0:c0f3bbab73d2 781 0x32, 0x00, // ## #
Jerome Coutant 0:c0f3bbab73d2 782 0x3E, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 783 0x32, 0x00, // ## #
Jerome Coutant 0:c0f3bbab73d2 784 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 785 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 786 0x7C, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 787 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 788 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 789 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 790 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 791 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 792
Jerome Coutant 0:c0f3bbab73d2 793 // @1248 'G' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 794 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 795 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 796 0x1E, 0x80, // #### #
Jerome Coutant 0:c0f3bbab73d2 797 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 798 0x60, 0x80, // ## #
Jerome Coutant 0:c0f3bbab73d2 799 0x60, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 800 0x60, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 801 0x67, 0xC0, // ## #####
Jerome Coutant 0:c0f3bbab73d2 802 0x61, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 803 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 804 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 805 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 806 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 807 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 808 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 809 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 810
Jerome Coutant 0:c0f3bbab73d2 811 // @1280 'H' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 812 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 813 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 814 0x7B, 0xC0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 815 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 816 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 817 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 818 0x3F, 0x80, // #######
Jerome Coutant 0:c0f3bbab73d2 819 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 820 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 821 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 822 0x7B, 0xC0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 823 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 824 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 825 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 826 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 827 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 828
Jerome Coutant 0:c0f3bbab73d2 829 // @1312 'I' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 830 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 831 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 832 0x3F, 0xC0, // ########
Jerome Coutant 0:c0f3bbab73d2 833 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 834 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 835 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 836 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 837 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 838 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 839 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 840 0x3F, 0xC0, // ########
Jerome Coutant 0:c0f3bbab73d2 841 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 842 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 843 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 844 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 845 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 846
Jerome Coutant 0:c0f3bbab73d2 847 // @1344 'J' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 848 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 849 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 850 0x1F, 0xC0, // #######
Jerome Coutant 0:c0f3bbab73d2 851 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 852 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 853 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 854 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 855 0x63, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 856 0x63, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 857 0x63, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 858 0x3E, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 859 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 860 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 861 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 862 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 863 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 864
Jerome Coutant 0:c0f3bbab73d2 865 // @1376 'K' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 866 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 867 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 868 0x7B, 0xC0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 869 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 870 0x33, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 871 0x36, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 872 0x3C, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 873 0x3E, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 874 0x33, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 875 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 876 0x79, 0xC0, // #### ###
Jerome Coutant 0:c0f3bbab73d2 877 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 878 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 879 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 880 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 881 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 882
Jerome Coutant 0:c0f3bbab73d2 883 // @1408 'L' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 884 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 885 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 886 0x7E, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 887 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 888 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 889 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 890 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 891 0x18, 0x40, // ## #
Jerome Coutant 0:c0f3bbab73d2 892 0x18, 0x40, // ## #
Jerome Coutant 0:c0f3bbab73d2 893 0x18, 0x40, // ## #
Jerome Coutant 0:c0f3bbab73d2 894 0x7F, 0xC0, // #########
Jerome Coutant 0:c0f3bbab73d2 895 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 896 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 897 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 898 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 899 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 900
Jerome Coutant 0:c0f3bbab73d2 901 // @1440 'M' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 902 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 903 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 904 0xE0, 0xE0, // ### ###
Jerome Coutant 0:c0f3bbab73d2 905 0x60, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 906 0x71, 0xC0, // ### ###
Jerome Coutant 0:c0f3bbab73d2 907 0x7B, 0xC0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 908 0x6A, 0xC0, // ## # # ##
Jerome Coutant 0:c0f3bbab73d2 909 0x6E, 0xC0, // ## ### ##
Jerome Coutant 0:c0f3bbab73d2 910 0x64, 0xC0, // ## # ##
Jerome Coutant 0:c0f3bbab73d2 911 0x60, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 912 0xFB, 0xE0, // ##### #####
Jerome Coutant 0:c0f3bbab73d2 913 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 914 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 915 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 916 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 917 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 918
Jerome Coutant 0:c0f3bbab73d2 919 // @1472 'N' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 920 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 921 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 922 0x73, 0xC0, // ### ####
Jerome Coutant 0:c0f3bbab73d2 923 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 924 0x39, 0x80, // ### ##
Jerome Coutant 0:c0f3bbab73d2 925 0x3D, 0x80, // #### ##
Jerome Coutant 0:c0f3bbab73d2 926 0x35, 0x80, // ## # ##
Jerome Coutant 0:c0f3bbab73d2 927 0x37, 0x80, // ## ####
Jerome Coutant 0:c0f3bbab73d2 928 0x33, 0x80, // ## ###
Jerome Coutant 0:c0f3bbab73d2 929 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 930 0x79, 0x80, // #### ##
Jerome Coutant 0:c0f3bbab73d2 931 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 932 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 933 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 934 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 935 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 936
Jerome Coutant 0:c0f3bbab73d2 937 // @1504 'O' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 938 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 939 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 940 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 941 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 942 0x60, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 943 0x60, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 944 0x60, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 945 0x60, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 946 0x60, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 947 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 948 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 949 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 950 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 951 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 952 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 953 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 954
Jerome Coutant 0:c0f3bbab73d2 955 // @1536 'P' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 956 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 957 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 958 0x7F, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 959 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 960 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 961 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 962 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 963 0x3F, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 964 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 965 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 966 0x7E, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 967 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 968 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 969 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 970 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 971 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 972
Jerome Coutant 0:c0f3bbab73d2 973 // @1568 'Q' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 974 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 975 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 976 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 977 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 978 0x60, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 979 0x60, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 980 0x60, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 981 0x60, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 982 0x60, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 983 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 984 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 985 0x0C, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 986 0x1F, 0x80, // ######
Jerome Coutant 0:c0f3bbab73d2 987 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 988 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 989 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 990
Jerome Coutant 0:c0f3bbab73d2 991 // @1600 'R' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 992 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 993 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 994 0x7F, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 995 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 996 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 997 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 998 0x3E, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 999 0x33, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1000 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1001 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1002 0x7C, 0xE0, // ##### ###
Jerome Coutant 0:c0f3bbab73d2 1003 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1004 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1005 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1006 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1007 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1008
Jerome Coutant 0:c0f3bbab73d2 1009 // @1632 'S' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1010 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1011 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1012 0x1F, 0x80, // ######
Jerome Coutant 0:c0f3bbab73d2 1013 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1014 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1015 0x38, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1016 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1017 0x03, 0x80, // ###
Jerome Coutant 0:c0f3bbab73d2 1018 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1019 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1020 0x3F, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 1021 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1022 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1023 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1024 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1025 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1026
Jerome Coutant 0:c0f3bbab73d2 1027 // @1664 'T' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1028 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1029 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1030 0x7F, 0x80, // ########
Jerome Coutant 0:c0f3bbab73d2 1031 0x4C, 0x80, // # ## #
Jerome Coutant 0:c0f3bbab73d2 1032 0x4C, 0x80, // # ## #
Jerome Coutant 0:c0f3bbab73d2 1033 0x4C, 0x80, // # ## #
Jerome Coutant 0:c0f3bbab73d2 1034 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1035 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1036 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1037 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1038 0x3F, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 1039 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1040 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1041 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1042 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1043 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1044
Jerome Coutant 0:c0f3bbab73d2 1045 // @1696 'U' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1046 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1047 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1048 0x7B, 0xC0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1049 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1050 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1051 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1052 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1053 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1054 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1055 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1056 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1057 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1058 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1059 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1060 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1061 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1062
Jerome Coutant 0:c0f3bbab73d2 1063 // @1728 'V' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1064 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1065 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1066 0x7B, 0xC0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1067 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1068 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1069 0x1B, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1070 0x1B, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1071 0x1B, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1072 0x0A, 0x00, // # #
Jerome Coutant 0:c0f3bbab73d2 1073 0x0E, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1074 0x0E, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1075 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1076 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1077 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1078 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1079 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1080
Jerome Coutant 0:c0f3bbab73d2 1081 // @1760 'W' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1082 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1083 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1084 0xFB, 0xE0, // ##### #####
Jerome Coutant 0:c0f3bbab73d2 1085 0x60, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1086 0x64, 0xC0, // ## # ##
Jerome Coutant 0:c0f3bbab73d2 1087 0x6E, 0xC0, // ## ### ##
Jerome Coutant 0:c0f3bbab73d2 1088 0x6E, 0xC0, // ## ### ##
Jerome Coutant 0:c0f3bbab73d2 1089 0x2A, 0x80, // # # # #
Jerome Coutant 0:c0f3bbab73d2 1090 0x3B, 0x80, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1091 0x3B, 0x80, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1092 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1093 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1094 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1095 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1096 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1097 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1098
Jerome Coutant 0:c0f3bbab73d2 1099 // @1792 'X' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1100 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1101 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1102 0x7B, 0xC0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1103 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1104 0x1B, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1105 0x0E, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1106 0x0E, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1107 0x0E, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1108 0x1B, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1109 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1110 0x7B, 0xC0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1111 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1112 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1113 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1114 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1115 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1116
Jerome Coutant 0:c0f3bbab73d2 1117 // @1824 'Y' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1118 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1119 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1120 0x79, 0xE0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1121 0x30, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1122 0x19, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1123 0x0F, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1124 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1125 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1126 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1127 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1128 0x1F, 0x80, // ######
Jerome Coutant 0:c0f3bbab73d2 1129 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1130 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1131 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1132 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1133 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1134
Jerome Coutant 0:c0f3bbab73d2 1135 // @1856 'Z' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1136 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1137 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1138 0x3F, 0x80, // #######
Jerome Coutant 0:c0f3bbab73d2 1139 0x21, 0x80, // # ##
Jerome Coutant 0:c0f3bbab73d2 1140 0x23, 0x00, // # ##
Jerome Coutant 0:c0f3bbab73d2 1141 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1142 0x04, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 1143 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1144 0x18, 0x80, // ## #
Jerome Coutant 0:c0f3bbab73d2 1145 0x30, 0x80, // ## #
Jerome Coutant 0:c0f3bbab73d2 1146 0x3F, 0x80, // #######
Jerome Coutant 0:c0f3bbab73d2 1147 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1148 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1149 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1150 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1151 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1152
Jerome Coutant 0:c0f3bbab73d2 1153 // @1888 '[' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1154 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1155 0x07, 0x80, // ####
Jerome Coutant 0:c0f3bbab73d2 1156 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1157 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1158 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1159 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1160 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1161 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1162 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1163 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1164 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1165 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1166 0x07, 0x80, // ####
Jerome Coutant 0:c0f3bbab73d2 1167 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1168 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1169 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1170
Jerome Coutant 0:c0f3bbab73d2 1171 // @1920 '\' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1172 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1173 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1174 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1175 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1176 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1177 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1178 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1179 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1180 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1181 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 1182 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 1183 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 1184 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 1185 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1186 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1187 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1188
Jerome Coutant 0:c0f3bbab73d2 1189 // @1952 ']' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1190 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1191 0x1E, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1192 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1193 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1194 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1195 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1196 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1197 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1198 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1199 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1200 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1201 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1202 0x1E, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1203 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1204 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1205 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1206
Jerome Coutant 0:c0f3bbab73d2 1207 // @1984 '^' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1208 0x04, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 1209 0x0A, 0x00, // # #
Jerome Coutant 0:c0f3bbab73d2 1210 0x0A, 0x00, // # #
Jerome Coutant 0:c0f3bbab73d2 1211 0x11, 0x00, // # #
Jerome Coutant 0:c0f3bbab73d2 1212 0x20, 0x80, // # #
Jerome Coutant 0:c0f3bbab73d2 1213 0x20, 0x80, // # #
Jerome Coutant 0:c0f3bbab73d2 1214 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1215 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1216 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1217 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1218 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1219 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1220 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1221 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1222 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1223 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1224
Jerome Coutant 0:c0f3bbab73d2 1225 // @2016 '_' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1226 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1227 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1228 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1229 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1230 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1231 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1232 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1233 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1234 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1235 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1236 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1237 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1238 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1239 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1240 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1241 0xFF, 0xE0, // ###########
Jerome Coutant 0:c0f3bbab73d2 1242
Jerome Coutant 0:c0f3bbab73d2 1243 // @2048 '`' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1244 0x08, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 1245 0x04, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 1246 0x02, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 1247 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1248 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1249 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1250 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1251 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1252 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1253 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1254 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1255 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1256 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1257 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1258 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1259 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1260
Jerome Coutant 0:c0f3bbab73d2 1261 // @2080 'a' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1262 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1263 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1264 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1265 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1266 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1267 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 1268 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 1269 0x1F, 0x80, // ######
Jerome Coutant 0:c0f3bbab73d2 1270 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1271 0x33, 0x80, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1272 0x1D, 0xC0, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1273 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1274 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1275 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1276 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1277 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1278
Jerome Coutant 0:c0f3bbab73d2 1279 // @2112 'b' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1280 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1281 0x70, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1282 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1283 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1284 0x37, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1285 0x39, 0x80, // ### ##
Jerome Coutant 0:c0f3bbab73d2 1286 0x30, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1287 0x30, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1288 0x30, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1289 0x39, 0x80, // ### ##
Jerome Coutant 0:c0f3bbab73d2 1290 0x77, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1291 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1292 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1293 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1294 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1295 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1296
Jerome Coutant 0:c0f3bbab73d2 1297 // @2144 'c' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1298 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1299 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1300 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1301 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1302 0x1E, 0x80, // #### #
Jerome Coutant 0:c0f3bbab73d2 1303 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1304 0x60, 0x80, // ## #
Jerome Coutant 0:c0f3bbab73d2 1305 0x60, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1306 0x60, 0x80, // ## #
Jerome Coutant 0:c0f3bbab73d2 1307 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1308 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1309 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1310 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1311 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1312 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1313 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1314
Jerome Coutant 0:c0f3bbab73d2 1315 // @2176 'd' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1316 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1317 0x03, 0x80, // ###
Jerome Coutant 0:c0f3bbab73d2 1318 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 1319 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 1320 0x1D, 0x80, // ### ##
Jerome Coutant 0:c0f3bbab73d2 1321 0x33, 0x80, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1322 0x61, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1323 0x61, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1324 0x61, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1325 0x33, 0x80, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1326 0x1D, 0xC0, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1327 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1328 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1329 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1330 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1331 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1332
Jerome Coutant 0:c0f3bbab73d2 1333 // @2208 'e' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1334 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1335 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1336 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1337 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1338 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1339 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1340 0x60, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1341 0x7F, 0xC0, // #########
Jerome Coutant 0:c0f3bbab73d2 1342 0x60, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1343 0x30, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1344 0x1F, 0x80, // ######
Jerome Coutant 0:c0f3bbab73d2 1345 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1346 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1347 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1348 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1349 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1350
Jerome Coutant 0:c0f3bbab73d2 1351 // @2240 'f' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1352 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1353 0x07, 0xE0, // ######
Jerome Coutant 0:c0f3bbab73d2 1354 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1355 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1356 0x3F, 0x80, // #######
Jerome Coutant 0:c0f3bbab73d2 1357 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1358 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1359 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1360 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1361 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1362 0x3F, 0x80, // #######
Jerome Coutant 0:c0f3bbab73d2 1363 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1364 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1365 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1366 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1367 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1368
Jerome Coutant 0:c0f3bbab73d2 1369 // @2272 'g' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1370 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1371 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1372 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1373 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1374 0x1D, 0xC0, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1375 0x33, 0x80, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1376 0x61, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1377 0x61, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1378 0x61, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1379 0x33, 0x80, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1380 0x1D, 0x80, // ### ##
Jerome Coutant 0:c0f3bbab73d2 1381 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 1382 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 1383 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1384 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1385 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1386
Jerome Coutant 0:c0f3bbab73d2 1387 // @2304 'h' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1388 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1389 0x70, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1390 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1391 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1392 0x37, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1393 0x39, 0x80, // ### ##
Jerome Coutant 0:c0f3bbab73d2 1394 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1395 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1396 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1397 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1398 0x7B, 0xC0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1399 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1400 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1401 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1402 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1403 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1404
Jerome Coutant 0:c0f3bbab73d2 1405 // @2336 'i' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1406 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1407 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1408 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1409 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1410 0x1E, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1411 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1412 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1413 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1414 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1415 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1416 0x3F, 0xC0, // ########
Jerome Coutant 0:c0f3bbab73d2 1417 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1418 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1419 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1420 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1421 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1422
Jerome Coutant 0:c0f3bbab73d2 1423 // @2368 'j' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1424 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1425 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1426 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1427 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1428 0x3F, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 1429 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1430 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1431 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1432 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1433 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1434 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1435 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1436 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1437 0x3E, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1438 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1439 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1440
Jerome Coutant 0:c0f3bbab73d2 1441 // @2400 'k' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1442 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1443 0x70, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1444 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1445 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1446 0x37, 0x80, // ## ####
Jerome Coutant 0:c0f3bbab73d2 1447 0x36, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1448 0x3C, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1449 0x3C, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1450 0x36, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1451 0x33, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1452 0x77, 0xC0, // ### #####
Jerome Coutant 0:c0f3bbab73d2 1453 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1454 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1455 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1456 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1457 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1458
Jerome Coutant 0:c0f3bbab73d2 1459 // @2432 'l' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1460 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1461 0x1E, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1462 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1463 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1464 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1465 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1466 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1467 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1468 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1469 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1470 0x3F, 0xC0, // ########
Jerome Coutant 0:c0f3bbab73d2 1471 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1472 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1473 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1474 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1475 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1476
Jerome Coutant 0:c0f3bbab73d2 1477 // @2464 'm' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1478 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1479 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1480 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1481 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1482 0x7F, 0x80, // ########
Jerome Coutant 0:c0f3bbab73d2 1483 0x36, 0xC0, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1484 0x36, 0xC0, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1485 0x36, 0xC0, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1486 0x36, 0xC0, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1487 0x36, 0xC0, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1488 0x76, 0xE0, // ### ## ###
Jerome Coutant 0:c0f3bbab73d2 1489 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1490 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1491 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1492 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1493 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1494
Jerome Coutant 0:c0f3bbab73d2 1495 // @2496 'n' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1496 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1497 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1498 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1499 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1500 0x77, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1501 0x39, 0x80, // ### ##
Jerome Coutant 0:c0f3bbab73d2 1502 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1503 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1504 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1505 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1506 0x7B, 0xC0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1507 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1508 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1509 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1510 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1511 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1512
Jerome Coutant 0:c0f3bbab73d2 1513 // @2528 'o' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1514 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1515 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1516 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1517 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1518 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1519 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1520 0x60, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1521 0x60, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1522 0x60, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1523 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1524 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1525 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1526 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1527 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1528 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1529 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1530
Jerome Coutant 0:c0f3bbab73d2 1531 // @2560 'p' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1532 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1533 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1534 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1535 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1536 0x77, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1537 0x39, 0x80, // ### ##
Jerome Coutant 0:c0f3bbab73d2 1538 0x30, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1539 0x30, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1540 0x30, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1541 0x39, 0x80, // ### ##
Jerome Coutant 0:c0f3bbab73d2 1542 0x37, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1543 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1544 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1545 0x7C, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1546 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1547 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1548
Jerome Coutant 0:c0f3bbab73d2 1549 // @2592 'q' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1550 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1551 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1552 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1553 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1554 0x1D, 0xC0, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1555 0x33, 0x80, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1556 0x61, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1557 0x61, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1558 0x61, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1559 0x33, 0x80, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1560 0x1D, 0x80, // ### ##
Jerome Coutant 0:c0f3bbab73d2 1561 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 1562 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 1563 0x07, 0xC0, // #####
Jerome Coutant 0:c0f3bbab73d2 1564 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1565 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1566
Jerome Coutant 0:c0f3bbab73d2 1567 // @2624 'r' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1568 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1569 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1570 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1571 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1572 0x7B, 0x80, // #### ###
Jerome Coutant 0:c0f3bbab73d2 1573 0x1C, 0xC0, // ### ##
Jerome Coutant 0:c0f3bbab73d2 1574 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1575 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1576 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1577 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1578 0x7F, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 1579 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1580 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1581 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1582 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1583 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1584
Jerome Coutant 0:c0f3bbab73d2 1585 // @2656 's' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1586 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1587 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1588 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1589 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1590 0x1F, 0x80, // ######
Jerome Coutant 0:c0f3bbab73d2 1591 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1592 0x3C, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1593 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1594 0x03, 0x80, // ###
Jerome Coutant 0:c0f3bbab73d2 1595 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1596 0x3F, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 1597 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1598 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1599 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1600 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1601 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1602
Jerome Coutant 0:c0f3bbab73d2 1603 // @2688 't' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1604 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1605 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1606 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1607 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1608 0x7F, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 1609 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1610 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1611 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1612 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1613 0x18, 0x80, // ## #
Jerome Coutant 0:c0f3bbab73d2 1614 0x0F, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1615 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1616 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1617 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1618 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1619 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1620
Jerome Coutant 0:c0f3bbab73d2 1621 // @2720 'u' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1622 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1623 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1624 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1625 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1626 0x73, 0x80, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1627 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1628 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1629 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1630 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1631 0x33, 0x80, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1632 0x1D, 0xC0, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1633 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1634 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1635 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1636 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1637 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1638
Jerome Coutant 0:c0f3bbab73d2 1639 // @2752 'v' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1640 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1641 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1642 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1643 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1644 0x7B, 0xC0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1645 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1646 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1647 0x1B, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1648 0x1B, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1649 0x0E, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1650 0x0E, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1651 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1652 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1653 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1654 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1655 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1656
Jerome Coutant 0:c0f3bbab73d2 1657 // @2784 'w' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1658 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1659 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1660 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1661 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1662 0xF1, 0xE0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1663 0x60, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1664 0x64, 0xC0, // ## # ##
Jerome Coutant 0:c0f3bbab73d2 1665 0x6E, 0xC0, // ## ### ##
Jerome Coutant 0:c0f3bbab73d2 1666 0x3B, 0x80, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1667 0x3B, 0x80, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1668 0x31, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1669 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1670 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1671 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1672 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1673 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1674
Jerome Coutant 0:c0f3bbab73d2 1675 // @2816 'x' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1676 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1677 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1678 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1679 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1680 0x7B, 0xC0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1681 0x1B, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1682 0x0E, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1683 0x0E, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1684 0x0E, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1685 0x1B, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1686 0x7B, 0xC0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1687 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1688 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1689 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1690 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1691 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1692
Jerome Coutant 0:c0f3bbab73d2 1693 // @2848 'y' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1694 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1695 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1696 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1697 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1698 0x79, 0xE0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1699 0x30, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1700 0x19, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1701 0x19, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1702 0x0B, 0x00, // # ##
Jerome Coutant 0:c0f3bbab73d2 1703 0x0F, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1704 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1705 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1706 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1707 0x3E, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1708 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1709 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1710
Jerome Coutant 0:c0f3bbab73d2 1711 // @2880 'z' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1712 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1713 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1714 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1715 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1716 0x3F, 0x80, // #######
Jerome Coutant 0:c0f3bbab73d2 1717 0x21, 0x80, // # ##
Jerome Coutant 0:c0f3bbab73d2 1718 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1719 0x0E, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1720 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1721 0x30, 0x80, // ## #
Jerome Coutant 0:c0f3bbab73d2 1722 0x3F, 0x80, // #######
Jerome Coutant 0:c0f3bbab73d2 1723 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1724 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1725 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1726 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1727 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1728
Jerome Coutant 0:c0f3bbab73d2 1729 // @2912 '{' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1730 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1731 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1732 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1733 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1734 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1735 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1736 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1737 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1738 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1739 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1740 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1741 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1742 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1743 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1744 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1745 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1746
Jerome Coutant 0:c0f3bbab73d2 1747 // @2944 '|' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1748 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1749 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1750 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1751 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1752 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1753 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1754 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1755 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1756 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1757 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1758 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1759 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1760 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1761 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1762 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1763 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1764
Jerome Coutant 0:c0f3bbab73d2 1765 // @2976 '}' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1766 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1767 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1768 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1769 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1770 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1771 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1772 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1773 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1774 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1775 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1776 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1777 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1778 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1779 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1780 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1781 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1782
Jerome Coutant 0:c0f3bbab73d2 1783 // @3008 '~' (11 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1784 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1785 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1786 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1787 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1788 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1789 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1790 0x24, 0x80, // # # #
Jerome Coutant 0:c0f3bbab73d2 1791 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1792 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1793 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1794 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1795 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1796 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1797 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1798 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1799 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1800 };
Jerome Coutant 0:c0f3bbab73d2 1801
Jerome Coutant 0:c0f3bbab73d2 1802 sFONT Font16 = {
Jerome Coutant 0:c0f3bbab73d2 1803 Font16_Table,
Jerome Coutant 0:c0f3bbab73d2 1804 11, /* Width */
Jerome Coutant 0:c0f3bbab73d2 1805 16, /* Height */
Jerome Coutant 0:c0f3bbab73d2 1806 };
Jerome Coutant 0:c0f3bbab73d2 1807
Jerome Coutant 0:c0f3bbab73d2 1808 /**
Jerome Coutant 0:c0f3bbab73d2 1809 * @}
Jerome Coutant 0:c0f3bbab73d2 1810 */
Jerome Coutant 0:c0f3bbab73d2 1811
Jerome Coutant 0:c0f3bbab73d2 1812
Jerome Coutant 0:c0f3bbab73d2 1813 /** @defgroup FONTS_Private_Function_Prototypes
Jerome Coutant 0:c0f3bbab73d2 1814 * @{
Jerome Coutant 0:c0f3bbab73d2 1815 */
Jerome Coutant 0:c0f3bbab73d2 1816 /**
Jerome Coutant 0:c0f3bbab73d2 1817 * @}
Jerome Coutant 0:c0f3bbab73d2 1818 */
Jerome Coutant 0:c0f3bbab73d2 1819
Jerome Coutant 0:c0f3bbab73d2 1820
Jerome Coutant 0:c0f3bbab73d2 1821 /** @defgroup FONTS_Private_Functions
Jerome Coutant 0:c0f3bbab73d2 1822 * @{
Jerome Coutant 0:c0f3bbab73d2 1823 */
Jerome Coutant 0:c0f3bbab73d2 1824
Jerome Coutant 0:c0f3bbab73d2 1825 /**
Jerome Coutant 0:c0f3bbab73d2 1826 * @}
Jerome Coutant 0:c0f3bbab73d2 1827 */
Jerome Coutant 0:c0f3bbab73d2 1828
Jerome Coutant 0:c0f3bbab73d2 1829 /**
Jerome Coutant 0:c0f3bbab73d2 1830 * @}
Jerome Coutant 0:c0f3bbab73d2 1831 */
Jerome Coutant 0:c0f3bbab73d2 1832
Jerome Coutant 0:c0f3bbab73d2 1833 /**
Jerome Coutant 0:c0f3bbab73d2 1834 * @}
Jerome Coutant 0:c0f3bbab73d2 1835 */
Jerome Coutant 0:c0f3bbab73d2 1836
Jerome Coutant 0:c0f3bbab73d2 1837 /**
Jerome Coutant 0:c0f3bbab73d2 1838 * @}
Jerome Coutant 0:c0f3bbab73d2 1839 */
Jerome Coutant 0:c0f3bbab73d2 1840
Jerome Coutant 0:c0f3bbab73d2 1841 /**
Jerome Coutant 0:c0f3bbab73d2 1842 * @}
Jerome Coutant 0:c0f3bbab73d2 1843 */
Jerome Coutant 0:c0f3bbab73d2 1844 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/