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:
Fri Nov 15 14:50:16 2019 +0100
Revision:
8:d13d7c447539
Parent:
0:c0f3bbab73d2
Correct warning

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 font20.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 font20 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 font20 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 // Character bitmaps for Courier New 15pt
Jerome Coutant 0:c0f3bbab73d2 87 const uint8_t Font20_Table[] =
Jerome Coutant 0:c0f3bbab73d2 88 {
Jerome Coutant 0:c0f3bbab73d2 89 // @0 ' ' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 90 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 91 0x00, 0x00, //
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 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 109 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 110
Jerome Coutant 0:c0f3bbab73d2 111 // @40 '!' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 112 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 113 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 114 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 115 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 116 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 117 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 118 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 119 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 120 0x02, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 121 0x02, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 122 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 123 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 124 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 125 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 126 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 127 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 128 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 129 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 130 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 131 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 132
Jerome Coutant 0:c0f3bbab73d2 133 // @80 '"' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 134 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 135 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 136 0x1C, 0xE0, // ### ###
Jerome Coutant 0:c0f3bbab73d2 137 0x1C, 0xE0, // ### ###
Jerome Coutant 0:c0f3bbab73d2 138 0x1C, 0xE0, // ### ###
Jerome Coutant 0:c0f3bbab73d2 139 0x08, 0x40, // # #
Jerome Coutant 0:c0f3bbab73d2 140 0x08, 0x40, // # #
Jerome Coutant 0:c0f3bbab73d2 141 0x08, 0x40, // # #
Jerome Coutant 0:c0f3bbab73d2 142 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 143 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 144 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 145 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 146 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 147 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 148 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 149 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 150 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 151 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 152 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 153 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 154
Jerome Coutant 0:c0f3bbab73d2 155 // @120 '#' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 156 0x0C, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 157 0x0C, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 158 0x0C, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 159 0x0C, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 160 0x0C, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 161 0x3F, 0xF0, // ##########
Jerome Coutant 0:c0f3bbab73d2 162 0x3F, 0xF0, // ##########
Jerome Coutant 0:c0f3bbab73d2 163 0x0C, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 164 0x0C, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 165 0x3F, 0xF0, // ##########
Jerome Coutant 0:c0f3bbab73d2 166 0x3F, 0xF0, // ##########
Jerome Coutant 0:c0f3bbab73d2 167 0x0C, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 168 0x0C, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 169 0x0C, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 170 0x0C, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 171 0x0C, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 172 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 173 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 174 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 175 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 176
Jerome Coutant 0:c0f3bbab73d2 177 // @160 '$' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 178 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 179 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 180 0x07, 0xE0, // ######
Jerome Coutant 0:c0f3bbab73d2 181 0x0F, 0xE0, // #######
Jerome Coutant 0:c0f3bbab73d2 182 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 183 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 184 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 185 0x0F, 0xC0, // ######
Jerome Coutant 0:c0f3bbab73d2 186 0x00, 0xE0, // ###
Jerome Coutant 0:c0f3bbab73d2 187 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 188 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 189 0x1F, 0xC0, // #######
Jerome Coutant 0:c0f3bbab73d2 190 0x1F, 0x80, // ######
Jerome Coutant 0:c0f3bbab73d2 191 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 192 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 193 0x03, 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 // @200 '%' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 200 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 201 0x1C, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 202 0x22, 0x00, // # #
Jerome Coutant 0:c0f3bbab73d2 203 0x22, 0x00, // # #
Jerome Coutant 0:c0f3bbab73d2 204 0x22, 0x00, // # #
Jerome Coutant 0:c0f3bbab73d2 205 0x1C, 0x60, // ### ##
Jerome Coutant 0:c0f3bbab73d2 206 0x01, 0xE0, // ####
Jerome Coutant 0:c0f3bbab73d2 207 0x0F, 0x80, // #####
Jerome Coutant 0:c0f3bbab73d2 208 0x3C, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 209 0x31, 0xC0, // ## ###
Jerome Coutant 0:c0f3bbab73d2 210 0x02, 0x20, // # #
Jerome Coutant 0:c0f3bbab73d2 211 0x02, 0x20, // # #
Jerome Coutant 0:c0f3bbab73d2 212 0x02, 0x20, // # #
Jerome Coutant 0:c0f3bbab73d2 213 0x01, 0xC0, // ###
Jerome Coutant 0:c0f3bbab73d2 214 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 215 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 216 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 217 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 218 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 219 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 220
Jerome Coutant 0:c0f3bbab73d2 221 // @240 '&' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 222 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 223 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 224 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 225 0x03, 0xE0, // #####
Jerome Coutant 0:c0f3bbab73d2 226 0x0F, 0xE0, // #######
Jerome Coutant 0:c0f3bbab73d2 227 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 228 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 229 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 230 0x0F, 0x30, // #### ##
Jerome Coutant 0:c0f3bbab73d2 231 0x1F, 0xF0, // #########
Jerome Coutant 0:c0f3bbab73d2 232 0x19, 0xE0, // ## ####
Jerome Coutant 0:c0f3bbab73d2 233 0x18, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 234 0x1F, 0xF0, // #########
Jerome Coutant 0:c0f3bbab73d2 235 0x07, 0xB0, // #### ##
Jerome Coutant 0:c0f3bbab73d2 236 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 237 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 238 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 239 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 240 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 241 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 242
Jerome Coutant 0:c0f3bbab73d2 243 // @280 ''' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 244 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 245 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 246 0x03, 0x80, // ###
Jerome Coutant 0:c0f3bbab73d2 247 0x03, 0x80, // ###
Jerome Coutant 0:c0f3bbab73d2 248 0x03, 0x80, // ###
Jerome Coutant 0:c0f3bbab73d2 249 0x01, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 250 0x01, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 251 0x01, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 252 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 253 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 254 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 255 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 256 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 257 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 258 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 259 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 260 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 261 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 262 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 263 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 264
Jerome Coutant 0:c0f3bbab73d2 265 // @320 '(' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 266 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 267 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 268 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 269 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 270 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 271 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 272 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 273 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 274 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 275 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 276 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 277 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 278 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 279 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 280 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 281 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 282 0x00, 0xC0, // ##
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
Jerome Coutant 0:c0f3bbab73d2 287 // @360 ')' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 288 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 289 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 290 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 291 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 292 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 293 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 294 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 295 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 296 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 297 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 298 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 299 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 300 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 301 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 302 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 303 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 304 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 305 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 306 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 307 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 308
Jerome Coutant 0:c0f3bbab73d2 309 // @400 '*' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 310 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 311 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 312 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 313 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 314 0x1B, 0x60, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 315 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 316 0x07, 0x80, // ####
Jerome Coutant 0:c0f3bbab73d2 317 0x07, 0x80, // ####
Jerome Coutant 0:c0f3bbab73d2 318 0x0F, 0xC0, // ######
Jerome Coutant 0:c0f3bbab73d2 319 0x0C, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 320 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 321 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 322 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 323 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 324 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 325 0x00, 0x00, //
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
Jerome Coutant 0:c0f3bbab73d2 331 // @440 '+' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 332 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 333 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 334 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 335 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 336 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 337 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 338 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 339 0x3F, 0xF0, // ##########
Jerome Coutant 0:c0f3bbab73d2 340 0x3F, 0xF0, // ##########
Jerome Coutant 0:c0f3bbab73d2 341 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 342 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 343 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 344 0x03, 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
Jerome Coutant 0:c0f3bbab73d2 353 // @480 ',' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 354 0x00, 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 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 361 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 362 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 363 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 364 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 365 0x03, 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 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 370 0x04, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 371 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 372 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 373 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 374
Jerome Coutant 0:c0f3bbab73d2 375 // @520 '-' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 376 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 377 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 378 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 379 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 380 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 381 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 382 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 383 0x3F, 0xE0, // #########
Jerome Coutant 0:c0f3bbab73d2 384 0x3F, 0xE0, // #########
Jerome Coutant 0:c0f3bbab73d2 385 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 386 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 387 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 388 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 389 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 390 0x00, 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 // @560 '.' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 398 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 399 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 400 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 401 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 402 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 403 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 404 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 405 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 406 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 407 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 408 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 409 0x03, 0x80, // ###
Jerome Coutant 0:c0f3bbab73d2 410 0x03, 0x80, // ###
Jerome Coutant 0:c0f3bbab73d2 411 0x03, 0x80, // ###
Jerome Coutant 0:c0f3bbab73d2 412 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 413 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 414 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 415 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 416 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 417 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 418
Jerome Coutant 0:c0f3bbab73d2 419 // @600 '/' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 420 0x00, 0x60, // ##
Jerome Coutant 0:c0f3bbab73d2 421 0x00, 0x60, // ##
Jerome Coutant 0:c0f3bbab73d2 422 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 423 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 424 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 425 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 426 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 427 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 428 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 429 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 430 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 431 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 432 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 433 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 434 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 435 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 436 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 437 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 438 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 439 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 440
Jerome Coutant 0:c0f3bbab73d2 441 // @640 '0' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 442 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 443 0x0F, 0x80, // #####
Jerome Coutant 0:c0f3bbab73d2 444 0x1F, 0xC0, // #######
Jerome Coutant 0:c0f3bbab73d2 445 0x18, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 446 0x30, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 447 0x30, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 448 0x30, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 449 0x30, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 450 0x30, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 451 0x30, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 452 0x30, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 453 0x18, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 454 0x1F, 0xC0, // #######
Jerome Coutant 0:c0f3bbab73d2 455 0x0F, 0x80, // #####
Jerome Coutant 0:c0f3bbab73d2 456 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 457 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 458 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 459 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 460 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 461 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 462
Jerome Coutant 0:c0f3bbab73d2 463 // @680 '1' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 464 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 465 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 466 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 467 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 468 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 469 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 470 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 471 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 472 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 473 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 474 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 475 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 476 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 477 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 478 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 479 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 480 0x00, 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
Jerome Coutant 0:c0f3bbab73d2 485 // @720 '2' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 486 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 487 0x0F, 0x80, // #####
Jerome Coutant 0:c0f3bbab73d2 488 0x1F, 0xC0, // #######
Jerome Coutant 0:c0f3bbab73d2 489 0x38, 0xE0, // ### ###
Jerome Coutant 0:c0f3bbab73d2 490 0x30, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 491 0x00, 0x60, // ##
Jerome Coutant 0:c0f3bbab73d2 492 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 493 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 494 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 495 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 496 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 497 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 498 0x3F, 0xE0, // #########
Jerome Coutant 0:c0f3bbab73d2 499 0x3F, 0xE0, // #########
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 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 505 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 506
Jerome Coutant 0:c0f3bbab73d2 507 // @760 '3' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 508 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 509 0x0F, 0x80, // #####
Jerome Coutant 0:c0f3bbab73d2 510 0x3F, 0xC0, // ########
Jerome Coutant 0:c0f3bbab73d2 511 0x30, 0xE0, // ## ###
Jerome Coutant 0:c0f3bbab73d2 512 0x00, 0x60, // ##
Jerome Coutant 0:c0f3bbab73d2 513 0x00, 0xE0, // ###
Jerome Coutant 0:c0f3bbab73d2 514 0x07, 0xC0, // #####
Jerome Coutant 0:c0f3bbab73d2 515 0x07, 0xC0, // #####
Jerome Coutant 0:c0f3bbab73d2 516 0x00, 0xE0, // ###
Jerome Coutant 0:c0f3bbab73d2 517 0x00, 0x60, // ##
Jerome Coutant 0:c0f3bbab73d2 518 0x00, 0x60, // ##
Jerome Coutant 0:c0f3bbab73d2 519 0x60, 0xE0, // ## ###
Jerome Coutant 0:c0f3bbab73d2 520 0x7F, 0xC0, // #########
Jerome Coutant 0:c0f3bbab73d2 521 0x3F, 0x80, // #######
Jerome Coutant 0:c0f3bbab73d2 522 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 523 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 524 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 525 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 526 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 527 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 528
Jerome Coutant 0:c0f3bbab73d2 529 // @800 '4' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 530 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 531 0x01, 0xC0, // ###
Jerome Coutant 0:c0f3bbab73d2 532 0x03, 0xC0, // ####
Jerome Coutant 0:c0f3bbab73d2 533 0x03, 0xC0, // ####
Jerome Coutant 0:c0f3bbab73d2 534 0x06, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 535 0x0C, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 536 0x0C, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 537 0x18, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 538 0x30, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 539 0x3F, 0xE0, // #########
Jerome Coutant 0:c0f3bbab73d2 540 0x3F, 0xE0, // #########
Jerome Coutant 0:c0f3bbab73d2 541 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 542 0x03, 0xE0, // #####
Jerome Coutant 0:c0f3bbab73d2 543 0x03, 0xE0, // #####
Jerome Coutant 0:c0f3bbab73d2 544 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 545 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 546 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 547 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 548 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 549 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 550
Jerome Coutant 0:c0f3bbab73d2 551 // @840 '5' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 552 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 553 0x1F, 0xC0, // #######
Jerome Coutant 0:c0f3bbab73d2 554 0x1F, 0xC0, // #######
Jerome Coutant 0:c0f3bbab73d2 555 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 556 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 557 0x1F, 0x80, // ######
Jerome Coutant 0:c0f3bbab73d2 558 0x1F, 0xC0, // #######
Jerome Coutant 0:c0f3bbab73d2 559 0x18, 0xE0, // ## ###
Jerome Coutant 0:c0f3bbab73d2 560 0x00, 0x60, // ##
Jerome Coutant 0:c0f3bbab73d2 561 0x00, 0x60, // ##
Jerome Coutant 0:c0f3bbab73d2 562 0x00, 0x60, // ##
Jerome Coutant 0:c0f3bbab73d2 563 0x30, 0xE0, // ## ###
Jerome Coutant 0:c0f3bbab73d2 564 0x3F, 0xC0, // ########
Jerome Coutant 0:c0f3bbab73d2 565 0x1F, 0x80, // ######
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 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 570 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 571 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 572
Jerome Coutant 0:c0f3bbab73d2 573 // @880 '6' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 574 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 575 0x03, 0xE0, // #####
Jerome Coutant 0:c0f3bbab73d2 576 0x0F, 0xE0, // #######
Jerome Coutant 0:c0f3bbab73d2 577 0x1E, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 578 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 579 0x38, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 580 0x37, 0x80, // ## ####
Jerome Coutant 0:c0f3bbab73d2 581 0x3F, 0xC0, // ########
Jerome Coutant 0:c0f3bbab73d2 582 0x38, 0xE0, // ### ###
Jerome Coutant 0:c0f3bbab73d2 583 0x30, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 584 0x30, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 585 0x18, 0xE0, // ## ###
Jerome Coutant 0:c0f3bbab73d2 586 0x1F, 0xC0, // #######
Jerome Coutant 0:c0f3bbab73d2 587 0x07, 0x80, // ####
Jerome Coutant 0:c0f3bbab73d2 588 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 589 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 590 0x00, 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 // @920 '7' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 596 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 597 0x3F, 0xE0, // #########
Jerome Coutant 0:c0f3bbab73d2 598 0x3F, 0xE0, // #########
Jerome Coutant 0:c0f3bbab73d2 599 0x30, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 600 0x00, 0x60, // ##
Jerome Coutant 0:c0f3bbab73d2 601 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 602 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 603 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 604 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 605 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 606 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 607 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 608 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 609 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 610 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 611 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 612 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 613 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 614 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 615 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 616
Jerome Coutant 0:c0f3bbab73d2 617 // @960 '8' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 618 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 619 0x0F, 0x80, // #####
Jerome Coutant 0:c0f3bbab73d2 620 0x1F, 0xC0, // #######
Jerome Coutant 0:c0f3bbab73d2 621 0x38, 0xE0, // ### ###
Jerome Coutant 0:c0f3bbab73d2 622 0x30, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 623 0x38, 0xE0, // ### ###
Jerome Coutant 0:c0f3bbab73d2 624 0x1F, 0xC0, // #######
Jerome Coutant 0:c0f3bbab73d2 625 0x1F, 0xC0, // #######
Jerome Coutant 0:c0f3bbab73d2 626 0x38, 0xE0, // ### ###
Jerome Coutant 0:c0f3bbab73d2 627 0x30, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 628 0x30, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 629 0x38, 0xE0, // ### ###
Jerome Coutant 0:c0f3bbab73d2 630 0x1F, 0xC0, // #######
Jerome Coutant 0:c0f3bbab73d2 631 0x0F, 0x80, // #####
Jerome Coutant 0:c0f3bbab73d2 632 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 633 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 634 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 635 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 636 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 637 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 638
Jerome Coutant 0:c0f3bbab73d2 639 // @1000 '9' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 640 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 641 0x0F, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 642 0x1F, 0xC0, // #######
Jerome Coutant 0:c0f3bbab73d2 643 0x38, 0xC0, // ### ##
Jerome Coutant 0:c0f3bbab73d2 644 0x30, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 645 0x30, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 646 0x38, 0xE0, // ### ###
Jerome Coutant 0:c0f3bbab73d2 647 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 648 0x0F, 0x60, // #### ##
Jerome Coutant 0:c0f3bbab73d2 649 0x00, 0xE0, // ###
Jerome Coutant 0:c0f3bbab73d2 650 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 651 0x03, 0xC0, // ####
Jerome Coutant 0:c0f3bbab73d2 652 0x3F, 0x80, // #######
Jerome Coutant 0:c0f3bbab73d2 653 0x3E, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 654 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 655 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 656 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 657 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 658 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 659 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 660
Jerome Coutant 0:c0f3bbab73d2 661 // @1040 ':' (14 pixels wide)
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 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 667 0x03, 0x80, // ###
Jerome Coutant 0:c0f3bbab73d2 668 0x03, 0x80, // ###
Jerome Coutant 0:c0f3bbab73d2 669 0x03, 0x80, // ###
Jerome Coutant 0:c0f3bbab73d2 670 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 671 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 672 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 673 0x03, 0x80, // ###
Jerome Coutant 0:c0f3bbab73d2 674 0x03, 0x80, // ###
Jerome Coutant 0:c0f3bbab73d2 675 0x03, 0x80, // ###
Jerome Coutant 0:c0f3bbab73d2 676 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 677 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 678 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 679 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 680 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 681 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 682
Jerome Coutant 0:c0f3bbab73d2 683 // @1080 ';' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 684 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 685 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 686 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 687 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 688 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 689 0x01, 0xC0, // ###
Jerome Coutant 0:c0f3bbab73d2 690 0x01, 0xC0, // ###
Jerome Coutant 0:c0f3bbab73d2 691 0x01, 0xC0, // ###
Jerome Coutant 0:c0f3bbab73d2 692 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 693 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 694 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 695 0x03, 0x80, // ###
Jerome Coutant 0:c0f3bbab73d2 696 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 697 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 698 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 699 0x04, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 700 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 701 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 702 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 703 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 704
Jerome Coutant 0:c0f3bbab73d2 705 // @1120 '<' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 706 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 707 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 708 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 709 0x00, 0x30, // ##
Jerome Coutant 0:c0f3bbab73d2 710 0x00, 0xF0, // ####
Jerome Coutant 0:c0f3bbab73d2 711 0x03, 0xC0, // ####
Jerome Coutant 0:c0f3bbab73d2 712 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 713 0x1C, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 714 0x78, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 715 0x1C, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 716 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 717 0x03, 0xC0, // ####
Jerome Coutant 0:c0f3bbab73d2 718 0x00, 0xF0, // ####
Jerome Coutant 0:c0f3bbab73d2 719 0x00, 0x30, // ##
Jerome Coutant 0:c0f3bbab73d2 720 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 721 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 722 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 723 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 724 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 725 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 726
Jerome Coutant 0:c0f3bbab73d2 727 // @1160 '=' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 728 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 729 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 730 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 731 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 732 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 733 0x7F, 0xF0, // ###########
Jerome Coutant 0:c0f3bbab73d2 734 0x7F, 0xF0, // ###########
Jerome Coutant 0:c0f3bbab73d2 735 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 736 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 737 0x7F, 0xF0, // ###########
Jerome Coutant 0:c0f3bbab73d2 738 0x7F, 0xF0, // ###########
Jerome Coutant 0:c0f3bbab73d2 739 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 740 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 741 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 742 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 743 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 744 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 745 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 746 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 747 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 748
Jerome Coutant 0:c0f3bbab73d2 749 // @1200 '>' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 750 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 751 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 752 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 753 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 754 0x3C, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 755 0x0F, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 756 0x03, 0x80, // ###
Jerome Coutant 0:c0f3bbab73d2 757 0x00, 0xE0, // ###
Jerome Coutant 0:c0f3bbab73d2 758 0x00, 0x78, // ####
Jerome Coutant 0:c0f3bbab73d2 759 0x00, 0xE0, // ###
Jerome Coutant 0:c0f3bbab73d2 760 0x03, 0x80, // ###
Jerome Coutant 0:c0f3bbab73d2 761 0x0F, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 762 0x3C, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 763 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 764 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 765 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 766 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 767 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 768 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 769 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 770
Jerome Coutant 0:c0f3bbab73d2 771 // @1240 '?' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 772 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 773 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 774 0x0F, 0x80, // #####
Jerome Coutant 0:c0f3bbab73d2 775 0x1F, 0xC0, // #######
Jerome Coutant 0:c0f3bbab73d2 776 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 777 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 778 0x00, 0x60, // ##
Jerome Coutant 0:c0f3bbab73d2 779 0x01, 0xC0, // ###
Jerome Coutant 0:c0f3bbab73d2 780 0x03, 0x80, // ###
Jerome Coutant 0:c0f3bbab73d2 781 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 782 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 783 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 784 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 785 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 786 0x00, 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 // @1280 '@' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 794 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 795 0x03, 0x80, // ###
Jerome Coutant 0:c0f3bbab73d2 796 0x0C, 0x80, // ## #
Jerome Coutant 0:c0f3bbab73d2 797 0x08, 0x40, // # #
Jerome Coutant 0:c0f3bbab73d2 798 0x10, 0x40, // # #
Jerome Coutant 0:c0f3bbab73d2 799 0x10, 0x40, // # #
Jerome Coutant 0:c0f3bbab73d2 800 0x11, 0xC0, // # ###
Jerome Coutant 0:c0f3bbab73d2 801 0x12, 0x40, // # # #
Jerome Coutant 0:c0f3bbab73d2 802 0x12, 0x40, // # # #
Jerome Coutant 0:c0f3bbab73d2 803 0x12, 0x40, // # # #
Jerome Coutant 0:c0f3bbab73d2 804 0x11, 0xC0, // # ###
Jerome Coutant 0:c0f3bbab73d2 805 0x10, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 806 0x08, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 807 0x08, 0x40, // # #
Jerome Coutant 0:c0f3bbab73d2 808 0x07, 0x80, // ####
Jerome Coutant 0:c0f3bbab73d2 809 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 810 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 811 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 812 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 813 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 814
Jerome Coutant 0:c0f3bbab73d2 815 // @1320 'A' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 816 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 817 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 818 0x1F, 0x80, // ######
Jerome Coutant 0:c0f3bbab73d2 819 0x1F, 0x80, // ######
Jerome Coutant 0:c0f3bbab73d2 820 0x03, 0x80, // ###
Jerome Coutant 0:c0f3bbab73d2 821 0x06, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 822 0x06, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 823 0x0C, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 824 0x0C, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 825 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 826 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 827 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 828 0x78, 0x78, // #### ####
Jerome Coutant 0:c0f3bbab73d2 829 0x78, 0x78, // #### ####
Jerome Coutant 0:c0f3bbab73d2 830 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 831 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 832 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 833 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 834 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 835 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 836
Jerome Coutant 0:c0f3bbab73d2 837 // @1360 'B' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 838 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 839 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 840 0x3F, 0x80, // #######
Jerome Coutant 0:c0f3bbab73d2 841 0x3F, 0xC0, // ########
Jerome Coutant 0:c0f3bbab73d2 842 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 843 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 844 0x18, 0xE0, // ## ###
Jerome Coutant 0:c0f3bbab73d2 845 0x1F, 0xC0, // #######
Jerome Coutant 0:c0f3bbab73d2 846 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 847 0x18, 0x70, // ## ###
Jerome Coutant 0:c0f3bbab73d2 848 0x18, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 849 0x18, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 850 0x3F, 0xF0, // ##########
Jerome Coutant 0:c0f3bbab73d2 851 0x3F, 0xE0, // #########
Jerome Coutant 0:c0f3bbab73d2 852 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 853 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 854 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 855 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 856 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 857 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 858
Jerome Coutant 0:c0f3bbab73d2 859 // @1400 'C' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 860 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 861 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 862 0x07, 0xB0, // #### ##
Jerome Coutant 0:c0f3bbab73d2 863 0x0F, 0xF0, // ########
Jerome Coutant 0:c0f3bbab73d2 864 0x1C, 0x70, // ### ###
Jerome Coutant 0:c0f3bbab73d2 865 0x38, 0x30, // ### ##
Jerome Coutant 0:c0f3bbab73d2 866 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 867 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 868 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 869 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 870 0x38, 0x30, // ### ##
Jerome Coutant 0:c0f3bbab73d2 871 0x1C, 0x70, // ### ###
Jerome Coutant 0:c0f3bbab73d2 872 0x0F, 0xE0, // #######
Jerome Coutant 0:c0f3bbab73d2 873 0x07, 0xC0, // #####
Jerome Coutant 0:c0f3bbab73d2 874 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 875 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 876 0x00, 0x00, //
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
Jerome Coutant 0:c0f3bbab73d2 881 // @1440 'D' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 882 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 883 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 884 0x7F, 0x80, // ########
Jerome Coutant 0:c0f3bbab73d2 885 0x7F, 0xC0, // #########
Jerome Coutant 0:c0f3bbab73d2 886 0x30, 0xE0, // ## ###
Jerome Coutant 0:c0f3bbab73d2 887 0x30, 0x70, // ## ###
Jerome Coutant 0:c0f3bbab73d2 888 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 889 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 890 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 891 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 892 0x30, 0x70, // ## ###
Jerome Coutant 0:c0f3bbab73d2 893 0x30, 0xE0, // ## ###
Jerome Coutant 0:c0f3bbab73d2 894 0x7F, 0xC0, // #########
Jerome Coutant 0:c0f3bbab73d2 895 0x7F, 0x80, // ########
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 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 901 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 902
Jerome Coutant 0:c0f3bbab73d2 903 // @1480 'E' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 904 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 905 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 906 0x3F, 0xF0, // ##########
Jerome Coutant 0:c0f3bbab73d2 907 0x3F, 0xF0, // ##########
Jerome Coutant 0:c0f3bbab73d2 908 0x18, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 909 0x18, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 910 0x19, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 911 0x1F, 0x80, // ######
Jerome Coutant 0:c0f3bbab73d2 912 0x1F, 0x80, // ######
Jerome Coutant 0:c0f3bbab73d2 913 0x19, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 914 0x18, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 915 0x18, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 916 0x3F, 0xF0, // ##########
Jerome Coutant 0:c0f3bbab73d2 917 0x3F, 0xF0, // ##########
Jerome Coutant 0:c0f3bbab73d2 918 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 919 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 920 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 921 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 922 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 923 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 924
Jerome Coutant 0:c0f3bbab73d2 925 // @1520 'F' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 926 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 927 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 928 0x3F, 0xF0, // ##########
Jerome Coutant 0:c0f3bbab73d2 929 0x3F, 0xF0, // ##########
Jerome Coutant 0:c0f3bbab73d2 930 0x18, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 931 0x18, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 932 0x19, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 933 0x1F, 0x80, // ######
Jerome Coutant 0:c0f3bbab73d2 934 0x1F, 0x80, // ######
Jerome Coutant 0:c0f3bbab73d2 935 0x19, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 936 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 937 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 938 0x3F, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 939 0x3F, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 940 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 941 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 942 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 943 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 944 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 945 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 946
Jerome Coutant 0:c0f3bbab73d2 947 // @1560 'G' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 948 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 949 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 950 0x07, 0xB0, // #### ##
Jerome Coutant 0:c0f3bbab73d2 951 0x1F, 0xF0, // #########
Jerome Coutant 0:c0f3bbab73d2 952 0x18, 0x70, // ## ###
Jerome Coutant 0:c0f3bbab73d2 953 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 954 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 955 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 956 0x31, 0xF8, // ## ######
Jerome Coutant 0:c0f3bbab73d2 957 0x31, 0xF8, // ## ######
Jerome Coutant 0:c0f3bbab73d2 958 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 959 0x18, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 960 0x1F, 0xF0, // #########
Jerome Coutant 0:c0f3bbab73d2 961 0x07, 0xC0, // #####
Jerome Coutant 0:c0f3bbab73d2 962 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 963 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 964 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 965 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 966 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 967 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 968
Jerome Coutant 0:c0f3bbab73d2 969 // @1600 'H' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 970 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 971 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 972 0x3C, 0xF0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 973 0x3C, 0xF0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 974 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 975 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 976 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 977 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 978 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 979 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 980 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 981 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 982 0x3C, 0xF0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 983 0x3C, 0xF0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 984 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 985 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 986 0x00, 0x00, //
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 // @1640 'I' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 992 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 993 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 994 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 995 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 996 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 997 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 998 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 999 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1000 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1001 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1002 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1003 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1004 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 1005 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 1006 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1007 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1008 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1009 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1010 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1011 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1012
Jerome Coutant 0:c0f3bbab73d2 1013 // @1680 'J' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1014 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1015 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1016 0x03, 0xF8, // #######
Jerome Coutant 0:c0f3bbab73d2 1017 0x03, 0xF8, // #######
Jerome Coutant 0:c0f3bbab73d2 1018 0x00, 0x60, // ##
Jerome Coutant 0:c0f3bbab73d2 1019 0x00, 0x60, // ##
Jerome Coutant 0:c0f3bbab73d2 1020 0x00, 0x60, // ##
Jerome Coutant 0:c0f3bbab73d2 1021 0x00, 0x60, // ##
Jerome Coutant 0:c0f3bbab73d2 1022 0x30, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1023 0x30, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1024 0x30, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1025 0x30, 0xE0, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1026 0x3F, 0xC0, // ########
Jerome Coutant 0:c0f3bbab73d2 1027 0x0F, 0x80, // #####
Jerome Coutant 0:c0f3bbab73d2 1028 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1029 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1030 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1031 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1032 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1033 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1034
Jerome Coutant 0:c0f3bbab73d2 1035 // @1720 'K' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1036 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1037 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1038 0x3E, 0xF8, // ##### #####
Jerome Coutant 0:c0f3bbab73d2 1039 0x3E, 0xF8, // ##### #####
Jerome Coutant 0:c0f3bbab73d2 1040 0x18, 0xE0, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1041 0x19, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1042 0x1B, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1043 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1044 0x1D, 0x80, // ### ##
Jerome Coutant 0:c0f3bbab73d2 1045 0x18, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1046 0x18, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1047 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1048 0x3E, 0x78, // ##### ####
Jerome Coutant 0:c0f3bbab73d2 1049 0x3E, 0x38, // ##### ###
Jerome Coutant 0:c0f3bbab73d2 1050 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1051 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1052 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1053 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1054 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1055 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1056
Jerome Coutant 0:c0f3bbab73d2 1057 // @1760 'L' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1058 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1059 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1060 0x3F, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 1061 0x3F, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 1062 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1063 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1064 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1065 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1066 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1067 0x0C, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1068 0x0C, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1069 0x0C, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1070 0x3F, 0xF0, // ##########
Jerome Coutant 0:c0f3bbab73d2 1071 0x3F, 0xF0, // ##########
Jerome Coutant 0:c0f3bbab73d2 1072 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1073 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1074 0x00, 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
Jerome Coutant 0:c0f3bbab73d2 1079 // @1800 'M' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1080 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1081 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1082 0x78, 0x78, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1083 0x78, 0x78, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1084 0x38, 0x70, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1085 0x3C, 0xF0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1086 0x34, 0xB0, // ## # # ##
Jerome Coutant 0:c0f3bbab73d2 1087 0x37, 0xB0, // ## #### ##
Jerome Coutant 0:c0f3bbab73d2 1088 0x37, 0xB0, // ## #### ##
Jerome Coutant 0:c0f3bbab73d2 1089 0x33, 0x30, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1090 0x33, 0x30, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1091 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1092 0x7C, 0xF8, // ##### #####
Jerome Coutant 0:c0f3bbab73d2 1093 0x7C, 0xF8, // ##### #####
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 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1099 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1100
Jerome Coutant 0:c0f3bbab73d2 1101 // @1840 'N' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1102 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1103 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1104 0x39, 0xF0, // ### #####
Jerome Coutant 0:c0f3bbab73d2 1105 0x3D, 0xF0, // #### #####
Jerome Coutant 0:c0f3bbab73d2 1106 0x1C, 0x60, // ### ##
Jerome Coutant 0:c0f3bbab73d2 1107 0x1E, 0x60, // #### ##
Jerome Coutant 0:c0f3bbab73d2 1108 0x1E, 0x60, // #### ##
Jerome Coutant 0:c0f3bbab73d2 1109 0x1B, 0x60, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1110 0x1B, 0x60, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1111 0x19, 0xE0, // ## ####
Jerome Coutant 0:c0f3bbab73d2 1112 0x19, 0xE0, // ## ####
Jerome Coutant 0:c0f3bbab73d2 1113 0x18, 0xE0, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1114 0x3E, 0xE0, // ##### ###
Jerome Coutant 0:c0f3bbab73d2 1115 0x3E, 0x60, // ##### ##
Jerome Coutant 0:c0f3bbab73d2 1116 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1117 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1118 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1119 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1120 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1121 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1122
Jerome Coutant 0:c0f3bbab73d2 1123 // @1880 'O' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1124 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1125 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1126 0x07, 0x80, // ####
Jerome Coutant 0:c0f3bbab73d2 1127 0x0F, 0xC0, // ######
Jerome Coutant 0:c0f3bbab73d2 1128 0x1C, 0xE0, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1129 0x38, 0x70, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1130 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1131 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1132 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1133 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1134 0x38, 0x70, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1135 0x1C, 0xE0, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1136 0x0F, 0xC0, // ######
Jerome Coutant 0:c0f3bbab73d2 1137 0x07, 0x80, // ####
Jerome Coutant 0:c0f3bbab73d2 1138 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1139 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1140 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1141 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1142 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1143 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1144
Jerome Coutant 0:c0f3bbab73d2 1145 // @1920 'P' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1146 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1147 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1148 0x3F, 0xC0, // ########
Jerome Coutant 0:c0f3bbab73d2 1149 0x3F, 0xE0, // #########
Jerome Coutant 0:c0f3bbab73d2 1150 0x18, 0x70, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1151 0x18, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1152 0x18, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1153 0x18, 0x70, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1154 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 1155 0x1F, 0xC0, // #######
Jerome Coutant 0:c0f3bbab73d2 1156 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1157 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1158 0x3F, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 1159 0x3F, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 1160 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1161 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1162 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1163 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1164 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1165 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1166
Jerome Coutant 0:c0f3bbab73d2 1167 // @1960 'Q' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1168 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1169 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1170 0x07, 0x80, // ####
Jerome Coutant 0:c0f3bbab73d2 1171 0x0F, 0xC0, // ######
Jerome Coutant 0:c0f3bbab73d2 1172 0x1C, 0xE0, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1173 0x38, 0x70, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1174 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1175 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1176 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1177 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1178 0x38, 0x70, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1179 0x1C, 0xE0, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1180 0x0F, 0xC0, // ######
Jerome Coutant 0:c0f3bbab73d2 1181 0x07, 0x80, // ####
Jerome Coutant 0:c0f3bbab73d2 1182 0x07, 0xB0, // #### ##
Jerome Coutant 0:c0f3bbab73d2 1183 0x0F, 0xF0, // ########
Jerome Coutant 0:c0f3bbab73d2 1184 0x0C, 0xE0, // ## ###
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 // @2000 'R' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1190 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1191 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1192 0x3F, 0xC0, // ########
Jerome Coutant 0:c0f3bbab73d2 1193 0x3F, 0xE0, // #########
Jerome Coutant 0:c0f3bbab73d2 1194 0x18, 0x70, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1195 0x18, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1196 0x18, 0x70, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1197 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 1198 0x1F, 0xC0, // #######
Jerome Coutant 0:c0f3bbab73d2 1199 0x18, 0xE0, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1200 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1201 0x18, 0x70, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1202 0x3E, 0x38, // ##### ###
Jerome Coutant 0:c0f3bbab73d2 1203 0x3E, 0x18, // ##### ##
Jerome Coutant 0:c0f3bbab73d2 1204 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1205 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1206 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1207 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1208 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1209 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1210
Jerome Coutant 0:c0f3bbab73d2 1211 // @2040 'S' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1212 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1213 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1214 0x0F, 0xB0, // ##### ##
Jerome Coutant 0:c0f3bbab73d2 1215 0x1F, 0xF0, // #########
Jerome Coutant 0:c0f3bbab73d2 1216 0x38, 0x70, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1217 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1218 0x38, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1219 0x1F, 0x80, // ######
Jerome Coutant 0:c0f3bbab73d2 1220 0x07, 0xE0, // ######
Jerome Coutant 0:c0f3bbab73d2 1221 0x00, 0x70, // ###
Jerome Coutant 0:c0f3bbab73d2 1222 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1223 0x38, 0x70, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1224 0x3F, 0xE0, // #########
Jerome Coutant 0:c0f3bbab73d2 1225 0x37, 0xC0, // ## #####
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
Jerome Coutant 0:c0f3bbab73d2 1233 // @2080 'T' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1234 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1235 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1236 0x3F, 0xF0, // ##########
Jerome Coutant 0:c0f3bbab73d2 1237 0x3F, 0xF0, // ##########
Jerome Coutant 0:c0f3bbab73d2 1238 0x33, 0x30, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1239 0x33, 0x30, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1240 0x33, 0x30, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1241 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1242 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1243 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1244 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1245 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1246 0x0F, 0xC0, // ######
Jerome Coutant 0:c0f3bbab73d2 1247 0x0F, 0xC0, // ######
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
Jerome Coutant 0:c0f3bbab73d2 1255 // @2120 'U' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1256 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1257 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1258 0x3C, 0xF0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1259 0x3C, 0xF0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1260 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1261 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1262 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1263 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1264 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1265 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1266 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1267 0x1C, 0xE0, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1268 0x0F, 0xC0, // ######
Jerome Coutant 0:c0f3bbab73d2 1269 0x07, 0x80, // ####
Jerome Coutant 0:c0f3bbab73d2 1270 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1271 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1272 0x00, 0x00, //
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
Jerome Coutant 0:c0f3bbab73d2 1277 // @2160 'V' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1278 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1279 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1280 0x78, 0xF0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1281 0x78, 0xF0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1282 0x30, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1283 0x30, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1284 0x18, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1285 0x18, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1286 0x0D, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1287 0x0D, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1288 0x0D, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1289 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1290 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1291 0x07, 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 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1297 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1298
Jerome Coutant 0:c0f3bbab73d2 1299 // @2200 'W' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1300 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1301 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1302 0x7C, 0x7C, // ##### #####
Jerome Coutant 0:c0f3bbab73d2 1303 0x7C, 0x7C, // ##### #####
Jerome Coutant 0:c0f3bbab73d2 1304 0x30, 0x18, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1305 0x33, 0x98, // ## ### ##
Jerome Coutant 0:c0f3bbab73d2 1306 0x33, 0x98, // ## ### ##
Jerome Coutant 0:c0f3bbab73d2 1307 0x33, 0x98, // ## ### ##
Jerome Coutant 0:c0f3bbab73d2 1308 0x36, 0xD8, // ## ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1309 0x16, 0xD0, // # ## ## #
Jerome Coutant 0:c0f3bbab73d2 1310 0x1C, 0x70, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1311 0x1C, 0x70, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1312 0x1C, 0x70, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1313 0x18, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1314 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1315 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1316 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1317 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1318 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1319 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1320
Jerome Coutant 0:c0f3bbab73d2 1321 // @2240 'X' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1322 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1323 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1324 0x78, 0xF0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1325 0x78, 0xF0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1326 0x30, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1327 0x18, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1328 0x0D, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1329 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1330 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1331 0x0D, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1332 0x18, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1333 0x30, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1334 0x78, 0xF0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1335 0x78, 0xF0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1336 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1337 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1338 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1339 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1340 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1341 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1342
Jerome Coutant 0:c0f3bbab73d2 1343 // @2280 'Y' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1344 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1345 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1346 0x3C, 0xF0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1347 0x3C, 0xF0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1348 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1349 0x0C, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1350 0x07, 0x80, // ####
Jerome Coutant 0:c0f3bbab73d2 1351 0x07, 0x80, // ####
Jerome Coutant 0:c0f3bbab73d2 1352 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1353 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1354 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1355 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1356 0x0F, 0xC0, // ######
Jerome Coutant 0:c0f3bbab73d2 1357 0x0F, 0xC0, // ######
Jerome Coutant 0:c0f3bbab73d2 1358 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1359 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1360 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1361 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1362 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1363 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1364
Jerome Coutant 0:c0f3bbab73d2 1365 // @2320 'Z' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1366 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1367 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1368 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 1369 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 1370 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1371 0x18, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1372 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 1373 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1374 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1375 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1376 0x0C, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1377 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1378 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 1379 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 1380 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1381 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1382 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1383 0x00, 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 // @2360 '[' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1388 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1389 0x03, 0xC0, // ####
Jerome Coutant 0:c0f3bbab73d2 1390 0x03, 0xC0, // ####
Jerome Coutant 0:c0f3bbab73d2 1391 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1392 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1393 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1394 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1395 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1396 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1397 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1398 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1399 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1400 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1401 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1402 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1403 0x03, 0xC0, // ####
Jerome Coutant 0:c0f3bbab73d2 1404 0x03, 0xC0, // ####
Jerome Coutant 0:c0f3bbab73d2 1405 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1406 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1407 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1408
Jerome Coutant 0:c0f3bbab73d2 1409 // @2400 '\' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1410 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1411 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1412 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1413 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1414 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1415 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1416 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1417 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1418 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1419 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 1420 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 1421 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 1422 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 1423 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 1424 0x00, 0x60, // ##
Jerome Coutant 0:c0f3bbab73d2 1425 0x00, 0x60, // ##
Jerome Coutant 0:c0f3bbab73d2 1426 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1427 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1428 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1429 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1430
Jerome Coutant 0:c0f3bbab73d2 1431 // @2440 ']' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1432 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1433 0x0F, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1434 0x0F, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1435 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1436 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1437 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1438 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1439 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1440 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1441 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1442 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1443 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1444 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1445 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1446 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1447 0x0F, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1448 0x0F, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1449 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1450 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1451 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1452
Jerome Coutant 0:c0f3bbab73d2 1453 // @2480 '^' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1454 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1455 0x02, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 1456 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1457 0x0D, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1458 0x18, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1459 0x30, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1460 0x20, 0x20, // # #
Jerome Coutant 0:c0f3bbab73d2 1461 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1462 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1463 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1464 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1465 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1466 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1467 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1468 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1469 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1470 0x00, 0x00, //
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
Jerome Coutant 0:c0f3bbab73d2 1475 // @2520 '_' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1476 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1477 0x00, 0x00, //
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 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1483 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1484 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1485 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1486 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1487 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1488 0x00, 0x00, //
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 0xFF, 0xFC, // ##############
Jerome Coutant 0:c0f3bbab73d2 1495 0xFF, 0xFC, // ##############
Jerome Coutant 0:c0f3bbab73d2 1496
Jerome Coutant 0:c0f3bbab73d2 1497 // @2560 '`' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1498 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1499 0x04, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 1500 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1501 0x00, 0x80, // #
Jerome Coutant 0:c0f3bbab73d2 1502 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1503 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1504 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1505 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1506 0x00, 0x00, //
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 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1513 0x00, 0x00, //
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
Jerome Coutant 0:c0f3bbab73d2 1519 // @2600 'a' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1520 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1521 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1522 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1523 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1524 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1525 0x0F, 0xC0, // ######
Jerome Coutant 0:c0f3bbab73d2 1526 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 1527 0x00, 0x60, // ##
Jerome Coutant 0:c0f3bbab73d2 1528 0x0F, 0xE0, // #######
Jerome Coutant 0:c0f3bbab73d2 1529 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 1530 0x38, 0x60, // ### ##
Jerome Coutant 0:c0f3bbab73d2 1531 0x30, 0xE0, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1532 0x3F, 0xF0, // ##########
Jerome Coutant 0:c0f3bbab73d2 1533 0x1F, 0x70, // ##### ###
Jerome Coutant 0:c0f3bbab73d2 1534 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1535 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1536 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1537 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1538 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1539 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1540
Jerome Coutant 0:c0f3bbab73d2 1541 // @2640 'b' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1542 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1543 0x70, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1544 0x70, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1545 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1546 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1547 0x37, 0x80, // ## ####
Jerome Coutant 0:c0f3bbab73d2 1548 0x3F, 0xE0, // #########
Jerome Coutant 0:c0f3bbab73d2 1549 0x38, 0x60, // ### ##
Jerome Coutant 0:c0f3bbab73d2 1550 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1551 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1552 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1553 0x38, 0x60, // ### ##
Jerome Coutant 0:c0f3bbab73d2 1554 0x7F, 0xE0, // ##########
Jerome Coutant 0:c0f3bbab73d2 1555 0x77, 0x80, // ### ####
Jerome Coutant 0:c0f3bbab73d2 1556 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1557 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1558 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1559 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1560 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1561 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1562
Jerome Coutant 0:c0f3bbab73d2 1563 // @2680 'c' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1564 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1565 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1566 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1567 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1568 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1569 0x07, 0xB0, // #### ##
Jerome Coutant 0:c0f3bbab73d2 1570 0x1F, 0xF0, // #########
Jerome Coutant 0:c0f3bbab73d2 1571 0x18, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1572 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1573 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1574 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1575 0x38, 0x30, // ### ##
Jerome Coutant 0:c0f3bbab73d2 1576 0x1F, 0xF0, // #########
Jerome Coutant 0:c0f3bbab73d2 1577 0x0F, 0xC0, // ######
Jerome Coutant 0:c0f3bbab73d2 1578 0x00, 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 // @2720 'd' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1586 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1587 0x00, 0x70, // ###
Jerome Coutant 0:c0f3bbab73d2 1588 0x00, 0x70, // ###
Jerome Coutant 0:c0f3bbab73d2 1589 0x00, 0x30, // ##
Jerome Coutant 0:c0f3bbab73d2 1590 0x00, 0x30, // ##
Jerome Coutant 0:c0f3bbab73d2 1591 0x07, 0xB0, // #### ##
Jerome Coutant 0:c0f3bbab73d2 1592 0x1F, 0xF0, // #########
Jerome Coutant 0:c0f3bbab73d2 1593 0x18, 0x70, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1594 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1595 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1596 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1597 0x38, 0x70, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1598 0x1F, 0xF8, // ##########
Jerome Coutant 0:c0f3bbab73d2 1599 0x07, 0xB8, // #### ###
Jerome Coutant 0:c0f3bbab73d2 1600 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1601 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1602 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1603 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1604 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1605 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1606
Jerome Coutant 0:c0f3bbab73d2 1607 // @2760 'e' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1608 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1609 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1610 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1611 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1612 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1613 0x07, 0x80, // ####
Jerome Coutant 0:c0f3bbab73d2 1614 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 1615 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1616 0x3F, 0xF0, // ##########
Jerome Coutant 0:c0f3bbab73d2 1617 0x3F, 0xF0, // ##########
Jerome Coutant 0:c0f3bbab73d2 1618 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1619 0x18, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1620 0x1F, 0xF0, // #########
Jerome Coutant 0:c0f3bbab73d2 1621 0x07, 0xC0, // #####
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 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1627 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1628
Jerome Coutant 0:c0f3bbab73d2 1629 // @2800 'f' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1630 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1631 0x03, 0xF0, // ######
Jerome Coutant 0:c0f3bbab73d2 1632 0x07, 0xF0, // #######
Jerome Coutant 0:c0f3bbab73d2 1633 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1634 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1635 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 1636 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 1637 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1638 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1639 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1640 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1641 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1642 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 1643 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 1644 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1645 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1646 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1647 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1648 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1649 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1650
Jerome Coutant 0:c0f3bbab73d2 1651 // @2840 'g' (14 pixels wide)
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 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1657 0x07, 0xB8, // #### ###
Jerome Coutant 0:c0f3bbab73d2 1658 0x1F, 0xF8, // ##########
Jerome Coutant 0:c0f3bbab73d2 1659 0x18, 0x70, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1660 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1661 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1662 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1663 0x18, 0x70, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1664 0x1F, 0xF0, // #########
Jerome Coutant 0:c0f3bbab73d2 1665 0x07, 0xB0, // #### ##
Jerome Coutant 0:c0f3bbab73d2 1666 0x00, 0x30, // ##
Jerome Coutant 0:c0f3bbab73d2 1667 0x00, 0x70, // ###
Jerome Coutant 0:c0f3bbab73d2 1668 0x0F, 0xE0, // #######
Jerome Coutant 0:c0f3bbab73d2 1669 0x0F, 0xC0, // ######
Jerome Coutant 0:c0f3bbab73d2 1670 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1671 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1672
Jerome Coutant 0:c0f3bbab73d2 1673 // @2880 'h' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1674 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1675 0x38, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1676 0x38, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1677 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1678 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1679 0x1B, 0xC0, // ## ####
Jerome Coutant 0:c0f3bbab73d2 1680 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 1681 0x1C, 0x60, // ### ##
Jerome Coutant 0:c0f3bbab73d2 1682 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1683 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1684 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1685 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1686 0x3C, 0xF0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1687 0x3C, 0xF0, // #### ####
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 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1693 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1694
Jerome Coutant 0:c0f3bbab73d2 1695 // @2920 'i' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1696 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1697 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1698 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1699 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1700 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1701 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1702 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1703 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1704 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1705 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1706 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1707 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1708 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 1709 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 1710 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1711 0x00, 0x00, //
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
Jerome Coutant 0:c0f3bbab73d2 1717 // @2960 'j' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1718 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1719 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1720 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1721 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1722 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1723 0x1F, 0xC0, // #######
Jerome Coutant 0:c0f3bbab73d2 1724 0x1F, 0xC0, // #######
Jerome Coutant 0:c0f3bbab73d2 1725 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 1726 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 1727 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 1728 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 1729 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 1730 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 1731 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 1732 0x00, 0xC0, // ##
Jerome Coutant 0:c0f3bbab73d2 1733 0x01, 0xC0, // ###
Jerome Coutant 0:c0f3bbab73d2 1734 0x3F, 0x80, // #######
Jerome Coutant 0:c0f3bbab73d2 1735 0x3F, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 1736 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1737 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1738
Jerome Coutant 0:c0f3bbab73d2 1739 // @3000 'k' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1740 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1741 0x38, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1742 0x38, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1743 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1744 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1745 0x1B, 0xE0, // ## #####
Jerome Coutant 0:c0f3bbab73d2 1746 0x1B, 0xE0, // ## #####
Jerome Coutant 0:c0f3bbab73d2 1747 0x1B, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1748 0x1E, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1749 0x1E, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1750 0x1B, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1751 0x19, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1752 0x39, 0xF0, // ### #####
Jerome Coutant 0:c0f3bbab73d2 1753 0x39, 0xF0, // ### #####
Jerome Coutant 0:c0f3bbab73d2 1754 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1755 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1756 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1757 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1758 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1759 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1760
Jerome Coutant 0:c0f3bbab73d2 1761 // @3040 'l' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1762 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1763 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1764 0x1F, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1765 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1766 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1767 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1768 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1769 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1770 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1771 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1772 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1773 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1774 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 1775 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 1776 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1777 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1778 0x00, 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 // @3080 'm' (14 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 0x7E, 0xE0, // ###### ###
Jerome Coutant 0:c0f3bbab73d2 1790 0x7F, 0xF0, // ###########
Jerome Coutant 0:c0f3bbab73d2 1791 0x33, 0x30, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1792 0x33, 0x30, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1793 0x33, 0x30, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1794 0x33, 0x30, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1795 0x33, 0x30, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1796 0x7B, 0xB8, // #### ### ###
Jerome Coutant 0:c0f3bbab73d2 1797 0x7B, 0xB8, // #### ### ###
Jerome Coutant 0:c0f3bbab73d2 1798 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1799 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1800 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1801 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1802 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1803 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1804
Jerome Coutant 0:c0f3bbab73d2 1805 // @3120 'n' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1806 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1807 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1808 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1809 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1810 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1811 0x3B, 0xC0, // ### ####
Jerome Coutant 0:c0f3bbab73d2 1812 0x3F, 0xE0, // #########
Jerome Coutant 0:c0f3bbab73d2 1813 0x1C, 0x60, // ### ##
Jerome Coutant 0:c0f3bbab73d2 1814 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1815 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1816 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1817 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1818 0x3C, 0xF0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1819 0x3C, 0xF0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1820 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1821 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1822 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1823 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1824 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1825 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1826
Jerome Coutant 0:c0f3bbab73d2 1827 // @3160 'o' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1828 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1829 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1830 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1831 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1832 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1833 0x07, 0x80, // ####
Jerome Coutant 0:c0f3bbab73d2 1834 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 1835 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1836 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1837 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1838 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1839 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1840 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 1841 0x07, 0x80, // ####
Jerome Coutant 0:c0f3bbab73d2 1842 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1843 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1844 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1845 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1846 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1847 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1848
Jerome Coutant 0:c0f3bbab73d2 1849 // @3200 'p' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1850 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1851 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1852 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1853 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1854 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1855 0x77, 0x80, // ### ####
Jerome Coutant 0:c0f3bbab73d2 1856 0x7F, 0xE0, // ##########
Jerome Coutant 0:c0f3bbab73d2 1857 0x38, 0x60, // ### ##
Jerome Coutant 0:c0f3bbab73d2 1858 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1859 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1860 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1861 0x38, 0x60, // ### ##
Jerome Coutant 0:c0f3bbab73d2 1862 0x3F, 0xE0, // #########
Jerome Coutant 0:c0f3bbab73d2 1863 0x37, 0x80, // ## ####
Jerome Coutant 0:c0f3bbab73d2 1864 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1865 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1866 0x7C, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1867 0x7C, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1868 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1869 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1870
Jerome Coutant 0:c0f3bbab73d2 1871 // @3240 'q' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1872 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1873 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1874 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1875 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1876 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1877 0x07, 0xB8, // #### ###
Jerome Coutant 0:c0f3bbab73d2 1878 0x1F, 0xF8, // ##########
Jerome Coutant 0:c0f3bbab73d2 1879 0x18, 0x70, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1880 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1881 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1882 0x30, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1883 0x18, 0x70, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1884 0x1F, 0xF0, // #########
Jerome Coutant 0:c0f3bbab73d2 1885 0x07, 0xB0, // #### ##
Jerome Coutant 0:c0f3bbab73d2 1886 0x00, 0x30, // ##
Jerome Coutant 0:c0f3bbab73d2 1887 0x00, 0x30, // ##
Jerome Coutant 0:c0f3bbab73d2 1888 0x00, 0xF8, // #####
Jerome Coutant 0:c0f3bbab73d2 1889 0x00, 0xF8, // #####
Jerome Coutant 0:c0f3bbab73d2 1890 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1891 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1892
Jerome Coutant 0:c0f3bbab73d2 1893 // @3280 'r' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1894 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1895 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1896 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1897 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1898 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1899 0x3C, 0xE0, // #### ###
Jerome Coutant 0:c0f3bbab73d2 1900 0x3D, 0xF0, // #### #####
Jerome Coutant 0:c0f3bbab73d2 1901 0x0F, 0x30, // #### ##
Jerome Coutant 0:c0f3bbab73d2 1902 0x0E, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1903 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1904 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1905 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1906 0x3F, 0xC0, // ########
Jerome Coutant 0:c0f3bbab73d2 1907 0x3F, 0xC0, // ########
Jerome Coutant 0:c0f3bbab73d2 1908 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1909 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1910 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1911 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1912 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1913 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1914
Jerome Coutant 0:c0f3bbab73d2 1915 // @3320 's' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1916 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1917 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1918 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1919 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1920 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1921 0x07, 0xE0, // ######
Jerome Coutant 0:c0f3bbab73d2 1922 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 1923 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1924 0x1E, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1925 0x0F, 0xC0, // ######
Jerome Coutant 0:c0f3bbab73d2 1926 0x01, 0xE0, // ####
Jerome Coutant 0:c0f3bbab73d2 1927 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1928 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 1929 0x1F, 0x80, // ######
Jerome Coutant 0:c0f3bbab73d2 1930 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1931 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1932 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1933 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1934 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1935 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1936
Jerome Coutant 0:c0f3bbab73d2 1937 // @3360 't' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1938 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1939 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1940 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1941 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1942 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1943 0x3F, 0xE0, // #########
Jerome Coutant 0:c0f3bbab73d2 1944 0x3F, 0xE0, // #########
Jerome Coutant 0:c0f3bbab73d2 1945 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1946 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1947 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1948 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1949 0x0C, 0x30, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1950 0x0F, 0xF0, // ########
Jerome Coutant 0:c0f3bbab73d2 1951 0x07, 0xC0, // #####
Jerome Coutant 0:c0f3bbab73d2 1952 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1953 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1954 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1955 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1956 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1957 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1958
Jerome Coutant 0:c0f3bbab73d2 1959 // @3400 'u' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1960 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1961 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1962 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1963 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1964 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1965 0x38, 0xE0, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1966 0x38, 0xE0, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1967 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1968 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1969 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1970 0x18, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1971 0x18, 0xE0, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1972 0x1F, 0xF0, // #########
Jerome Coutant 0:c0f3bbab73d2 1973 0x0F, 0x70, // #### ###
Jerome Coutant 0:c0f3bbab73d2 1974 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1975 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1976 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1977 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1978 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1979 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1980
Jerome Coutant 0:c0f3bbab73d2 1981 // @3440 'v' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1982 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1983 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1984 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1985 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1986 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1987 0x78, 0xF0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1988 0x78, 0xF0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1989 0x30, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1990 0x18, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1991 0x18, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1992 0x0D, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1993 0x0D, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1994 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1995 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1996 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1997 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1998 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1999 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2000 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2001 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2002
Jerome Coutant 0:c0f3bbab73d2 2003 // @3480 'w' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 2004 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2005 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2006 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2007 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2008 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2009 0x78, 0xF0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 2010 0x78, 0xF0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 2011 0x32, 0x60, // ## # ##
Jerome Coutant 0:c0f3bbab73d2 2012 0x32, 0x60, // ## # ##
Jerome Coutant 0:c0f3bbab73d2 2013 0x37, 0xE0, // ## ######
Jerome Coutant 0:c0f3bbab73d2 2014 0x1D, 0xC0, // ### ###
Jerome Coutant 0:c0f3bbab73d2 2015 0x1D, 0xC0, // ### ###
Jerome Coutant 0:c0f3bbab73d2 2016 0x18, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2017 0x18, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2018 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2019 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2020 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2021 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2022 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2023 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2024
Jerome Coutant 0:c0f3bbab73d2 2025 // @3520 'x' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 2026 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2027 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2028 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2029 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2030 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2031 0x3C, 0xF0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 2032 0x3C, 0xF0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 2033 0x0C, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2034 0x07, 0x80, // ####
Jerome Coutant 0:c0f3bbab73d2 2035 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2036 0x07, 0x80, // ####
Jerome Coutant 0:c0f3bbab73d2 2037 0x0C, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2038 0x3C, 0xF0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 2039 0x3C, 0xF0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 2040 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2041 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2042 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2043 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2044 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2045 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2046
Jerome Coutant 0:c0f3bbab73d2 2047 // @3560 'y' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 2048 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2049 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2050 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2051 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2052 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2053 0x78, 0xF0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 2054 0x78, 0xF0, // #### ####
Jerome Coutant 0:c0f3bbab73d2 2055 0x30, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2056 0x18, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2057 0x18, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2058 0x0D, 0x80, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2059 0x0F, 0x80, // #####
Jerome Coutant 0:c0f3bbab73d2 2060 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 2061 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2062 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2063 0x0C, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2064 0x7F, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 2065 0x7F, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 2066 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2067 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2068
Jerome Coutant 0:c0f3bbab73d2 2069 // @3600 'z' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 2070 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2071 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2072 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2073 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2074 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2075 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 2076 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 2077 0x18, 0xC0, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2078 0x01, 0x80, // ##
Jerome Coutant 0:c0f3bbab73d2 2079 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2080 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2081 0x0C, 0x60, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2082 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 2083 0x1F, 0xE0, // ########
Jerome Coutant 0:c0f3bbab73d2 2084 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2085 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2086 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2087 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2088 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2089 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2090
Jerome Coutant 0:c0f3bbab73d2 2091 // @3640 '{' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 2092 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2093 0x01, 0xC0, // ###
Jerome Coutant 0:c0f3bbab73d2 2094 0x03, 0xC0, // ####
Jerome Coutant 0:c0f3bbab73d2 2095 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2096 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2097 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2098 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2099 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2100 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 2101 0x0E, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 2102 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 2103 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2104 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2105 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2106 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2107 0x03, 0xC0, // ####
Jerome Coutant 0:c0f3bbab73d2 2108 0x01, 0xC0, // ###
Jerome Coutant 0:c0f3bbab73d2 2109 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2110 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2111 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2112
Jerome Coutant 0:c0f3bbab73d2 2113 // @3680 '|' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 2114 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2115 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2116 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2117 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2118 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2119 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2120 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2121 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2122 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2123 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2124 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2125 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2126 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2127 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2128 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2129 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2130 0x03, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2131 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2132 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2133 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2134
Jerome Coutant 0:c0f3bbab73d2 2135 // @3720 '}' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 2136 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2137 0x1C, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 2138 0x1E, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 2139 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2140 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2141 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2142 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2143 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2144 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 2145 0x03, 0x80, // ###
Jerome Coutant 0:c0f3bbab73d2 2146 0x07, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 2147 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2148 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2149 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2150 0x06, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2151 0x1E, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 2152 0x1C, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 2153 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2154 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2155 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2156
Jerome Coutant 0:c0f3bbab73d2 2157 // @3760 '~' (14 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 2158 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2159 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2160 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2161 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2162 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2163 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2164 0x0E, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 2165 0x3F, 0x30, // ###### ##
Jerome Coutant 0:c0f3bbab73d2 2166 0x33, 0xF0, // ## ######
Jerome Coutant 0:c0f3bbab73d2 2167 0x01, 0xE0, // ####
Jerome Coutant 0:c0f3bbab73d2 2168 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2169 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2170 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2171 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2172 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2173 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2174 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2175 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2176 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2177 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2178 };
Jerome Coutant 0:c0f3bbab73d2 2179
Jerome Coutant 0:c0f3bbab73d2 2180
Jerome Coutant 0:c0f3bbab73d2 2181 sFONT Font20 = {
Jerome Coutant 0:c0f3bbab73d2 2182 Font20_Table,
Jerome Coutant 0:c0f3bbab73d2 2183 14, /* Width */
Jerome Coutant 0:c0f3bbab73d2 2184 20, /* Height */
Jerome Coutant 0:c0f3bbab73d2 2185 };
Jerome Coutant 0:c0f3bbab73d2 2186
Jerome Coutant 0:c0f3bbab73d2 2187 /**
Jerome Coutant 0:c0f3bbab73d2 2188 * @}
Jerome Coutant 0:c0f3bbab73d2 2189 */
Jerome Coutant 0:c0f3bbab73d2 2190
Jerome Coutant 0:c0f3bbab73d2 2191
Jerome Coutant 0:c0f3bbab73d2 2192 /** @defgroup FONTS_Private_Function_Prototypes
Jerome Coutant 0:c0f3bbab73d2 2193 * @{
Jerome Coutant 0:c0f3bbab73d2 2194 */
Jerome Coutant 0:c0f3bbab73d2 2195 /**
Jerome Coutant 0:c0f3bbab73d2 2196 * @}
Jerome Coutant 0:c0f3bbab73d2 2197 */
Jerome Coutant 0:c0f3bbab73d2 2198
Jerome Coutant 0:c0f3bbab73d2 2199
Jerome Coutant 0:c0f3bbab73d2 2200 /** @defgroup FONTS_Private_Functions
Jerome Coutant 0:c0f3bbab73d2 2201 * @{
Jerome Coutant 0:c0f3bbab73d2 2202 */
Jerome Coutant 0:c0f3bbab73d2 2203
Jerome Coutant 0:c0f3bbab73d2 2204 /**
Jerome Coutant 0:c0f3bbab73d2 2205 * @}
Jerome Coutant 0:c0f3bbab73d2 2206 */
Jerome Coutant 0:c0f3bbab73d2 2207
Jerome Coutant 0:c0f3bbab73d2 2208 /**
Jerome Coutant 0:c0f3bbab73d2 2209 * @}
Jerome Coutant 0:c0f3bbab73d2 2210 */
Jerome Coutant 0:c0f3bbab73d2 2211
Jerome Coutant 0:c0f3bbab73d2 2212 /**
Jerome Coutant 0:c0f3bbab73d2 2213 * @}
Jerome Coutant 0:c0f3bbab73d2 2214 */
Jerome Coutant 0:c0f3bbab73d2 2215
Jerome Coutant 0:c0f3bbab73d2 2216 /**
Jerome Coutant 0:c0f3bbab73d2 2217 * @}
Jerome Coutant 0:c0f3bbab73d2 2218 */
Jerome Coutant 0:c0f3bbab73d2 2219
Jerome Coutant 0:c0f3bbab73d2 2220 /**
Jerome Coutant 0:c0f3bbab73d2 2221 * @}
Jerome Coutant 0:c0f3bbab73d2 2222 */
Jerome Coutant 0:c0f3bbab73d2 2223 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/