@openglobus/og 0.28.7 → 1.0.0-rc2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (220) hide show
  1. package/LICENSE.md +218 -4
  2. package/README.md +31 -18
  3. package/lib/Deferred.d.ts +2 -2
  4. package/lib/Events.d.ts +1 -1
  5. package/lib/Globe.d.ts +8 -5
  6. package/lib/Object3d.d.ts +17 -14
  7. package/lib/Popup.d.ts +2 -2
  8. package/lib/assets/LabelWorker.worker-DYd7xn3M.js.map +1 -0
  9. package/lib/assets/PlainSegmentWorker.worker-JsKldq-e.js.map +1 -0
  10. package/lib/assets/TerrainWorker.worker-CqUJvMOv.js.map +1 -0
  11. package/lib/bv/index.d.ts +2 -2
  12. package/lib/camera/Camera.d.ts +280 -27
  13. package/lib/camera/Frustum.d.ts +100 -15
  14. package/lib/camera/PlanetCamera.d.ts +93 -8
  15. package/lib/camera/index.d.ts +2 -2
  16. package/lib/control/CameraFrameComposer.d.ts +2 -2
  17. package/lib/control/CameraFrameHandler.d.ts +1 -1
  18. package/lib/control/CompassButton.d.ts +2 -2
  19. package/lib/control/EarthCoordinates.d.ts +5 -2
  20. package/lib/control/FramebufferPreview.d.ts +3 -3
  21. package/lib/control/GeoImageDragControl.d.ts +1 -1
  22. package/lib/control/LayerAnimation.d.ts +2 -2
  23. package/lib/control/LayerSwitcher.d.ts +3 -0
  24. package/lib/control/Lighting.d.ts +4 -2
  25. package/lib/control/Navigation.d.ts +15 -11
  26. package/lib/control/OrthoSwitcher.d.ts +18 -0
  27. package/lib/control/SimpleTouchNavigation.d.ts +44 -0
  28. package/lib/control/Sun.d.ts +4 -2
  29. package/lib/control/TouchNavigation.d.ts +4 -8
  30. package/lib/control/atmosphere/Atmosphere.d.ts +2 -0
  31. package/lib/control/atmosphere/AtmosphereConfig.d.ts +2 -6
  32. package/lib/control/cameraDepthHandler/CameraDepthHandler.d.ts +17 -3
  33. package/lib/control/cameraDepthHandler/camera_depth.d.ts +2 -2
  34. package/lib/control/drawing/LineStringDrawingScene.d.ts +1 -0
  35. package/lib/control/drawing/PolygonDrawingScene.d.ts +14 -14
  36. package/lib/control/elevationProfile/ElevationProfile.d.ts +1 -1
  37. package/lib/control/elevationProfile/ElevationProfileLegend.d.ts +1 -1
  38. package/lib/control/elevationProfile/ElevationProfileScene.d.ts +9 -12
  39. package/lib/control/elevationProfile/ElevationProfileView.d.ts +16 -5
  40. package/lib/control/entityEditor/EntityEditor.d.ts +19 -0
  41. package/lib/control/{geoObjectEditor/GeoObjectEditorDialog.d.ts → entityEditor/EntityEditorDialog.d.ts} +9 -8
  42. package/lib/control/{geoObjectEditor/GeoObjectEditorScene.d.ts → entityEditor/EntityEditorScene.d.ts} +12 -12
  43. package/lib/control/{geoObjectEditor → entityEditor}/colors.d.ts +2 -2
  44. package/lib/control/entityTree/EntityTree.d.ts +46 -0
  45. package/lib/control/entityTree/EntityTreeView.d.ts +24 -0
  46. package/lib/control/heightRuler/HeightRulerScene.d.ts +3 -2
  47. package/lib/control/index.d.ts +5 -3
  48. package/lib/control/ruler/RulerScene.d.ts +8 -8
  49. package/lib/control/selection/SelectionScene.d.ts +6 -6
  50. package/lib/control/timeline/TimelineControl.d.ts +2 -2
  51. package/lib/control/timeline/TimelineModel.d.ts +1 -1
  52. package/lib/control/timeline/TimelineView.d.ts +52 -13
  53. package/lib/control/visibleExtent/segment.d.ts +7 -0
  54. package/lib/ellipsoid/index.d.ts +4 -4
  55. package/lib/entity/Entity.d.ts +114 -100
  56. package/lib/entity/EntityCollection.d.ts +95 -70
  57. package/lib/entity/{BaseBillboard.d.ts → billboard/BaseBillboard.d.ts} +16 -17
  58. package/lib/entity/{BaseBillboardHandler.d.ts → billboard/BaseBillboardHandler.d.ts} +24 -9
  59. package/lib/entity/{Billboard.d.ts → billboard/Billboard.d.ts} +11 -7
  60. package/lib/entity/{BillboardHandler.d.ts → billboard/BillboardHandler.d.ts} +1 -1
  61. package/lib/entity/{GeoObject.d.ts → geoObject/GeoObject.d.ts} +7 -6
  62. package/lib/entity/{GeoObjectHandler.d.ts → geoObject/GeoObjectHandler.d.ts} +29 -11
  63. package/lib/entity/{InstanceData.d.ts → geoObject/InstanceData.d.ts} +18 -13
  64. package/lib/entity/{Geometry.d.ts → geometry/Geometry.d.ts} +10 -10
  65. package/lib/entity/{GeometryHandler.d.ts → geometry/GeometryHandler.d.ts} +7 -7
  66. package/lib/entity/index.d.ts +8 -8
  67. package/lib/entity/{Label.d.ts → label/Label.d.ts} +12 -13
  68. package/lib/entity/{LabelHandler.d.ts → label/LabelHandler.d.ts} +31 -7
  69. package/lib/entity/{LabelWorker.d.ts → label/LabelWorker.d.ts} +3 -3
  70. package/lib/entity/{PointCloud.d.ts → pointCloud/PointCloud.d.ts} +18 -12
  71. package/lib/entity/{PointCloudHandler.d.ts → pointCloud/PointCloudHandler.d.ts} +4 -4
  72. package/lib/entity/polyline/Polyline.d.ts +242 -0
  73. package/lib/entity/polyline/PolylineBatchRenderer.d.ts +443 -0
  74. package/lib/entity/{PolylineHandler.d.ts → polyline/PolylineHandler.d.ts} +19 -7
  75. package/lib/entity/{Ray.d.ts → ray/Ray.d.ts} +27 -9
  76. package/lib/entity/{RayHandler.d.ts → ray/RayHandler.d.ts} +18 -8
  77. package/lib/entity/{Strip.d.ts → strip/Strip.d.ts} +21 -17
  78. package/lib/entity/{StripHandler.d.ts → strip/StripHandler.d.ts} +11 -6
  79. package/lib/index.d.ts +47 -42
  80. package/lib/layer/BaseGeoImage.d.ts +20 -17
  81. package/lib/layer/CanvasTiles.d.ts +14 -12
  82. package/lib/layer/GeoImage.d.ts +1 -1
  83. package/lib/layer/GeoTexture2d.d.ts +2 -2
  84. package/lib/layer/KML.d.ts +19 -18
  85. package/lib/layer/Layer.d.ts +72 -53
  86. package/lib/layer/Vector.d.ts +47 -30
  87. package/lib/layer/WMS.d.ts +1 -1
  88. package/lib/layer/XYZ.d.ts +11 -12
  89. package/lib/layer/index.d.ts +12 -12
  90. package/lib/math/Line2.d.ts +1 -1
  91. package/lib/math/Line3.d.ts +1 -1
  92. package/lib/math/Mat3.d.ts +3 -13
  93. package/lib/math/Mat4.d.ts +16 -10
  94. package/lib/math/Plane.d.ts +1 -1
  95. package/lib/math/Quat.d.ts +14 -12
  96. package/lib/math/Ray.d.ts +4 -3
  97. package/lib/math/Vec2.d.ts +25 -17
  98. package/lib/math/Vec3.d.ts +33 -31
  99. package/lib/math/Vec4.d.ts +1 -1
  100. package/lib/math/coder.d.ts +1 -1
  101. package/lib/math/index.d.ts +13 -14
  102. package/lib/mercator.d.ts +4 -4
  103. package/lib/og.css +1 -1
  104. package/lib/og.es.js +1 -1
  105. package/lib/og.es.js.map +1 -1
  106. package/lib/quadTree/EntityCollectionNode.d.ts +10 -10
  107. package/lib/quadTree/EntityCollectionsTreeStrategy.d.ts +5 -5
  108. package/lib/quadTree/QuadTreeStrategy.d.ts +3 -4
  109. package/lib/quadTree/earth/EarthEntityCollectionNodeLonLat.d.ts +4 -4
  110. package/lib/quadTree/earth/EarthEntityCollectionsTreeStrategy.d.ts +4 -4
  111. package/lib/renderer/AtmosphereDeferredShading.d.ts +12 -0
  112. package/lib/renderer/IDeferredShadingPass.d.ts +8 -0
  113. package/lib/renderer/ITransparencyPass.d.ts +8 -0
  114. package/lib/renderer/PhongDeferredShading.d.ts +16 -0
  115. package/lib/renderer/Renderer.d.ts +166 -99
  116. package/lib/renderer/RendererEvents.d.ts +15 -5
  117. package/lib/renderer/WOITPass.d.ts +14 -0
  118. package/lib/res/fonts/Ephesis-Regular.json +1 -0
  119. package/lib/res/fonts/Ephesis-Regular.png +0 -0
  120. package/lib/res/fonts/Karla-Bold.json +1 -0
  121. package/lib/res/fonts/Karla-Bold.png +0 -0
  122. package/lib/res/fonts/Karla-Italic.json +1 -0
  123. package/lib/res/fonts/Karla-Italic.png +0 -0
  124. package/lib/res/fonts/Karla-Light.json +1 -0
  125. package/lib/res/fonts/Karla-Light.png +0 -0
  126. package/lib/res/fonts/Karla-Medium.json +1 -0
  127. package/lib/res/fonts/Karla-Medium.png +0 -0
  128. package/lib/res/fonts/Roboto-Regular.json +1 -37147
  129. package/lib/res/fonts/Roboto-Regular.png +0 -0
  130. package/lib/res/fonts/arial.json +1 -4321
  131. package/lib/res/fonts/arial.png +0 -0
  132. package/lib/res/night-4326.png +0 -0
  133. package/lib/res/night.png +0 -0
  134. package/lib/scene/AltitudeNearPlaneStrategy.d.ts +17 -0
  135. package/lib/scene/Axes.d.ts +4 -3
  136. package/lib/scene/Planet.d.ts +244 -69
  137. package/lib/scene/{RenderNode.d.ts → Scene.d.ts} +49 -46
  138. package/lib/scene/SkyBox.d.ts +5 -3
  139. package/lib/scene/index.d.ts +2 -2
  140. package/lib/segment/Segment.d.ts +29 -15
  141. package/lib/segment/SegmentLonLat.d.ts +0 -1
  142. package/lib/shadeModeConstants.d.ts +7 -0
  143. package/lib/shaders/applyDeferredDepth.d.ts +2 -0
  144. package/lib/shaders/atmos/atmos.d.ts +3 -3
  145. package/lib/shaders/billboard/billboard.d.ts +4 -3
  146. package/lib/shaders/deferredShading/deferredShading.d.ts +2 -0
  147. package/lib/shaders/deferredShading/deferredShadingAtmos.d.ts +3 -0
  148. package/lib/shaders/depth.d.ts +2 -2
  149. package/lib/shaders/geo_object/geo_object.d.ts +8 -4
  150. package/lib/shaders/label/label.d.ts +4 -4
  151. package/lib/shaders/pointCloud.d.ts +2 -2
  152. package/lib/shaders/polyline/polyline.d.ts +7 -3
  153. package/lib/shaders/ray/ray.d.ts +3 -2
  154. package/lib/shaders/screenFrame.d.ts +2 -2
  155. package/lib/shaders/segment/segment.d.ts +7 -0
  156. package/lib/shaders/skybox.d.ts +2 -2
  157. package/lib/shaders/strip/strip.d.ts +3 -0
  158. package/lib/shaders/tone_mapping/toneMapping.d.ts +2 -2
  159. package/lib/shaders/weightedOITResolve.d.ts +2 -0
  160. package/lib/terrain/BilTerrain.d.ts +1 -1
  161. package/lib/terrain/EmptyTerrain.d.ts +5 -6
  162. package/lib/terrain/GlobusTerrain.d.ts +18 -23
  163. package/lib/terrain/RgbTerrain.d.ts +8 -8
  164. package/lib/terrain/index.d.ts +5 -5
  165. package/lib/tsconfig.tsbuildinfo +1 -1
  166. package/lib/ui/Button.d.ts +7 -5
  167. package/lib/ui/ButtonGroup.d.ts +1 -1
  168. package/lib/ui/Checkbox.d.ts +2 -2
  169. package/lib/ui/Color.d.ts +2 -2
  170. package/lib/ui/Dialog.d.ts +30 -3
  171. package/lib/ui/Input.d.ts +7 -2
  172. package/lib/ui/Slider.d.ts +5 -2
  173. package/lib/ui/ToggleButton.d.ts +2 -2
  174. package/lib/ui/View.d.ts +1 -1
  175. package/lib/ui/icons.d.ts +1 -1
  176. package/lib/ui/index.d.ts +9 -9
  177. package/lib/utils/FontAtlas.d.ts +57 -8
  178. package/lib/utils/GeoImageCreator.d.ts +2 -2
  179. package/lib/utils/ImagesCacheManager.d.ts +3 -3
  180. package/lib/utils/Loader.d.ts +2 -2
  181. package/lib/utils/PlainSegmentWorker.d.ts +2 -2
  182. package/lib/utils/TerrainWorker.d.ts +2 -2
  183. package/lib/utils/TextureAtlas.d.ts +7 -2
  184. package/lib/utils/TextureResourceManager.d.ts +162 -0
  185. package/lib/utils/VectorTileCreator.d.ts +1 -1
  186. package/lib/utils/colorSpace.d.ts +9 -0
  187. package/lib/utils/gltf/gltfParser.d.ts +9 -2
  188. package/lib/utils/gltf/types.d.ts +20 -2
  189. package/lib/utils/shared.d.ts +11 -5
  190. package/lib/utils/textureResourceMeta.d.ts +9 -0
  191. package/lib/webgl/BaseFramebuffer.d.ts +7 -0
  192. package/lib/webgl/Framebuffer.d.ts +9 -6
  193. package/lib/webgl/Handler.d.ts +81 -99
  194. package/lib/webgl/ShaderProgram.d.ts +190 -0
  195. package/lib/webgl/index.d.ts +2 -2
  196. package/lib/webgl/variableHandlers.d.ts +2 -1
  197. package/package.json +77 -76
  198. package/lib/assets/LabelWorker.worker-BT1uJgYn.js.map +0 -1
  199. package/lib/assets/PlainSegmentWorker.worker-CT1cj8jj.js.map +0 -1
  200. package/lib/assets/TerrainWorker.worker-DmikdfB2.js.map +0 -1
  201. package/lib/control/OldMouseNavigation.d.ts +0 -65
  202. package/lib/control/ZoomControl.d.ts +0 -28
  203. package/lib/control/geoObjectEditor/GeoObjectEditor.d.ts +0 -13
  204. package/lib/control/visibleExtent/drawnode.d.ts +0 -7
  205. package/lib/entity/Polyline.d.ts +0 -417
  206. package/lib/light/LightSource.d.ts +0 -36
  207. package/lib/res/fonts/Roboto-Regular.ttf.cfg +0 -1340
  208. package/lib/res/fonts/Roboto-Regular.ttf.png +0 -0
  209. package/lib/res/fonts/arial.ttf.cfg +0 -1570
  210. package/lib/res/fonts/arial.ttf.png +0 -0
  211. package/lib/scene/BaseNode.d.ts +0 -61
  212. package/lib/shaders/drawnode/drawnode.d.ts +0 -8
  213. package/lib/webgl/Program.d.ts +0 -161
  214. package/lib/webgl/ProgramController.d.ts +0 -87
  215. /package/lib/control/{geoObjectEditor → entityEditor}/ArrowEntity.d.ts +0 -0
  216. /package/lib/control/{geoObjectEditor → entityEditor}/AxisTrackEntity.d.ts +0 -0
  217. /package/lib/control/{geoObjectEditor → entityEditor}/MoveAxisEntity.d.ts +0 -0
  218. /package/lib/control/{geoObjectEditor → entityEditor}/MovePlaneEntity.d.ts +0 -0
  219. /package/lib/control/{geoObjectEditor → entityEditor}/RotateEntity.d.ts +0 -0
  220. /package/lib/entity/{LabelWorker.worker.d.ts → label/LabelWorker.worker.d.ts} +0 -0
@@ -1,4321 +1 @@
1
- {
2
- "pages": [
3
- "arial.ttf.png"
4
- ],
5
- "chars": [
6
- {
7
- "id": 1033,
8
- "index": 564,
9
- "char": "Љ",
10
- "width": 56,
11
- "height": 47,
12
- "xoffset": -12,
13
- "yoffset": 12,
14
- "xadvance": 34,
15
- "chnl": 15,
16
- "x": 0,
17
- "y": 0,
18
- "page": 0
19
- },
20
- {
21
- "id": 106,
22
- "index": 77,
23
- "char": "j",
24
- "width": 30,
25
- "height": 54,
26
- "xoffset": -13,
27
- "yoffset": 12,
28
- "xadvance": 7,
29
- "chnl": 15,
30
- "x": 0,
31
- "y": 48,
32
- "page": 0
33
- },
34
- {
35
- "id": 1106,
36
- "index": 635,
37
- "char": "ђ",
38
- "width": 40,
39
- "height": 54,
40
- "xoffset": -12,
41
- "yoffset": 12,
42
- "xadvance": 18,
43
- "chnl": 15,
44
- "x": 0,
45
- "y": 103,
46
- "page": 0
47
- },
48
- {
49
- "id": 1112,
50
- "index": 641,
51
- "char": "ј",
52
- "width": 30,
53
- "height": 54,
54
- "xoffset": -13,
55
- "yoffset": 12,
56
- "xadvance": 7,
57
- "chnl": 15,
58
- "x": 31,
59
- "y": 48,
60
- "page": 0
61
- },
62
- {
63
- "id": 1118,
64
- "index": 646,
65
- "char": "ў",
66
- "width": 39,
67
- "height": 54,
68
- "xoffset": -11,
69
- "yoffset": 12,
70
- "xadvance": 16,
71
- "chnl": 15,
72
- "x": 0,
73
- "y": 158,
74
- "page": 0
75
- },
76
- {
77
- "id": 946,
78
- "index": 533,
79
- "char": "β",
80
- "width": 39,
81
- "height": 54,
82
- "xoffset": -10,
83
- "yoffset": 12,
84
- "xadvance": 18,
85
- "chnl": 15,
86
- "x": 0,
87
- "y": 213,
88
- "page": 0
89
- },
90
- {
91
- "id": 950,
92
- "index": 535,
93
- "char": "ζ",
94
- "width": 37,
95
- "height": 54,
96
- "xoffset": -11,
97
- "yoffset": 12,
98
- "xadvance": 14,
99
- "chnl": 15,
100
- "x": 0,
101
- "y": 268,
102
- "page": 0
103
- },
104
- {
105
- "id": 958,
106
- "index": 543,
107
- "char": "ξ",
108
- "width": 36,
109
- "height": 54,
110
- "xoffset": -11,
111
- "yoffset": 12,
112
- "xadvance": 14,
113
- "chnl": 15,
114
- "x": 0,
115
- "y": 323,
116
- "page": 0
117
- },
118
- {
119
- "id": 40,
120
- "index": 11,
121
- "char": "(",
122
- "width": 32,
123
- "height": 54,
124
- "xoffset": -10,
125
- "yoffset": 12,
126
- "xadvance": 11,
127
- "chnl": 15,
128
- "x": 0,
129
- "y": 378,
130
- "page": 0
131
- },
132
- {
133
- "id": 41,
134
- "index": 12,
135
- "char": ")",
136
- "width": 32,
137
- "height": 54,
138
- "xoffset": -10,
139
- "yoffset": 12,
140
- "xadvance": 11,
141
- "chnl": 15,
142
- "x": 0,
143
- "y": 433,
144
- "page": 0
145
- },
146
- {
147
- "id": 123,
148
- "index": 94,
149
- "char": "{",
150
- "width": 33,
151
- "height": 54,
152
- "xoffset": -11,
153
- "yoffset": 12,
154
- "xadvance": 11,
155
- "chnl": 15,
156
- "x": 0,
157
- "y": 488,
158
- "page": 0
159
- },
160
- {
161
- "id": 64,
162
- "index": 35,
163
- "char": "@",
164
- "width": 54,
165
- "height": 54,
166
- "xoffset": -10,
167
- "yoffset": 12,
168
- "xadvance": 32,
169
- "chnl": 15,
170
- "x": 33,
171
- "y": 378,
172
- "page": 0
173
- },
174
- {
175
- "id": 125,
176
- "index": 96,
177
- "char": "}",
178
- "width": 33,
179
- "height": 54,
180
- "xoffset": -11,
181
- "yoffset": 12,
182
- "xadvance": 11,
183
- "chnl": 15,
184
- "x": 37,
185
- "y": 323,
186
- "page": 0
187
- },
188
- {
189
- "id": 268,
190
- "index": 253,
191
- "char": "Č",
192
- "width": 44,
193
- "height": 53,
194
- "xoffset": -10,
195
- "yoffset": 6,
196
- "xadvance": 23,
197
- "chnl": 15,
198
- "x": 33,
199
- "y": 433,
200
- "page": 0
201
- },
202
- {
203
- "id": 262,
204
- "index": 251,
205
- "char": "Ć",
206
- "width": 44,
207
- "height": 53,
208
- "xoffset": -10,
209
- "yoffset": 6,
210
- "xadvance": 23,
211
- "chnl": 15,
212
- "x": 38,
213
- "y": 268,
214
- "page": 0
215
- },
216
- {
217
- "id": 352,
218
- "index": 226,
219
- "char": "Š",
220
- "width": 42,
221
- "height": 53,
222
- "xoffset": -11,
223
- "yoffset": 6,
224
- "xadvance": 21,
225
- "chnl": 15,
226
- "x": 71,
227
- "y": 322,
228
- "page": 0
229
- },
230
- {
231
- "id": 87,
232
- "index": 58,
233
- "char": "W",
234
- "width": 53,
235
- "height": 47,
236
- "xoffset": -12,
237
- "yoffset": 12,
238
- "xadvance": 30,
239
- "chnl": 15,
240
- "x": 57,
241
- "y": 0,
242
- "page": 0
243
- },
244
- {
245
- "id": 381,
246
- "index": 228,
247
- "char": "Ž",
248
- "width": 42,
249
- "height": 53,
250
- "xoffset": -11,
251
- "yoffset": 6,
252
- "xadvance": 20,
253
- "chnl": 15,
254
- "x": 40,
255
- "y": 158,
256
- "page": 0
257
- },
258
- {
259
- "id": 1168,
260
- "index": 648,
261
- "char": "Ґ",
262
- "width": 36,
263
- "height": 53,
264
- "xoffset": -9,
265
- "yoffset": 6,
266
- "xadvance": 16,
267
- "chnl": 15,
268
- "x": 41,
269
- "y": 103,
270
- "page": 0
271
- },
272
- {
273
- "id": 1046,
274
- "index": 576,
275
- "char": "Ж",
276
- "width": 53,
277
- "height": 47,
278
- "xoffset": -12,
279
- "yoffset": 12,
280
- "xadvance": 30,
281
- "chnl": 15,
282
- "x": 62,
283
- "y": 48,
284
- "page": 0
285
- },
286
- {
287
- "id": 1034,
288
- "index": 565,
289
- "char": "Њ",
290
- "width": 53,
291
- "height": 47,
292
- "xoffset": -9,
293
- "yoffset": 12,
294
- "xadvance": 32,
295
- "chnl": 15,
296
- "x": 111,
297
- "y": 0,
298
- "page": 0
299
- },
300
- {
301
- "id": 1038,
302
- "index": 568,
303
- "char": "Ў",
304
- "width": 44,
305
- "height": 53,
306
- "xoffset": -12,
307
- "yoffset": 7,
308
- "xadvance": 20,
309
- "chnl": 15,
310
- "x": 40,
311
- "y": 212,
312
- "page": 0
313
- },
314
- {
315
- "id": 1062,
316
- "index": 592,
317
- "char": "Ц",
318
- "width": 44,
319
- "height": 53,
320
- "xoffset": -10,
321
- "yoffset": 12,
322
- "xadvance": 24,
323
- "chnl": 15,
324
- "x": 83,
325
- "y": 266,
326
- "page": 0
327
- },
328
- {
329
- "id": 1039,
330
- "index": 569,
331
- "char": "Џ",
332
- "width": 42,
333
- "height": 53,
334
- "xoffset": -9,
335
- "yoffset": 12,
336
- "xadvance": 23,
337
- "chnl": 15,
338
- "x": 78,
339
- "y": 96,
340
- "page": 0
341
- },
342
- {
343
- "id": 1065,
344
- "index": 595,
345
- "char": "Щ",
346
- "width": 50,
347
- "height": 53,
348
- "xoffset": -9,
349
- "yoffset": 12,
350
- "xadvance": 30,
351
- "chnl": 15,
352
- "x": 83,
353
- "y": 150,
354
- "page": 0
355
- },
356
- {
357
- "id": 1092,
358
- "index": 622,
359
- "char": "ф",
360
- "width": 48,
361
- "height": 53,
362
- "xoffset": -11,
363
- "yoffset": 12,
364
- "xadvance": 26,
365
- "chnl": 15,
366
- "x": 85,
367
- "y": 204,
368
- "page": 0
369
- },
370
- {
371
- "id": 194,
372
- "index": 198,
373
- "char": "Â",
374
- "width": 45,
375
- "height": 53,
376
- "xoffset": -12,
377
- "yoffset": 6,
378
- "xadvance": 21,
379
- "chnl": 15,
380
- "x": 121,
381
- "y": 48,
382
- "page": 0
383
- },
384
- {
385
- "id": 202,
386
- "index": 199,
387
- "char": "Ê",
388
- "width": 41,
389
- "height": 53,
390
- "xoffset": -9,
391
- "yoffset": 6,
392
- "xadvance": 21,
393
- "chnl": 15,
394
- "x": 0,
395
- "y": 543,
396
- "page": 0
397
- },
398
- {
399
- "id": 212,
400
- "index": 208,
401
- "char": "Ô",
402
- "width": 46,
403
- "height": 53,
404
- "xoffset": -10,
405
- "yoffset": 6,
406
- "xadvance": 25,
407
- "chnl": 15,
408
- "x": 34,
409
- "y": 487,
410
- "page": 0
411
- },
412
- {
413
- "id": 91,
414
- "index": 62,
415
- "char": "[",
416
- "width": 30,
417
- "height": 53,
418
- "xoffset": -10,
419
- "yoffset": 12,
420
- "xadvance": 9,
421
- "chnl": 15,
422
- "x": 78,
423
- "y": 433,
424
- "page": 0
425
- },
426
- {
427
- "id": 93,
428
- "index": 64,
429
- "char": "]",
430
- "width": 30,
431
- "height": 53,
432
- "xoffset": -11,
433
- "yoffset": 12,
434
- "xadvance": 9,
435
- "chnl": 15,
436
- "x": 88,
437
- "y": 376,
438
- "page": 0
439
- },
440
- {
441
- "id": 162,
442
- "index": 132,
443
- "char": "¢",
444
- "width": 38,
445
- "height": 53,
446
- "xoffset": -10,
447
- "yoffset": 12,
448
- "xadvance": 18,
449
- "chnl": 15,
450
- "x": 114,
451
- "y": 320,
452
- "page": 0
453
- },
454
- {
455
- "id": 1044,
456
- "index": 574,
457
- "char": "Д",
458
- "width": 45,
459
- "height": 52,
460
- "xoffset": -12,
461
- "yoffset": 12,
462
- "xadvance": 22,
463
- "chnl": 15,
464
- "x": 128,
465
- "y": 258,
466
- "page": 0
467
- },
468
- {
469
- "id": 1025,
470
- "index": 556,
471
- "char": "Ё",
472
- "width": 41,
473
- "height": 52,
474
- "xoffset": -9,
475
- "yoffset": 7,
476
- "xadvance": 21,
477
- "chnl": 15,
478
- "x": 134,
479
- "y": 102,
480
- "page": 0
481
- },
482
- {
483
- "id": 1031,
484
- "index": 562,
485
- "char": "Ї",
486
- "width": 33,
487
- "height": 52,
488
- "xoffset": -12,
489
- "yoffset": 7,
490
- "xadvance": 9,
491
- "chnl": 15,
492
- "x": 167,
493
- "y": 0,
494
- "page": 0
495
- },
496
- {
497
- "id": 1049,
498
- "index": 579,
499
- "char": "Й",
500
- "width": 42,
501
- "height": 52,
502
- "xoffset": -9,
503
- "yoffset": 7,
504
- "xadvance": 23,
505
- "chnl": 15,
506
- "x": 134,
507
- "y": 155,
508
- "page": 0
509
- },
510
- {
511
- "id": 1070,
512
- "index": 600,
513
- "char": "Ю",
514
- "width": 52,
515
- "height": 48,
516
- "xoffset": -9,
517
- "yoffset": 12,
518
- "xadvance": 32,
519
- "chnl": 15,
520
- "x": 167,
521
- "y": 53,
522
- "page": 0
523
- },
524
- {
525
- "id": 1113,
526
- "index": 642,
527
- "char": "љ",
528
- "width": 52,
529
- "height": 41,
530
- "xoffset": -12,
531
- "yoffset": 18,
532
- "xadvance": 29,
533
- "chnl": 15,
534
- "x": 134,
535
- "y": 208,
536
- "page": 0
537
- },
538
- {
539
- "id": 910,
540
- "index": 502,
541
- "char": "Ύ",
542
- "width": 52,
543
- "height": 47,
544
- "xoffset": -13,
545
- "yoffset": 12,
546
- "xadvance": 27,
547
- "chnl": 15,
548
- "x": 201,
549
- "y": 0,
550
- "page": 0
551
- },
552
- {
553
- "id": 939,
554
- "index": 527,
555
- "char": "Ϋ",
556
- "width": 45,
557
- "height": 52,
558
- "xoffset": -12,
559
- "yoffset": 7,
560
- "xadvance": 21,
561
- "chnl": 15,
562
- "x": 176,
563
- "y": 102,
564
- "page": 0
565
- },
566
- {
567
- "id": 258,
568
- "index": 258,
569
- "char": "Ă",
570
- "width": 45,
571
- "height": 52,
572
- "xoffset": -12,
573
- "yoffset": 7,
574
- "xadvance": 21,
575
- "chnl": 15,
576
- "x": 177,
577
- "y": 155,
578
- "page": 0
579
- },
580
- {
581
- "id": 36,
582
- "index": 7,
583
- "char": "$",
584
- "width": 39,
585
- "height": 52,
586
- "xoffset": -11,
587
- "yoffset": 10,
588
- "xadvance": 18,
589
- "chnl": 15,
590
- "x": 220,
591
- "y": 48,
592
- "page": 0
593
- },
594
- {
595
- "id": 196,
596
- "index": 98,
597
- "char": "Ä",
598
- "width": 45,
599
- "height": 52,
600
- "xoffset": -12,
601
- "yoffset": 7,
602
- "xadvance": 21,
603
- "chnl": 15,
604
- "x": 222,
605
- "y": 101,
606
- "page": 0
607
- },
608
- {
609
- "id": 214,
610
- "index": 103,
611
- "char": "Ö",
612
- "width": 46,
613
- "height": 52,
614
- "xoffset": -10,
615
- "yoffset": 7,
616
- "xadvance": 25,
617
- "chnl": 15,
618
- "x": 260,
619
- "y": 0,
620
- "page": 0
621
- },
622
- {
623
- "id": 220,
624
- "index": 104,
625
- "char": "Ü",
626
- "width": 42,
627
- "height": 52,
628
- "xoffset": -9,
629
- "yoffset": 7,
630
- "xadvance": 23,
631
- "chnl": 15,
632
- "x": 0,
633
- "y": 597,
634
- "page": 0
635
- },
636
- {
637
- "id": 1026,
638
- "index": 557,
639
- "char": "Ђ",
640
- "width": 50,
641
- "height": 47,
642
- "xoffset": -11,
643
- "yoffset": 12,
644
- "xadvance": 28,
645
- "chnl": 15,
646
- "x": 260,
647
- "y": 53,
648
- "page": 0
649
- },
650
- {
651
- "id": 81,
652
- "index": 52,
653
- "char": "Q",
654
- "width": 46,
655
- "height": 49,
656
- "xoffset": -11,
657
- "yoffset": 12,
658
- "xadvance": 25,
659
- "chnl": 15,
660
- "x": 307,
661
- "y": 0,
662
- "page": 0
663
- },
664
- {
665
- "id": 1035,
666
- "index": 566,
667
- "char": "Ћ",
668
- "width": 49,
669
- "height": 47,
670
- "xoffset": -11,
671
- "yoffset": 12,
672
- "xadvance": 27,
673
- "chnl": 15,
674
- "x": 42,
675
- "y": 541,
676
- "page": 0
677
- },
678
- {
679
- "id": 904,
680
- "index": 498,
681
- "char": "Έ",
682
- "width": 49,
683
- "height": 47,
684
- "xoffset": -13,
685
- "yoffset": 12,
686
- "xadvance": 25,
687
- "chnl": 15,
688
- "x": 81,
689
- "y": 487,
690
- "page": 0
691
- },
692
- {
693
- "id": 905,
694
- "index": 499,
695
- "char": "Ή",
696
- "width": 49,
697
- "height": 47,
698
- "xoffset": -13,
699
- "yoffset": 12,
700
- "xadvance": 27,
701
- "chnl": 15,
702
- "x": 109,
703
- "y": 430,
704
- "page": 0
705
- },
706
- {
707
- "id": 908,
708
- "index": 501,
709
- "char": "Ό",
710
- "width": 49,
711
- "height": 48,
712
- "xoffset": -13,
713
- "yoffset": 12,
714
- "xadvance": 25,
715
- "chnl": 15,
716
- "x": 119,
717
- "y": 374,
718
- "page": 0
719
- },
720
- {
721
- "id": 416,
722
- "index": 1130,
723
- "char": "Ơ",
724
- "width": 49,
725
- "height": 48,
726
- "xoffset": -10,
727
- "yoffset": 12,
728
- "xadvance": 27,
729
- "chnl": 15,
730
- "x": 153,
731
- "y": 311,
732
- "page": 0
733
- },
734
- {
735
- "id": 37,
736
- "index": 8,
737
- "char": "%",
738
- "width": 49,
739
- "height": 48,
740
- "xoffset": -10,
741
- "yoffset": 12,
742
- "xadvance": 28,
743
- "chnl": 15,
744
- "x": 174,
745
- "y": 250,
746
- "page": 0
747
- },
748
- {
749
- "id": 67,
750
- "index": 38,
751
- "char": "C",
752
- "width": 44,
753
- "height": 48,
754
- "xoffset": -10,
755
- "yoffset": 12,
756
- "xadvance": 23,
757
- "chnl": 15,
758
- "x": 223,
759
- "y": 154,
760
- "page": 0
761
- },
762
- {
763
- "id": 71,
764
- "index": 42,
765
- "char": "G",
766
- "width": 45,
767
- "height": 48,
768
- "xoffset": -10,
769
- "yoffset": 12,
770
- "xadvance": 25,
771
- "chnl": 15,
772
- "x": 0,
773
- "y": 650,
774
- "page": 0
775
- },
776
- {
777
- "id": 79,
778
- "index": 50,
779
- "char": "O",
780
- "width": 46,
781
- "height": 48,
782
- "xoffset": -10,
783
- "yoffset": 12,
784
- "xadvance": 25,
785
- "chnl": 15,
786
- "x": 43,
787
- "y": 589,
788
- "page": 0
789
- },
790
- {
791
- "id": 83,
792
- "index": 54,
793
- "char": "S",
794
- "width": 42,
795
- "height": 48,
796
- "xoffset": -11,
797
- "yoffset": 12,
798
- "xadvance": 21,
799
- "chnl": 15,
800
- "x": 0,
801
- "y": 699,
802
- "page": 0
803
- },
804
- {
805
- "id": 103,
806
- "index": 74,
807
- "char": "g",
808
- "width": 39,
809
- "height": 48,
810
- "xoffset": -11,
811
- "yoffset": 18,
812
- "xadvance": 18,
813
- "chnl": 15,
814
- "x": 0,
815
- "y": 748,
816
- "page": 0
817
- },
818
- {
819
- "id": 1028,
820
- "index": 559,
821
- "char": "Є",
822
- "width": 44,
823
- "height": 48,
824
- "xoffset": -10,
825
- "yoffset": 12,
826
- "xadvance": 23,
827
- "chnl": 15,
828
- "x": 0,
829
- "y": 797,
830
- "page": 0
831
- },
832
- {
833
- "id": 1047,
834
- "index": 577,
835
- "char": "З",
836
- "width": 41,
837
- "height": 48,
838
- "xoffset": -11,
839
- "yoffset": 12,
840
- "xadvance": 19,
841
- "chnl": 15,
842
- "x": 40,
843
- "y": 748,
844
- "page": 0
845
- },
846
- {
847
- "id": 1029,
848
- "index": 560,
849
- "char": "Ѕ",
850
- "width": 42,
851
- "height": 48,
852
- "xoffset": -11,
853
- "yoffset": 12,
854
- "xadvance": 21,
855
- "chnl": 15,
856
- "x": 43,
857
- "y": 699,
858
- "page": 0
859
- },
860
- {
861
- "id": 1054,
862
- "index": 584,
863
- "char": "О",
864
- "width": 46,
865
- "height": 48,
866
- "xoffset": -10,
867
- "yoffset": 12,
868
- "xadvance": 25,
869
- "chnl": 15,
870
- "x": 46,
871
- "y": 638,
872
- "page": 0
873
- },
874
- {
875
- "id": 1057,
876
- "index": 587,
877
- "char": "С",
878
- "width": 44,
879
- "height": 48,
880
- "xoffset": -10,
881
- "yoffset": 12,
882
- "xadvance": 23,
883
- "chnl": 15,
884
- "x": 90,
885
- "y": 589,
886
- "page": 0
887
- },
888
- {
889
- "id": 1064,
890
- "index": 594,
891
- "char": "Ш",
892
- "width": 48,
893
- "height": 47,
894
- "xoffset": -9,
895
- "yoffset": 12,
896
- "xadvance": 29,
897
- "chnl": 15,
898
- "x": 92,
899
- "y": 535,
900
- "page": 0
901
- },
902
- {
903
- "id": 1066,
904
- "index": 596,
905
- "char": "Ъ",
906
- "width": 48,
907
- "height": 47,
908
- "xoffset": -12,
909
- "yoffset": 12,
910
- "xadvance": 25,
911
- "chnl": 15,
912
- "x": 131,
913
- "y": 478,
914
- "page": 0
915
- },
916
- {
917
- "id": 1069,
918
- "index": 599,
919
- "char": "Э",
920
- "width": 44,
921
- "height": 48,
922
- "xoffset": -11,
923
- "yoffset": 12,
924
- "xadvance": 23,
925
- "chnl": 15,
926
- "x": 159,
927
- "y": 423,
928
- "page": 0
929
- },
930
- {
931
- "id": 1073,
932
- "index": 603,
933
- "char": "б",
934
- "width": 40,
935
- "height": 48,
936
- "xoffset": -11,
937
- "yoffset": 12,
938
- "xadvance": 18,
939
- "chnl": 15,
940
- "x": 169,
941
- "y": 360,
942
- "page": 0
943
- },
944
- {
945
- "id": 920,
946
- "index": 300,
947
- "char": "Θ",
948
- "width": 46,
949
- "height": 48,
950
- "xoffset": -10,
951
- "yoffset": 12,
952
- "xadvance": 25,
953
- "chnl": 15,
954
- "x": 203,
955
- "y": 299,
956
- "page": 0
957
- },
958
- {
959
- "id": 927,
960
- "index": 517,
961
- "char": "Ο",
962
- "width": 46,
963
- "height": 48,
964
- "xoffset": -10,
965
- "yoffset": 12,
966
- "xadvance": 25,
967
- "chnl": 15,
968
- "x": 224,
969
- "y": 203,
970
- "page": 0
971
- },
972
- {
973
- "id": 934,
974
- "index": 301,
975
- "char": "Φ",
976
- "width": 47,
977
- "height": 48,
978
- "xoffset": -11,
979
- "yoffset": 11,
980
- "xadvance": 26,
981
- "chnl": 15,
982
- "x": 268,
983
- "y": 101,
984
- "page": 0
985
- },
986
- {
987
- "id": 952,
988
- "index": 537,
989
- "char": "θ",
990
- "width": 39,
991
- "height": 48,
992
- "xoffset": -11,
993
- "yoffset": 12,
994
- "xadvance": 18,
995
- "chnl": 15,
996
- "x": 311,
997
- "y": 50,
998
- "page": 0
999
- },
1000
- {
1001
- "id": 912,
1002
- "index": 504,
1003
- "char": "ΐ",
1004
- "width": 35,
1005
- "height": 48,
1006
- "xoffset": -14,
1007
- "yoffset": 11,
1008
- "xadvance": 7,
1009
- "chnl": 15,
1010
- "x": 268,
1011
- "y": 150,
1012
- "page": 0
1013
- },
1014
- {
1015
- "id": 944,
1016
- "index": 532,
1017
- "char": "ΰ",
1018
- "width": 37,
1019
- "height": 48,
1020
- "xoffset": -10,
1021
- "yoffset": 11,
1022
- "xadvance": 18,
1023
- "chnl": 15,
1024
- "x": 0,
1025
- "y": 846,
1026
- "page": 0
1027
- },
1028
- {
1029
- "id": 911,
1030
- "index": 503,
1031
- "char": "Ώ",
1032
- "width": 48,
1033
- "height": 47,
1034
- "xoffset": -13,
1035
- "yoffset": 12,
1036
- "xadvance": 24,
1037
- "chnl": 15,
1038
- "x": 0,
1039
- "y": 895,
1040
- "page": 0
1041
- },
1042
- {
1043
- "id": 431,
1044
- "index": 1132,
1045
- "char": "Ư",
1046
- "width": 48,
1047
- "height": 47,
1048
- "xoffset": -9,
1049
- "yoffset": 12,
1050
- "xadvance": 27,
1051
- "chnl": 15,
1052
- "x": 38,
1053
- "y": 846,
1054
- "page": 0
1055
- },
1056
- {
1057
- "id": 35,
1058
- "index": 6,
1059
- "char": "#",
1060
- "width": 41,
1061
- "height": 48,
1062
- "xoffset": -12,
1063
- "yoffset": 12,
1064
- "xadvance": 18,
1065
- "chnl": 15,
1066
- "x": 45,
1067
- "y": 797,
1068
- "page": 0
1069
- },
1070
- {
1071
- "id": 47,
1072
- "index": 18,
1073
- "char": "/",
1074
- "width": 33,
1075
- "height": 48,
1076
- "xoffset": -12,
1077
- "yoffset": 12,
1078
- "xadvance": 9,
1079
- "chnl": 15,
1080
- "x": 82,
1081
- "y": 748,
1082
- "page": 0
1083
- },
1084
- {
1085
- "id": 38,
1086
- "index": 9,
1087
- "char": "&",
1088
- "width": 43,
1089
- "height": 48,
1090
- "xoffset": -11,
1091
- "yoffset": 12,
1092
- "xadvance": 21,
1093
- "chnl": 15,
1094
- "x": 86,
1095
- "y": 687,
1096
- "page": 0
1097
- },
1098
- {
1099
- "id": 92,
1100
- "index": 63,
1101
- "char": "\\",
1102
- "width": 33,
1103
- "height": 48,
1104
- "xoffset": -12,
1105
- "yoffset": 12,
1106
- "xadvance": 9,
1107
- "chnl": 15,
1108
- "x": 93,
1109
- "y": 638,
1110
- "page": 0
1111
- },
1112
- {
1113
- "id": 174,
1114
- "index": 138,
1115
- "char": "®",
1116
- "width": 48,
1117
- "height": 48,
1118
- "xoffset": -12,
1119
- "yoffset": 12,
1120
- "xadvance": 24,
1121
- "chnl": 15,
1122
- "x": 127,
1123
- "y": 638,
1124
- "page": 0
1125
- },
1126
- {
1127
- "id": 169,
1128
- "index": 139,
1129
- "char": "©",
1130
- "width": 48,
1131
- "height": 48,
1132
- "xoffset": -12,
1133
- "yoffset": 12,
1134
- "xadvance": 24,
1135
- "chnl": 15,
1136
- "x": 135,
1137
- "y": 583,
1138
- "page": 0
1139
- },
1140
- {
1141
- "id": 8364,
1142
- "index": 188,
1143
- "char": "€",
1144
- "width": 42,
1145
- "height": 48,
1146
- "xoffset": -12,
1147
- "yoffset": 12,
1148
- "xadvance": 18,
1149
- "chnl": 15,
1150
- "x": 141,
1151
- "y": 526,
1152
- "page": 0
1153
- },
1154
- {
1155
- "id": 163,
1156
- "index": 133,
1157
- "char": "£",
1158
- "width": 40,
1159
- "height": 48,
1160
- "xoffset": -12,
1161
- "yoffset": 12,
1162
- "xadvance": 18,
1163
- "chnl": 15,
1164
- "x": 180,
1165
- "y": 472,
1166
- "page": 0
1167
- },
1168
- {
1169
- "id": 223,
1170
- "index": 137,
1171
- "char": "ß",
1172
- "width": 40,
1173
- "height": 48,
1174
- "xoffset": -10,
1175
- "yoffset": 12,
1176
- "xadvance": 20,
1177
- "chnl": 15,
1178
- "x": 204,
1179
- "y": 409,
1180
- "page": 0
1181
- },
1182
- {
1183
- "id": 65,
1184
- "index": 36,
1185
- "char": "A",
1186
- "width": 45,
1187
- "height": 47,
1188
- "xoffset": -12,
1189
- "yoffset": 12,
1190
- "xadvance": 21,
1191
- "chnl": 15,
1192
- "x": 210,
1193
- "y": 348,
1194
- "page": 0
1195
- },
1196
- {
1197
- "id": 66,
1198
- "index": 37,
1199
- "char": "B",
1200
- "width": 41,
1201
- "height": 47,
1202
- "xoffset": -10,
1203
- "yoffset": 12,
1204
- "xadvance": 21,
1205
- "chnl": 15,
1206
- "x": 0,
1207
- "y": 943,
1208
- "page": 0
1209
- },
1210
- {
1211
- "id": 68,
1212
- "index": 39,
1213
- "char": "D",
1214
- "width": 43,
1215
- "height": 47,
1216
- "xoffset": -10,
1217
- "yoffset": 12,
1218
- "xadvance": 23,
1219
- "chnl": 15,
1220
- "x": 42,
1221
- "y": 943,
1222
- "page": 0
1223
- },
1224
- {
1225
- "id": 272,
1226
- "index": 264,
1227
- "char": "Đ",
1228
- "width": 45,
1229
- "height": 47,
1230
- "xoffset": -12,
1231
- "yoffset": 12,
1232
- "xadvance": 23,
1233
- "chnl": 15,
1234
- "x": 49,
1235
- "y": 894,
1236
- "page": 0
1237
- },
1238
- {
1239
- "id": 69,
1240
- "index": 40,
1241
- "char": "E",
1242
- "width": 41,
1243
- "height": 47,
1244
- "xoffset": -9,
1245
- "yoffset": 12,
1246
- "xadvance": 21,
1247
- "chnl": 15,
1248
- "x": 86,
1249
- "y": 942,
1250
- "page": 0
1251
- },
1252
- {
1253
- "id": 70,
1254
- "index": 41,
1255
- "char": "F",
1256
- "width": 39,
1257
- "height": 47,
1258
- "xoffset": -9,
1259
- "yoffset": 12,
1260
- "xadvance": 20,
1261
- "chnl": 15,
1262
- "x": 250,
1263
- "y": 252,
1264
- "page": 0
1265
- },
1266
- {
1267
- "id": 72,
1268
- "index": 43,
1269
- "char": "H",
1270
- "width": 42,
1271
- "height": 47,
1272
- "xoffset": -9,
1273
- "yoffset": 12,
1274
- "xadvance": 23,
1275
- "chnl": 15,
1276
- "x": 250,
1277
- "y": 300,
1278
- "page": 0
1279
- },
1280
- {
1281
- "id": 73,
1282
- "index": 44,
1283
- "char": "I",
1284
- "width": 27,
1285
- "height": 47,
1286
- "xoffset": -9,
1287
- "yoffset": 12,
1288
- "xadvance": 9,
1289
- "chnl": 15,
1290
- "x": 271,
1291
- "y": 199,
1292
- "page": 0
1293
- },
1294
- {
1295
- "id": 74,
1296
- "index": 45,
1297
- "char": "J",
1298
- "width": 37,
1299
- "height": 47,
1300
- "xoffset": -11,
1301
- "yoffset": 12,
1302
- "xadvance": 16,
1303
- "chnl": 15,
1304
- "x": 290,
1305
- "y": 247,
1306
- "page": 0
1307
- },
1308
- {
1309
- "id": 75,
1310
- "index": 46,
1311
- "char": "K",
1312
- "width": 43,
1313
- "height": 47,
1314
- "xoffset": -10,
1315
- "yoffset": 12,
1316
- "xadvance": 21,
1317
- "chnl": 15,
1318
- "x": 299,
1319
- "y": 199,
1320
- "page": 0
1321
- },
1322
- {
1323
- "id": 76,
1324
- "index": 47,
1325
- "char": "L",
1326
- "width": 38,
1327
- "height": 47,
1328
- "xoffset": -10,
1329
- "yoffset": 12,
1330
- "xadvance": 18,
1331
- "chnl": 15,
1332
- "x": 304,
1333
- "y": 150,
1334
- "page": 0
1335
- },
1336
- {
1337
- "id": 77,
1338
- "index": 48,
1339
- "char": "M",
1340
- "width": 46,
1341
- "height": 47,
1342
- "xoffset": -10,
1343
- "yoffset": 12,
1344
- "xadvance": 27,
1345
- "chnl": 15,
1346
- "x": 316,
1347
- "y": 99,
1348
- "page": 0
1349
- },
1350
- {
1351
- "id": 78,
1352
- "index": 49,
1353
- "char": "N",
1354
- "width": 42,
1355
- "height": 47,
1356
- "xoffset": -10,
1357
- "yoffset": 12,
1358
- "xadvance": 23,
1359
- "chnl": 15,
1360
- "x": 351,
1361
- "y": 50,
1362
- "page": 0
1363
- },
1364
- {
1365
- "id": 80,
1366
- "index": 51,
1367
- "char": "P",
1368
- "width": 41,
1369
- "height": 47,
1370
- "xoffset": -10,
1371
- "yoffset": 12,
1372
- "xadvance": 21,
1373
- "chnl": 15,
1374
- "x": 354,
1375
- "y": 0,
1376
- "page": 0
1377
- },
1378
- {
1379
- "id": 82,
1380
- "index": 53,
1381
- "char": "R",
1382
- "width": 44,
1383
- "height": 47,
1384
- "xoffset": -9,
1385
- "yoffset": 12,
1386
- "xadvance": 23,
1387
- "chnl": 15,
1388
- "x": 87,
1389
- "y": 797,
1390
- "page": 0
1391
- },
1392
- {
1393
- "id": 84,
1394
- "index": 55,
1395
- "char": "T",
1396
- "width": 42,
1397
- "height": 47,
1398
- "xoffset": -11,
1399
- "yoffset": 12,
1400
- "xadvance": 20,
1401
- "chnl": 15,
1402
- "x": 87,
1403
- "y": 845,
1404
- "page": 0
1405
- },
1406
- {
1407
- "id": 85,
1408
- "index": 56,
1409
- "char": "U",
1410
- "width": 42,
1411
- "height": 47,
1412
- "xoffset": -9,
1413
- "yoffset": 12,
1414
- "xadvance": 23,
1415
- "chnl": 15,
1416
- "x": 95,
1417
- "y": 893,
1418
- "page": 0
1419
- },
1420
- {
1421
- "id": 86,
1422
- "index": 57,
1423
- "char": "V",
1424
- "width": 45,
1425
- "height": 47,
1426
- "xoffset": -12,
1427
- "yoffset": 12,
1428
- "xadvance": 21,
1429
- "chnl": 15,
1430
- "x": 130,
1431
- "y": 845,
1432
- "page": 0
1433
- },
1434
- {
1435
- "id": 88,
1436
- "index": 59,
1437
- "char": "X",
1438
- "width": 45,
1439
- "height": 47,
1440
- "xoffset": -12,
1441
- "yoffset": 12,
1442
- "xadvance": 21,
1443
- "chnl": 15,
1444
- "x": 116,
1445
- "y": 736,
1446
- "page": 0
1447
- },
1448
- {
1449
- "id": 89,
1450
- "index": 60,
1451
- "char": "Y",
1452
- "width": 45,
1453
- "height": 47,
1454
- "xoffset": -12,
1455
- "yoffset": 12,
1456
- "xadvance": 21,
1457
- "chnl": 15,
1458
- "x": 130,
1459
- "y": 687,
1460
- "page": 0
1461
- },
1462
- {
1463
- "id": 90,
1464
- "index": 61,
1465
- "char": "Z",
1466
- "width": 42,
1467
- "height": 47,
1468
- "xoffset": -11,
1469
- "yoffset": 12,
1470
- "xadvance": 20,
1471
- "chnl": 15,
1472
- "x": 132,
1473
- "y": 784,
1474
- "page": 0
1475
- },
1476
- {
1477
- "id": 98,
1478
- "index": 69,
1479
- "char": "b",
1480
- "width": 38,
1481
- "height": 47,
1482
- "xoffset": -10,
1483
- "yoffset": 12,
1484
- "xadvance": 18,
1485
- "chnl": 15,
1486
- "x": 162,
1487
- "y": 735,
1488
- "page": 0
1489
- },
1490
- {
1491
- "id": 269,
1492
- "index": 254,
1493
- "char": "č",
1494
- "width": 38,
1495
- "height": 47,
1496
- "xoffset": -11,
1497
- "yoffset": 12,
1498
- "xadvance": 16,
1499
- "chnl": 15,
1500
- "x": 175,
1501
- "y": 783,
1502
- "page": 0
1503
- },
1504
- {
1505
- "id": 263,
1506
- "index": 252,
1507
- "char": "ć",
1508
- "width": 38,
1509
- "height": 47,
1510
- "xoffset": -11,
1511
- "yoffset": 12,
1512
- "xadvance": 16,
1513
- "chnl": 15,
1514
- "x": 128,
1515
- "y": 941,
1516
- "page": 0
1517
- },
1518
- {
1519
- "id": 100,
1520
- "index": 71,
1521
- "char": "d",
1522
- "width": 38,
1523
- "height": 47,
1524
- "xoffset": -11,
1525
- "yoffset": 12,
1526
- "xadvance": 18,
1527
- "chnl": 15,
1528
- "x": 138,
1529
- "y": 893,
1530
- "page": 0
1531
- },
1532
- {
1533
- "id": 273,
1534
- "index": 255,
1535
- "char": "đ",
1536
- "width": 41,
1537
- "height": 47,
1538
- "xoffset": -11,
1539
- "yoffset": 12,
1540
- "xadvance": 18,
1541
- "chnl": 15,
1542
- "x": 176,
1543
- "y": 831,
1544
- "page": 0
1545
- },
1546
- {
1547
- "id": 102,
1548
- "index": 73,
1549
- "char": "f",
1550
- "width": 34,
1551
- "height": 47,
1552
- "xoffset": -12,
1553
- "yoffset": 12,
1554
- "xadvance": 9,
1555
- "chnl": 15,
1556
- "x": 167,
1557
- "y": 941,
1558
- "page": 0
1559
- },
1560
- {
1561
- "id": 104,
1562
- "index": 75,
1563
- "char": "h",
1564
- "width": 38,
1565
- "height": 47,
1566
- "xoffset": -10,
1567
- "yoffset": 12,
1568
- "xadvance": 18,
1569
- "chnl": 15,
1570
- "x": 177,
1571
- "y": 879,
1572
- "page": 0
1573
- },
1574
- {
1575
- "id": 105,
1576
- "index": 76,
1577
- "char": "i",
1578
- "width": 27,
1579
- "height": 47,
1580
- "xoffset": -10,
1581
- "yoffset": 12,
1582
- "xadvance": 7,
1583
- "chnl": 15,
1584
- "x": 202,
1585
- "y": 927,
1586
- "page": 0
1587
- },
1588
- {
1589
- "id": 107,
1590
- "index": 78,
1591
- "char": "k",
1592
- "width": 38,
1593
- "height": 47,
1594
- "xoffset": -10,
1595
- "yoffset": 12,
1596
- "xadvance": 16,
1597
- "chnl": 15,
1598
- "x": 216,
1599
- "y": 879,
1600
- "page": 0
1601
- },
1602
- {
1603
- "id": 108,
1604
- "index": 79,
1605
- "char": "l",
1606
- "width": 27,
1607
- "height": 47,
1608
- "xoffset": -10,
1609
- "yoffset": 12,
1610
- "xadvance": 7,
1611
- "chnl": 15,
1612
- "x": 202,
1613
- "y": 975,
1614
- "page": 0
1615
- },
1616
- {
1617
- "id": 112,
1618
- "index": 83,
1619
- "char": "p",
1620
- "width": 38,
1621
- "height": 47,
1622
- "xoffset": -10,
1623
- "yoffset": 18,
1624
- "xadvance": 18,
1625
- "chnl": 15,
1626
- "x": 230,
1627
- "y": 927,
1628
- "page": 0
1629
- },
1630
- {
1631
- "id": 113,
1632
- "index": 84,
1633
- "char": "q",
1634
- "width": 38,
1635
- "height": 47,
1636
- "xoffset": -11,
1637
- "yoffset": 18,
1638
- "xadvance": 18,
1639
- "chnl": 15,
1640
- "x": 230,
1641
- "y": 975,
1642
- "page": 0
1643
- },
1644
- {
1645
- "id": 353,
1646
- "index": 227,
1647
- "char": "š",
1648
- "width": 38,
1649
- "height": 47,
1650
- "xoffset": -11,
1651
- "yoffset": 12,
1652
- "xadvance": 16,
1653
- "chnl": 15,
1654
- "x": 176,
1655
- "y": 632,
1656
- "page": 0
1657
- },
1658
- {
1659
- "id": 116,
1660
- "index": 87,
1661
- "char": "t",
1662
- "width": 32,
1663
- "height": 47,
1664
- "xoffset": -11,
1665
- "yoffset": 13,
1666
- "xadvance": 9,
1667
- "chnl": 15,
1668
- "x": 176,
1669
- "y": 680,
1670
- "page": 0
1671
- },
1672
- {
1673
- "id": 119,
1674
- "index": 90,
1675
- "char": "w",
1676
- "width": 47,
1677
- "height": 41,
1678
- "xoffset": -12,
1679
- "yoffset": 18,
1680
- "xadvance": 23,
1681
- "chnl": 15,
1682
- "x": 201,
1683
- "y": 728,
1684
- "page": 0
1685
- },
1686
- {
1687
- "id": 121,
1688
- "index": 92,
1689
- "char": "y",
1690
- "width": 39,
1691
- "height": 47,
1692
- "xoffset": -11,
1693
- "yoffset": 18,
1694
- "xadvance": 16,
1695
- "chnl": 15,
1696
- "x": 209,
1697
- "y": 680,
1698
- "page": 0
1699
- },
1700
- {
1701
- "id": 382,
1702
- "index": 229,
1703
- "char": "ž",
1704
- "width": 39,
1705
- "height": 47,
1706
- "xoffset": -11,
1707
- "yoffset": 12,
1708
- "xadvance": 16,
1709
- "chnl": 15,
1710
- "x": 214,
1711
- "y": 770,
1712
- "page": 0
1713
- },
1714
- {
1715
- "id": 1040,
1716
- "index": 570,
1717
- "char": "А",
1718
- "width": 45,
1719
- "height": 47,
1720
- "xoffset": -12,
1721
- "yoffset": 12,
1722
- "xadvance": 21,
1723
- "chnl": 15,
1724
- "x": 218,
1725
- "y": 818,
1726
- "page": 0
1727
- },
1728
- {
1729
- "id": 1041,
1730
- "index": 571,
1731
- "char": "Б",
1732
- "width": 41,
1733
- "height": 47,
1734
- "xoffset": -9,
1735
- "yoffset": 12,
1736
- "xadvance": 21,
1737
- "chnl": 15,
1738
- "x": 255,
1739
- "y": 866,
1740
- "page": 0
1741
- },
1742
- {
1743
- "id": 1042,
1744
- "index": 572,
1745
- "char": "В",
1746
- "width": 41,
1747
- "height": 47,
1748
- "xoffset": -10,
1749
- "yoffset": 12,
1750
- "xadvance": 21,
1751
- "chnl": 15,
1752
- "x": 184,
1753
- "y": 521,
1754
- "page": 0
1755
- },
1756
- {
1757
- "id": 1043,
1758
- "index": 573,
1759
- "char": "Г",
1760
- "width": 39,
1761
- "height": 47,
1762
- "xoffset": -9,
1763
- "yoffset": 12,
1764
- "xadvance": 17,
1765
- "chnl": 15,
1766
- "x": 184,
1767
- "y": 569,
1768
- "page": 0
1769
- },
1770
- {
1771
- "id": 1045,
1772
- "index": 575,
1773
- "char": "Е",
1774
- "width": 41,
1775
- "height": 47,
1776
- "xoffset": -9,
1777
- "yoffset": 12,
1778
- "xadvance": 21,
1779
- "chnl": 15,
1780
- "x": 221,
1781
- "y": 458,
1782
- "page": 0
1783
- },
1784
- {
1785
- "id": 1048,
1786
- "index": 578,
1787
- "char": "И",
1788
- "width": 42,
1789
- "height": 47,
1790
- "xoffset": -9,
1791
- "yoffset": 12,
1792
- "xadvance": 23,
1793
- "chnl": 15,
1794
- "x": 245,
1795
- "y": 396,
1796
- "page": 0
1797
- },
1798
- {
1799
- "id": 1030,
1800
- "index": 561,
1801
- "char": "І",
1802
- "width": 27,
1803
- "height": 47,
1804
- "xoffset": -9,
1805
- "yoffset": 12,
1806
- "xadvance": 9,
1807
- "chnl": 15,
1808
- "x": 256,
1809
- "y": 348,
1810
- "page": 0
1811
- },
1812
- {
1813
- "id": 1032,
1814
- "index": 563,
1815
- "char": "Ј",
1816
- "width": 37,
1817
- "height": 47,
1818
- "xoffset": -11,
1819
- "yoffset": 12,
1820
- "xadvance": 16,
1821
- "chnl": 15,
1822
- "x": 284,
1823
- "y": 348,
1824
- "page": 0
1825
- },
1826
- {
1827
- "id": 1050,
1828
- "index": 580,
1829
- "char": "К",
1830
- "width": 40,
1831
- "height": 47,
1832
- "xoffset": -9,
1833
- "yoffset": 12,
1834
- "xadvance": 19,
1835
- "chnl": 15,
1836
- "x": 293,
1837
- "y": 295,
1838
- "page": 0
1839
- },
1840
- {
1841
- "id": 1051,
1842
- "index": 581,
1843
- "char": "Л",
1844
- "width": 42,
1845
- "height": 47,
1846
- "xoffset": -12,
1847
- "yoffset": 12,
1848
- "xadvance": 21,
1849
- "chnl": 15,
1850
- "x": 328,
1851
- "y": 247,
1852
- "page": 0
1853
- },
1854
- {
1855
- "id": 1052,
1856
- "index": 582,
1857
- "char": "М",
1858
- "width": 46,
1859
- "height": 47,
1860
- "xoffset": -10,
1861
- "yoffset": 12,
1862
- "xadvance": 27,
1863
- "chnl": 15,
1864
- "x": 215,
1865
- "y": 617,
1866
- "page": 0
1867
- },
1868
- {
1869
- "id": 1053,
1870
- "index": 583,
1871
- "char": "Н",
1872
- "width": 42,
1873
- "height": 47,
1874
- "xoffset": -9,
1875
- "yoffset": 12,
1876
- "xadvance": 23,
1877
- "chnl": 15,
1878
- "x": 224,
1879
- "y": 569,
1880
- "page": 0
1881
- },
1882
- {
1883
- "id": 1055,
1884
- "index": 585,
1885
- "char": "П",
1886
- "width": 42,
1887
- "height": 47,
1888
- "xoffset": -9,
1889
- "yoffset": 12,
1890
- "xadvance": 23,
1891
- "chnl": 15,
1892
- "x": 226,
1893
- "y": 506,
1894
- "page": 0
1895
- },
1896
- {
1897
- "id": 1056,
1898
- "index": 586,
1899
- "char": "Р",
1900
- "width": 41,
1901
- "height": 47,
1902
- "xoffset": -10,
1903
- "yoffset": 12,
1904
- "xadvance": 21,
1905
- "chnl": 15,
1906
- "x": 263,
1907
- "y": 444,
1908
- "page": 0
1909
- },
1910
- {
1911
- "id": 1058,
1912
- "index": 588,
1913
- "char": "Т",
1914
- "width": 42,
1915
- "height": 47,
1916
- "xoffset": -11,
1917
- "yoffset": 12,
1918
- "xadvance": 20,
1919
- "chnl": 15,
1920
- "x": 288,
1921
- "y": 396,
1922
- "page": 0
1923
- },
1924
- {
1925
- "id": 1059,
1926
- "index": 589,
1927
- "char": "У",
1928
- "width": 44,
1929
- "height": 47,
1930
- "xoffset": -12,
1931
- "yoffset": 12,
1932
- "xadvance": 20,
1933
- "chnl": 15,
1934
- "x": 322,
1935
- "y": 343,
1936
- "page": 0
1937
- },
1938
- {
1939
- "id": 1060,
1940
- "index": 590,
1941
- "char": "Ф",
1942
- "width": 46,
1943
- "height": 47,
1944
- "xoffset": -11,
1945
- "yoffset": 12,
1946
- "xadvance": 24,
1947
- "chnl": 15,
1948
- "x": 334,
1949
- "y": 295,
1950
- "page": 0
1951
- },
1952
- {
1953
- "id": 1061,
1954
- "index": 591,
1955
- "char": "Х",
1956
- "width": 45,
1957
- "height": 47,
1958
- "xoffset": -12,
1959
- "yoffset": 12,
1960
- "xadvance": 21,
1961
- "chnl": 15,
1962
- "x": 343,
1963
- "y": 147,
1964
- "page": 0
1965
- },
1966
- {
1967
- "id": 1063,
1968
- "index": 593,
1969
- "char": "Ч",
1970
- "width": 41,
1971
- "height": 47,
1972
- "xoffset": -11,
1973
- "yoffset": 12,
1974
- "xadvance": 21,
1975
- "chnl": 15,
1976
- "x": 363,
1977
- "y": 98,
1978
- "page": 0
1979
- },
1980
- {
1981
- "id": 1067,
1982
- "index": 597,
1983
- "char": "Ы",
1984
- "width": 47,
1985
- "height": 47,
1986
- "xoffset": -9,
1987
- "yoffset": 12,
1988
- "xadvance": 28,
1989
- "chnl": 15,
1990
- "x": 394,
1991
- "y": 48,
1992
- "page": 0
1993
- },
1994
- {
1995
- "id": 1068,
1996
- "index": 598,
1997
- "char": "Ь",
1998
- "width": 41,
1999
- "height": 47,
2000
- "xoffset": -9,
2001
- "yoffset": 12,
2002
- "xadvance": 21,
2003
- "chnl": 15,
2004
- "x": 396,
2005
- "y": 0,
2006
- "page": 0
2007
- },
2008
- {
2009
- "id": 1071,
2010
- "index": 601,
2011
- "char": "Я",
2012
- "width": 44,
2013
- "height": 47,
2014
- "xoffset": -12,
2015
- "yoffset": 12,
2016
- "xadvance": 23,
2017
- "chnl": 15,
2018
- "x": 438,
2019
- "y": 0,
2020
- "page": 0
2021
- },
2022
- {
2023
- "id": 1169,
2024
- "index": 649,
2025
- "char": "ґ",
2026
- "width": 34,
2027
- "height": 47,
2028
- "xoffset": -10,
2029
- "yoffset": 12,
2030
- "xadvance": 13,
2031
- "chnl": 15,
2032
- "x": 343,
2033
- "y": 195,
2034
- "page": 0
2035
- },
2036
- {
2037
- "id": 1105,
2038
- "index": 634,
2039
- "char": "ё",
2040
- "width": 39,
2041
- "height": 47,
2042
- "xoffset": -11,
2043
- "yoffset": 12,
2044
- "xadvance": 18,
2045
- "chnl": 15,
2046
- "x": 371,
2047
- "y": 243,
2048
- "page": 0
2049
- },
2050
- {
2051
- "id": 1110,
2052
- "index": 639,
2053
- "char": "і",
2054
- "width": 27,
2055
- "height": 47,
2056
- "xoffset": -10,
2057
- "yoffset": 12,
2058
- "xadvance": 7,
2059
- "chnl": 15,
2060
- "x": 378,
2061
- "y": 195,
2062
- "page": 0
2063
- },
2064
- {
2065
- "id": 1111,
2066
- "index": 640,
2067
- "char": "ї",
2068
- "width": 33,
2069
- "height": 47,
2070
- "xoffset": -12,
2071
- "yoffset": 12,
2072
- "xadvance": 9,
2073
- "chnl": 15,
2074
- "x": 389,
2075
- "y": 146,
2076
- "page": 0
2077
- },
2078
- {
2079
- "id": 1081,
2080
- "index": 611,
2081
- "char": "й",
2082
- "width": 38,
2083
- "height": 47,
2084
- "xoffset": -10,
2085
- "yoffset": 12,
2086
- "xadvance": 18,
2087
- "chnl": 15,
2088
- "x": 406,
2089
- "y": 194,
2090
- "page": 0
2091
- },
2092
- {
2093
- "id": 1114,
2094
- "index": 643,
2095
- "char": "њ",
2096
- "width": 47,
2097
- "height": 41,
2098
- "xoffset": -10,
2099
- "yoffset": 18,
2100
- "xadvance": 26,
2101
- "chnl": 15,
2102
- "x": 405,
2103
- "y": 96,
2104
- "page": 0
2105
- },
2106
- {
2107
- "id": 1088,
2108
- "index": 618,
2109
- "char": "р",
2110
- "width": 38,
2111
- "height": 47,
2112
- "xoffset": -10,
2113
- "yoffset": 18,
2114
- "xadvance": 18,
2115
- "chnl": 15,
2116
- "x": 442,
2117
- "y": 48,
2118
- "page": 0
2119
- },
2120
- {
2121
- "id": 1115,
2122
- "index": 644,
2123
- "char": "ћ",
2124
- "width": 40,
2125
- "height": 47,
2126
- "xoffset": -12,
2127
- "yoffset": 12,
2128
- "xadvance": 18,
2129
- "chnl": 15,
2130
- "x": 423,
2131
- "y": 138,
2132
- "page": 0
2133
- },
2134
- {
2135
- "id": 1091,
2136
- "index": 621,
2137
- "char": "у",
2138
- "width": 39,
2139
- "height": 47,
2140
- "xoffset": -11,
2141
- "yoffset": 18,
2142
- "xadvance": 16,
2143
- "chnl": 15,
2144
- "x": 249,
2145
- "y": 665,
2146
- "page": 0
2147
- },
2148
- {
2149
- "id": 1097,
2150
- "index": 627,
2151
- "char": "щ",
2152
- "width": 47,
2153
- "height": 45,
2154
- "xoffset": -10,
2155
- "yoffset": 18,
2156
- "xadvance": 26,
2157
- "chnl": 15,
2158
- "x": 262,
2159
- "y": 617,
2160
- "page": 0
2161
- },
2162
- {
2163
- "id": 913,
2164
- "index": 505,
2165
- "char": "Α",
2166
- "width": 45,
2167
- "height": 47,
2168
- "xoffset": -12,
2169
- "yoffset": 12,
2170
- "xadvance": 21,
2171
- "chnl": 15,
2172
- "x": 249,
2173
- "y": 713,
2174
- "page": 0
2175
- },
2176
- {
2177
- "id": 914,
2178
- "index": 506,
2179
- "char": "Β",
2180
- "width": 41,
2181
- "height": 47,
2182
- "xoffset": -10,
2183
- "yoffset": 12,
2184
- "xadvance": 21,
2185
- "chnl": 15,
2186
- "x": 289,
2187
- "y": 663,
2188
- "page": 0
2189
- },
2190
- {
2191
- "id": 915,
2192
- "index": 299,
2193
- "char": "Γ",
2194
- "width": 38,
2195
- "height": 47,
2196
- "xoffset": -9,
2197
- "yoffset": 12,
2198
- "xadvance": 18,
2199
- "chnl": 15,
2200
- "x": 254,
2201
- "y": 761,
2202
- "page": 0
2203
- },
2204
- {
2205
- "id": 916,
2206
- "index": 507,
2207
- "char": "Δ",
2208
- "width": 45,
2209
- "height": 47,
2210
- "xoffset": -12,
2211
- "yoffset": 12,
2212
- "xadvance": 21,
2213
- "chnl": 15,
2214
- "x": 264,
2215
- "y": 809,
2216
- "page": 0
2217
- },
2218
- {
2219
- "id": 917,
2220
- "index": 508,
2221
- "char": "Ε",
2222
- "width": 41,
2223
- "height": 47,
2224
- "xoffset": -9,
2225
- "yoffset": 12,
2226
- "xadvance": 21,
2227
- "chnl": 15,
2228
- "x": 293,
2229
- "y": 761,
2230
- "page": 0
2231
- },
2232
- {
2233
- "id": 918,
2234
- "index": 509,
2235
- "char": "Ζ",
2236
- "width": 42,
2237
- "height": 47,
2238
- "xoffset": -11,
2239
- "yoffset": 12,
2240
- "xadvance": 20,
2241
- "chnl": 15,
2242
- "x": 295,
2243
- "y": 711,
2244
- "page": 0
2245
- },
2246
- {
2247
- "id": 919,
2248
- "index": 510,
2249
- "char": "Η",
2250
- "width": 42,
2251
- "height": 47,
2252
- "xoffset": -9,
2253
- "yoffset": 12,
2254
- "xadvance": 23,
2255
- "chnl": 15,
2256
- "x": 267,
2257
- "y": 554,
2258
- "page": 0
2259
- },
2260
- {
2261
- "id": 921,
2262
- "index": 511,
2263
- "char": "Ι",
2264
- "width": 27,
2265
- "height": 47,
2266
- "xoffset": -9,
2267
- "yoffset": 12,
2268
- "xadvance": 9,
2269
- "chnl": 15,
2270
- "x": 269,
2271
- "y": 492,
2272
- "page": 0
2273
- },
2274
- {
2275
- "id": 922,
2276
- "index": 512,
2277
- "char": "Κ",
2278
- "width": 43,
2279
- "height": 47,
2280
- "xoffset": -10,
2281
- "yoffset": 12,
2282
- "xadvance": 21,
2283
- "chnl": 15,
2284
- "x": 297,
2285
- "y": 492,
2286
- "page": 0
2287
- },
2288
- {
2289
- "id": 923,
2290
- "index": 513,
2291
- "char": "Λ",
2292
- "width": 45,
2293
- "height": 47,
2294
- "xoffset": -12,
2295
- "yoffset": 12,
2296
- "xadvance": 21,
2297
- "chnl": 15,
2298
- "x": 305,
2299
- "y": 444,
2300
- "page": 0
2301
- },
2302
- {
2303
- "id": 924,
2304
- "index": 514,
2305
- "char": "Μ",
2306
- "width": 46,
2307
- "height": 47,
2308
- "xoffset": -10,
2309
- "yoffset": 12,
2310
- "xadvance": 27,
2311
- "chnl": 15,
2312
- "x": 331,
2313
- "y": 391,
2314
- "page": 0
2315
- },
2316
- {
2317
- "id": 925,
2318
- "index": 515,
2319
- "char": "Ν",
2320
- "width": 42,
2321
- "height": 47,
2322
- "xoffset": -10,
2323
- "yoffset": 12,
2324
- "xadvance": 23,
2325
- "chnl": 15,
2326
- "x": 367,
2327
- "y": 343,
2328
- "page": 0
2329
- },
2330
- {
2331
- "id": 926,
2332
- "index": 516,
2333
- "char": "Ξ",
2334
- "width": 41,
2335
- "height": 47,
2336
- "xoffset": -10,
2337
- "yoffset": 12,
2338
- "xadvance": 21,
2339
- "chnl": 15,
2340
- "x": 381,
2341
- "y": 291,
2342
- "page": 0
2343
- },
2344
- {
2345
- "id": 928,
2346
- "index": 518,
2347
- "char": "Π",
2348
- "width": 42,
2349
- "height": 47,
2350
- "xoffset": -9,
2351
- "yoffset": 12,
2352
- "xadvance": 23,
2353
- "chnl": 15,
2354
- "x": 411,
2355
- "y": 242,
2356
- "page": 0
2357
- },
2358
- {
2359
- "id": 929,
2360
- "index": 519,
2361
- "char": "Ρ",
2362
- "width": 41,
2363
- "height": 47,
2364
- "xoffset": -10,
2365
- "yoffset": 12,
2366
- "xadvance": 21,
2367
- "chnl": 15,
2368
- "x": 445,
2369
- "y": 186,
2370
- "page": 0
2371
- },
2372
- {
2373
- "id": 931,
2374
- "index": 520,
2375
- "char": "Σ",
2376
- "width": 40,
2377
- "height": 47,
2378
- "xoffset": -10,
2379
- "yoffset": 12,
2380
- "xadvance": 20,
2381
- "chnl": 15,
2382
- "x": 464,
2383
- "y": 96,
2384
- "page": 0
2385
- },
2386
- {
2387
- "id": 932,
2388
- "index": 521,
2389
- "char": "Τ",
2390
- "width": 42,
2391
- "height": 47,
2392
- "xoffset": -11,
2393
- "yoffset": 12,
2394
- "xadvance": 20,
2395
- "chnl": 15,
2396
- "x": 481,
2397
- "y": 48,
2398
- "page": 0
2399
- },
2400
- {
2401
- "id": 933,
2402
- "index": 522,
2403
- "char": "Υ",
2404
- "width": 45,
2405
- "height": 47,
2406
- "xoffset": -12,
2407
- "yoffset": 12,
2408
- "xadvance": 21,
2409
- "chnl": 15,
2410
- "x": 483,
2411
- "y": 0,
2412
- "page": 0
2413
- },
2414
- {
2415
- "id": 935,
2416
- "index": 523,
2417
- "char": "Χ",
2418
- "width": 45,
2419
- "height": 47,
2420
- "xoffset": -12,
2421
- "yoffset": 12,
2422
- "xadvance": 21,
2423
- "chnl": 15,
2424
- "x": 269,
2425
- "y": 914,
2426
- "page": 0
2427
- },
2428
- {
2429
- "id": 936,
2430
- "index": 524,
2431
- "char": "Ψ",
2432
- "width": 47,
2433
- "height": 47,
2434
- "xoffset": -10,
2435
- "yoffset": 12,
2436
- "xadvance": 27,
2437
- "chnl": 15,
2438
- "x": 297,
2439
- "y": 857,
2440
- "page": 0
2441
- },
2442
- {
2443
- "id": 937,
2444
- "index": 525,
2445
- "char": "Ω",
2446
- "width": 45,
2447
- "height": 47,
2448
- "xoffset": -10,
2449
- "yoffset": 12,
2450
- "xadvance": 24,
2451
- "chnl": 15,
2452
- "x": 310,
2453
- "y": 809,
2454
- "page": 0
2455
- },
2456
- {
2457
- "id": 947,
2458
- "index": 534,
2459
- "char": "γ",
2460
- "width": 39,
2461
- "height": 47,
2462
- "xoffset": -12,
2463
- "yoffset": 18,
2464
- "xadvance": 16,
2465
- "chnl": 15,
2466
- "x": 335,
2467
- "y": 759,
2468
- "page": 0
2469
- },
2470
- {
2471
- "id": 948,
2472
- "index": 303,
2473
- "char": "δ",
2474
- "width": 40,
2475
- "height": 47,
2476
- "xoffset": -11,
2477
- "yoffset": 12,
2478
- "xadvance": 18,
2479
- "chnl": 15,
2480
- "x": 269,
2481
- "y": 962,
2482
- "page": 0
2483
- },
2484
- {
2485
- "id": 951,
2486
- "index": 536,
2487
- "char": "η",
2488
- "width": 37,
2489
- "height": 47,
2490
- "xoffset": -10,
2491
- "yoffset": 18,
2492
- "xadvance": 18,
2493
- "chnl": 15,
2494
- "x": 310,
2495
- "y": 962,
2496
- "page": 0
2497
- },
2498
- {
2499
- "id": 955,
2500
- "index": 540,
2501
- "char": "λ",
2502
- "width": 39,
2503
- "height": 47,
2504
- "xoffset": -12,
2505
- "yoffset": 12,
2506
- "xadvance": 16,
2507
- "chnl": 15,
2508
- "x": 315,
2509
- "y": 905,
2510
- "page": 0
2511
- },
2512
- {
2513
- "id": 956,
2514
- "index": 541,
2515
- "char": "μ",
2516
- "width": 37,
2517
- "height": 47,
2518
- "xoffset": -9,
2519
- "yoffset": 18,
2520
- "xadvance": 18,
2521
- "chnl": 15,
2522
- "x": 345,
2523
- "y": 857,
2524
- "page": 0
2525
- },
2526
- {
2527
- "id": 961,
2528
- "index": 545,
2529
- "char": "ρ",
2530
- "width": 39,
2531
- "height": 47,
2532
- "xoffset": -10,
2533
- "yoffset": 18,
2534
- "xadvance": 18,
2535
- "chnl": 15,
2536
- "x": 356,
2537
- "y": 807,
2538
- "page": 0
2539
- },
2540
- {
2541
- "id": 966,
2542
- "index": 307,
2543
- "char": "φ",
2544
- "width": 43,
2545
- "height": 47,
2546
- "xoffset": -11,
2547
- "yoffset": 18,
2548
- "xadvance": 21,
2549
- "chnl": 15,
2550
- "x": 348,
2551
- "y": 953,
2552
- "page": 0
2553
- },
2554
- {
2555
- "id": 967,
2556
- "index": 548,
2557
- "char": "χ",
2558
- "width": 40,
2559
- "height": 47,
2560
- "xoffset": -12,
2561
- "yoffset": 18,
2562
- "xadvance": 17,
2563
- "chnl": 15,
2564
- "x": 355,
2565
- "y": 905,
2566
- "page": 0
2567
- },
2568
- {
2569
- "id": 968,
2570
- "index": 549,
2571
- "char": "ψ",
2572
- "width": 43,
2573
- "height": 47,
2574
- "xoffset": -10,
2575
- "yoffset": 18,
2576
- "xadvance": 23,
2577
- "chnl": 15,
2578
- "x": 383,
2579
- "y": 855,
2580
- "page": 0
2581
- },
2582
- {
2583
- "id": 940,
2584
- "index": 528,
2585
- "char": "ά",
2586
- "width": 40,
2587
- "height": 47,
2588
- "xoffset": -11,
2589
- "yoffset": 12,
2590
- "xadvance": 19,
2591
- "chnl": 15,
2592
- "x": 392,
2593
- "y": 953,
2594
- "page": 0
2595
- },
2596
- {
2597
- "id": 902,
2598
- "index": 497,
2599
- "char": "Ά",
2600
- "width": 45,
2601
- "height": 47,
2602
- "xoffset": -12,
2603
- "yoffset": 12,
2604
- "xadvance": 21,
2605
- "chnl": 15,
2606
- "x": 396,
2607
- "y": 903,
2608
- "page": 0
2609
- },
2610
- {
2611
- "id": 941,
2612
- "index": 529,
2613
- "char": "έ",
2614
- "width": 36,
2615
- "height": 47,
2616
- "xoffset": -10,
2617
- "yoffset": 12,
2618
- "xadvance": 14,
2619
- "chnl": 15,
2620
- "x": 433,
2621
- "y": 951,
2622
- "page": 0
2623
- },
2624
- {
2625
- "id": 943,
2626
- "index": 531,
2627
- "char": "ί",
2628
- "width": 30,
2629
- "height": 47,
2630
- "xoffset": -10,
2631
- "yoffset": 12,
2632
- "xadvance": 7,
2633
- "chnl": 15,
2634
- "x": 310,
2635
- "y": 540,
2636
- "page": 0
2637
- },
2638
- {
2639
- "id": 970,
2640
- "index": 551,
2641
- "char": "ϊ",
2642
- "width": 33,
2643
- "height": 47,
2644
- "xoffset": -13,
2645
- "yoffset": 12,
2646
- "xadvance": 7,
2647
- "chnl": 15,
2648
- "x": 310,
2649
- "y": 588,
2650
- "page": 0
2651
- },
2652
- {
2653
- "id": 906,
2654
- "index": 500,
2655
- "char": "Ί",
2656
- "width": 34,
2657
- "height": 47,
2658
- "xoffset": -13,
2659
- "yoffset": 12,
2660
- "xadvance": 12,
2661
- "chnl": 15,
2662
- "x": 331,
2663
- "y": 636,
2664
- "page": 0
2665
- },
2666
- {
2667
- "id": 972,
2668
- "index": 553,
2669
- "char": "ό",
2670
- "width": 40,
2671
- "height": 47,
2672
- "xoffset": -11,
2673
- "yoffset": 12,
2674
- "xadvance": 18,
2675
- "chnl": 15,
2676
- "x": 338,
2677
- "y": 684,
2678
- "page": 0
2679
- },
2680
- {
2681
- "id": 973,
2682
- "index": 554,
2683
- "char": "ύ",
2684
- "width": 37,
2685
- "height": 47,
2686
- "xoffset": -10,
2687
- "yoffset": 12,
2688
- "xadvance": 18,
2689
- "chnl": 15,
2690
- "x": 375,
2691
- "y": 732,
2692
- "page": 0
2693
- },
2694
- {
2695
- "id": 971,
2696
- "index": 552,
2697
- "char": "ϋ",
2698
- "width": 37,
2699
- "height": 47,
2700
- "xoffset": -10,
2701
- "yoffset": 12,
2702
- "xadvance": 18,
2703
- "chnl": 15,
2704
- "x": 396,
2705
- "y": 780,
2706
- "page": 0
2707
- },
2708
- {
2709
- "id": 259,
2710
- "index": 259,
2711
- "char": "ă",
2712
- "width": 39,
2713
- "height": 47,
2714
- "xoffset": -11,
2715
- "yoffset": 12,
2716
- "xadvance": 18,
2717
- "chnl": 15,
2718
- "x": 427,
2719
- "y": 828,
2720
- "page": 0
2721
- },
2722
- {
2723
- "id": 226,
2724
- "index": 107,
2725
- "char": "â",
2726
- "width": 39,
2727
- "height": 47,
2728
- "xoffset": -11,
2729
- "yoffset": 12,
2730
- "xadvance": 18,
2731
- "chnl": 15,
2732
- "x": 442,
2733
- "y": 876,
2734
- "page": 0
2735
- },
2736
- {
2737
- "id": 234,
2738
- "index": 114,
2739
- "char": "ê",
2740
- "width": 39,
2741
- "height": 47,
2742
- "xoffset": -11,
2743
- "yoffset": 12,
2744
- "xadvance": 18,
2745
- "chnl": 15,
2746
- "x": 341,
2747
- "y": 492,
2748
- "page": 0
2749
- },
2750
- {
2751
- "id": 244,
2752
- "index": 123,
2753
- "char": "ô",
2754
- "width": 40,
2755
- "height": 47,
2756
- "xoffset": -11,
2757
- "yoffset": 12,
2758
- "xadvance": 18,
2759
- "chnl": 15,
2760
- "x": 341,
2761
- "y": 540,
2762
- "page": 0
2763
- },
2764
- {
2765
- "id": 49,
2766
- "index": 20,
2767
- "char": "1",
2768
- "width": 32,
2769
- "height": 47,
2770
- "xoffset": -9,
2771
- "yoffset": 12,
2772
- "xadvance": 18,
2773
- "chnl": 15,
2774
- "x": 344,
2775
- "y": 588,
2776
- "page": 0
2777
- },
2778
- {
2779
- "id": 50,
2780
- "index": 21,
2781
- "char": "2",
2782
- "width": 39,
2783
- "height": 47,
2784
- "xoffset": -11,
2785
- "yoffset": 12,
2786
- "xadvance": 18,
2787
- "chnl": 15,
2788
- "x": 366,
2789
- "y": 636,
2790
- "page": 0
2791
- },
2792
- {
2793
- "id": 51,
2794
- "index": 22,
2795
- "char": "3",
2796
- "width": 39,
2797
- "height": 47,
2798
- "xoffset": -11,
2799
- "yoffset": 12,
2800
- "xadvance": 18,
2801
- "chnl": 15,
2802
- "x": 379,
2803
- "y": 684,
2804
- "page": 0
2805
- },
2806
- {
2807
- "id": 52,
2808
- "index": 23,
2809
- "char": "4",
2810
- "width": 40,
2811
- "height": 47,
2812
- "xoffset": -12,
2813
- "yoffset": 12,
2814
- "xadvance": 18,
2815
- "chnl": 15,
2816
- "x": 377,
2817
- "y": 588,
2818
- "page": 0
2819
- },
2820
- {
2821
- "id": 53,
2822
- "index": 24,
2823
- "char": "5",
2824
- "width": 39,
2825
- "height": 47,
2826
- "xoffset": -11,
2827
- "yoffset": 12,
2828
- "xadvance": 18,
2829
- "chnl": 15,
2830
- "x": 413,
2831
- "y": 732,
2832
- "page": 0
2833
- },
2834
- {
2835
- "id": 54,
2836
- "index": 25,
2837
- "char": "6",
2838
- "width": 39,
2839
- "height": 47,
2840
- "xoffset": -11,
2841
- "yoffset": 12,
2842
- "xadvance": 18,
2843
- "chnl": 15,
2844
- "x": 406,
2845
- "y": 636,
2846
- "page": 0
2847
- },
2848
- {
2849
- "id": 55,
2850
- "index": 26,
2851
- "char": "7",
2852
- "width": 39,
2853
- "height": 47,
2854
- "xoffset": -10,
2855
- "yoffset": 12,
2856
- "xadvance": 18,
2857
- "chnl": 15,
2858
- "x": 434,
2859
- "y": 780,
2860
- "page": 0
2861
- },
2862
- {
2863
- "id": 56,
2864
- "index": 27,
2865
- "char": "8",
2866
- "width": 39,
2867
- "height": 47,
2868
- "xoffset": -11,
2869
- "yoffset": 12,
2870
- "xadvance": 18,
2871
- "chnl": 15,
2872
- "x": 419,
2873
- "y": 684,
2874
- "page": 0
2875
- },
2876
- {
2877
- "id": 57,
2878
- "index": 28,
2879
- "char": "9",
2880
- "width": 39,
2881
- "height": 47,
2882
- "xoffset": -11,
2883
- "yoffset": 12,
2884
- "xadvance": 18,
2885
- "chnl": 15,
2886
- "x": 467,
2887
- "y": 828,
2888
- "page": 0
2889
- },
2890
- {
2891
- "id": 48,
2892
- "index": 19,
2893
- "char": "0",
2894
- "width": 39,
2895
- "height": 47,
2896
- "xoffset": -11,
2897
- "yoffset": 12,
2898
- "xadvance": 18,
2899
- "chnl": 15,
2900
- "x": 453,
2901
- "y": 732,
2902
- "page": 0
2903
- },
2904
- {
2905
- "id": 63,
2906
- "index": 34,
2907
- "char": "?",
2908
- "width": 39,
2909
- "height": 47,
2910
- "xoffset": -11,
2911
- "yoffset": 12,
2912
- "xadvance": 18,
2913
- "chnl": 15,
2914
- "x": 474,
2915
- "y": 780,
2916
- "page": 0
2917
- },
2918
- {
2919
- "id": 33,
2920
- "index": 4,
2921
- "char": "!",
2922
- "width": 27,
2923
- "height": 47,
2924
- "xoffset": -9,
2925
- "yoffset": 12,
2926
- "xadvance": 9,
2927
- "chnl": 15,
2928
- "x": 351,
2929
- "y": 439,
2930
- "page": 0
2931
- },
2932
- {
2933
- "id": 165,
2934
- "index": 150,
2935
- "char": "¥",
2936
- "width": 42,
2937
- "height": 47,
2938
- "xoffset": -12,
2939
- "yoffset": 12,
2940
- "xadvance": 18,
2941
- "chnl": 15,
2942
- "x": 378,
2943
- "y": 391,
2944
- "page": 0
2945
- },
2946
- {
2947
- "id": 228,
2948
- "index": 108,
2949
- "char": "ä",
2950
- "width": 39,
2951
- "height": 47,
2952
- "xoffset": -11,
2953
- "yoffset": 12,
2954
- "xadvance": 18,
2955
- "chnl": 15,
2956
- "x": 410,
2957
- "y": 339,
2958
- "page": 0
2959
- },
2960
- {
2961
- "id": 246,
2962
- "index": 124,
2963
- "char": "ö",
2964
- "width": 40,
2965
- "height": 47,
2966
- "xoffset": -11,
2967
- "yoffset": 12,
2968
- "xadvance": 18,
2969
- "chnl": 15,
2970
- "x": 423,
2971
- "y": 290,
2972
- "page": 0
2973
- },
2974
- {
2975
- "id": 252,
2976
- "index": 129,
2977
- "char": "ü",
2978
- "width": 37,
2979
- "height": 47,
2980
- "xoffset": -10,
2981
- "yoffset": 12,
2982
- "xadvance": 18,
2983
- "chnl": 15,
2984
- "x": 379,
2985
- "y": 439,
2986
- "page": 0
2987
- },
2988
- {
2989
- "id": 109,
2990
- "index": 80,
2991
- "char": "m",
2992
- "width": 46,
2993
- "height": 41,
2994
- "xoffset": -10,
2995
- "yoffset": 18,
2996
- "xadvance": 27,
2997
- "chnl": 15,
2998
- "x": 464,
2999
- "y": 144,
3000
- "page": 0
3001
- },
3002
- {
3003
- "id": 1078,
3004
- "index": 608,
3005
- "char": "ж",
3006
- "width": 46,
3007
- "height": 41,
3008
- "xoffset": -12,
3009
- "yoffset": 18,
3010
- "xadvance": 21,
3011
- "chnl": 15,
3012
- "x": 505,
3013
- "y": 96,
3014
- "page": 0
3015
- },
3016
- {
3017
- "id": 969,
3018
- "index": 550,
3019
- "char": "ω",
3020
- "width": 46,
3021
- "height": 41,
3022
- "xoffset": -11,
3023
- "yoffset": 18,
3024
- "xadvance": 25,
3025
- "chnl": 15,
3026
- "x": 524,
3027
- "y": 48,
3028
- "page": 0
3029
- },
3030
- {
3031
- "id": 1076,
3032
- "index": 606,
3033
- "char": "д",
3034
- "width": 42,
3035
- "height": 45,
3036
- "xoffset": -12,
3037
- "yoffset": 18,
3038
- "xadvance": 19,
3039
- "chnl": 15,
3040
- "x": 529,
3041
- "y": 0,
3042
- "page": 0
3043
- },
3044
- {
3045
- "id": 1094,
3046
- "index": 624,
3047
- "char": "ц",
3048
- "width": 39,
3049
- "height": 45,
3050
- "xoffset": -10,
3051
- "yoffset": 18,
3052
- "xadvance": 18,
3053
- "chnl": 15,
3054
- "x": 381,
3055
- "y": 487,
3056
- "page": 0
3057
- },
3058
- {
3059
- "id": 1119,
3060
- "index": 647,
3061
- "char": "џ",
3062
- "width": 37,
3063
- "height": 45,
3064
- "xoffset": -10,
3065
- "yoffset": 18,
3066
- "xadvance": 18,
3067
- "chnl": 15,
3068
- "x": 417,
3069
- "y": 439,
3070
- "page": 0
3071
- },
3072
- {
3073
- "id": 1096,
3074
- "index": 626,
3075
- "char": "ш",
3076
- "width": 45,
3077
- "height": 41,
3078
- "xoffset": -10,
3079
- "yoffset": 18,
3080
- "xadvance": 26,
3081
- "chnl": 15,
3082
- "x": 421,
3083
- "y": 387,
3084
- "page": 0
3085
- },
3086
- {
3087
- "id": 1102,
3088
- "index": 632,
3089
- "char": "ю",
3090
- "width": 45,
3091
- "height": 41,
3092
- "xoffset": -10,
3093
- "yoffset": 18,
3094
- "xadvance": 24,
3095
- "chnl": 15,
3096
- "x": 450,
3097
- "y": 338,
3098
- "page": 0
3099
- },
3100
- {
3101
- "id": 960,
3102
- "index": 652,
3103
- "char": "π",
3104
- "width": 45,
3105
- "height": 41,
3106
- "xoffset": -11,
3107
- "yoffset": 18,
3108
- "xadvance": 22,
3109
- "chnl": 15,
3110
- "x": 382,
3111
- "y": 533,
3112
- "page": 0
3113
- },
3114
- {
3115
- "id": 59,
3116
- "index": 30,
3117
- "char": ";",
3118
- "width": 27,
3119
- "height": 45,
3120
- "xoffset": -9,
3121
- "yoffset": 18,
3122
- "xadvance": 9,
3123
- "chnl": 15,
3124
- "x": 421,
3125
- "y": 485,
3126
- "page": 0
3127
- },
3128
- {
3129
- "id": 7838,
3130
- "index": 0,
3131
- "char": "ẞ",
3132
- "width": 40,
3133
- "height": 44,
3134
- "xoffset": -8,
3135
- "yoffset": 15,
3136
- "xadvance": 24,
3137
- "chnl": 15,
3138
- "x": 454,
3139
- "y": 234,
3140
- "page": 0
3141
- },
3142
- {
3143
- "id": 1099,
3144
- "index": 629,
3145
- "char": "ы",
3146
- "width": 43,
3147
- "height": 41,
3148
- "xoffset": -10,
3149
- "yoffset": 18,
3150
- "xadvance": 23,
3151
- "chnl": 15,
3152
- "x": 487,
3153
- "y": 186,
3154
- "page": 0
3155
- },
3156
- {
3157
- "id": 417,
3158
- "index": 1131,
3159
- "char": "ơ",
3160
- "width": 43,
3161
- "height": 41,
3162
- "xoffset": -11,
3163
- "yoffset": 18,
3164
- "xadvance": 21,
3165
- "chnl": 15,
3166
- "x": 511,
3167
- "y": 138,
3168
- "page": 0
3169
- },
3170
- {
3171
- "id": 1084,
3172
- "index": 614,
3173
- "char": "м",
3174
- "width": 42,
3175
- "height": 41,
3176
- "xoffset": -10,
3177
- "yoffset": 18,
3178
- "xadvance": 22,
3179
- "chnl": 15,
3180
- "x": 552,
3181
- "y": 90,
3182
- "page": 0
3183
- },
3184
- {
3185
- "id": 1098,
3186
- "index": 628,
3187
- "char": "ъ",
3188
- "width": 42,
3189
- "height": 41,
3190
- "xoffset": -11,
3191
- "yoffset": 18,
3192
- "xadvance": 20,
3193
- "chnl": 15,
3194
- "x": 571,
3195
- "y": 46,
3196
- "page": 0
3197
- },
3198
- {
3199
- "id": 963,
3200
- "index": 305,
3201
- "char": "σ",
3202
- "width": 42,
3203
- "height": 41,
3204
- "xoffset": -11,
3205
- "yoffset": 18,
3206
- "xadvance": 20,
3207
- "chnl": 15,
3208
- "x": 572,
3209
- "y": 0,
3210
- "page": 0
3211
- },
3212
- {
3213
- "id": 432,
3214
- "index": 1133,
3215
- "char": "ư",
3216
- "width": 42,
3217
- "height": 41,
3218
- "xoffset": -10,
3219
- "yoffset": 18,
3220
- "xadvance": 21,
3221
- "chnl": 15,
3222
- "x": 464,
3223
- "y": 279,
3224
- "page": 0
3225
- },
3226
- {
3227
- "id": 97,
3228
- "index": 68,
3229
- "char": "a",
3230
- "width": 39,
3231
- "height": 41,
3232
- "xoffset": -11,
3233
- "yoffset": 18,
3234
- "xadvance": 18,
3235
- "chnl": 15,
3236
- "x": 495,
3237
- "y": 228,
3238
- "page": 0
3239
- },
3240
- {
3241
- "id": 99,
3242
- "index": 70,
3243
- "char": "c",
3244
- "width": 38,
3245
- "height": 41,
3246
- "xoffset": -11,
3247
- "yoffset": 18,
3248
- "xadvance": 16,
3249
- "chnl": 15,
3250
- "x": 531,
3251
- "y": 180,
3252
- "page": 0
3253
- },
3254
- {
3255
- "id": 101,
3256
- "index": 72,
3257
- "char": "e",
3258
- "width": 39,
3259
- "height": 41,
3260
- "xoffset": -11,
3261
- "yoffset": 18,
3262
- "xadvance": 18,
3263
- "chnl": 15,
3264
- "x": 555,
3265
- "y": 132,
3266
- "page": 0
3267
- },
3268
- {
3269
- "id": 110,
3270
- "index": 81,
3271
- "char": "n",
3272
- "width": 37,
3273
- "height": 41,
3274
- "xoffset": -10,
3275
- "yoffset": 18,
3276
- "xadvance": 18,
3277
- "chnl": 15,
3278
- "x": 418,
3279
- "y": 575,
3280
- "page": 0
3281
- },
3282
- {
3283
- "id": 111,
3284
- "index": 82,
3285
- "char": "o",
3286
- "width": 40,
3287
- "height": 41,
3288
- "xoffset": -11,
3289
- "yoffset": 18,
3290
- "xadvance": 18,
3291
- "chnl": 15,
3292
- "x": 428,
3293
- "y": 531,
3294
- "page": 0
3295
- },
3296
- {
3297
- "id": 114,
3298
- "index": 85,
3299
- "char": "r",
3300
- "width": 33,
3301
- "height": 41,
3302
- "xoffset": -10,
3303
- "yoffset": 18,
3304
- "xadvance": 11,
3305
- "chnl": 15,
3306
- "x": 187,
3307
- "y": 208,
3308
- "page": 0
3309
- },
3310
- {
3311
- "id": 115,
3312
- "index": 86,
3313
- "char": "s",
3314
- "width": 38,
3315
- "height": 41,
3316
- "xoffset": -11,
3317
- "yoffset": 18,
3318
- "xadvance": 16,
3319
- "chnl": 15,
3320
- "x": 449,
3321
- "y": 485,
3322
- "page": 0
3323
- },
3324
- {
3325
- "id": 117,
3326
- "index": 88,
3327
- "char": "u",
3328
- "width": 37,
3329
- "height": 41,
3330
- "xoffset": -10,
3331
- "yoffset": 18,
3332
- "xadvance": 18,
3333
- "chnl": 15,
3334
- "x": 455,
3335
- "y": 429,
3336
- "page": 0
3337
- },
3338
- {
3339
- "id": 118,
3340
- "index": 89,
3341
- "char": "v",
3342
- "width": 39,
3343
- "height": 41,
3344
- "xoffset": -12,
3345
- "yoffset": 18,
3346
- "xadvance": 16,
3347
- "chnl": 15,
3348
- "x": 467,
3349
- "y": 380,
3350
- "page": 0
3351
- },
3352
- {
3353
- "id": 120,
3354
- "index": 91,
3355
- "char": "x",
3356
- "width": 40,
3357
- "height": 41,
3358
- "xoffset": -12,
3359
- "yoffset": 18,
3360
- "xadvance": 16,
3361
- "chnl": 15,
3362
- "x": 496,
3363
- "y": 321,
3364
- "page": 0
3365
- },
3366
- {
3367
- "id": 122,
3368
- "index": 93,
3369
- "char": "z",
3370
- "width": 39,
3371
- "height": 41,
3372
- "xoffset": -11,
3373
- "yoffset": 18,
3374
- "xadvance": 16,
3375
- "chnl": 15,
3376
- "x": 507,
3377
- "y": 270,
3378
- "page": 0
3379
- },
3380
- {
3381
- "id": 1072,
3382
- "index": 602,
3383
- "char": "а",
3384
- "width": 39,
3385
- "height": 41,
3386
- "xoffset": -11,
3387
- "yoffset": 18,
3388
- "xadvance": 18,
3389
- "chnl": 15,
3390
- "x": 535,
3391
- "y": 222,
3392
- "page": 0
3393
- },
3394
- {
3395
- "id": 1074,
3396
- "index": 604,
3397
- "char": "в",
3398
- "width": 38,
3399
- "height": 41,
3400
- "xoffset": -10,
3401
- "yoffset": 18,
3402
- "xadvance": 17,
3403
- "chnl": 15,
3404
- "x": 570,
3405
- "y": 174,
3406
- "page": 0
3407
- },
3408
- {
3409
- "id": 1075,
3410
- "index": 605,
3411
- "char": "г",
3412
- "width": 34,
3413
- "height": 41,
3414
- "xoffset": -10,
3415
- "yoffset": 18,
3416
- "xadvance": 12,
3417
- "chnl": 15,
3418
- "x": 446,
3419
- "y": 617,
3420
- "page": 0
3421
- },
3422
- {
3423
- "id": 1077,
3424
- "index": 607,
3425
- "char": "е",
3426
- "width": 39,
3427
- "height": 41,
3428
- "xoffset": -11,
3429
- "yoffset": 18,
3430
- "xadvance": 18,
3431
- "chnl": 15,
3432
- "x": 456,
3433
- "y": 573,
3434
- "page": 0
3435
- },
3436
- {
3437
- "id": 1108,
3438
- "index": 637,
3439
- "char": "є",
3440
- "width": 38,
3441
- "height": 41,
3442
- "xoffset": -11,
3443
- "yoffset": 18,
3444
- "xadvance": 16,
3445
- "chnl": 15,
3446
- "x": 469,
3447
- "y": 527,
3448
- "page": 0
3449
- },
3450
- {
3451
- "id": 1079,
3452
- "index": 609,
3453
- "char": "з",
3454
- "width": 37,
3455
- "height": 41,
3456
- "xoffset": -11,
3457
- "yoffset": 18,
3458
- "xadvance": 15,
3459
- "chnl": 15,
3460
- "x": 488,
3461
- "y": 471,
3462
- "page": 0
3463
- },
3464
- {
3465
- "id": 1109,
3466
- "index": 638,
3467
- "char": "ѕ",
3468
- "width": 38,
3469
- "height": 41,
3470
- "xoffset": -11,
3471
- "yoffset": 18,
3472
- "xadvance": 16,
3473
- "chnl": 15,
3474
- "x": 493,
3475
- "y": 422,
3476
- "page": 0
3477
- },
3478
- {
3479
- "id": 1080,
3480
- "index": 610,
3481
- "char": "и",
3482
- "width": 38,
3483
- "height": 41,
3484
- "xoffset": -10,
3485
- "yoffset": 18,
3486
- "xadvance": 18,
3487
- "chnl": 15,
3488
- "x": 507,
3489
- "y": 363,
3490
- "page": 0
3491
- },
3492
- {
3493
- "id": 1082,
3494
- "index": 612,
3495
- "char": "к",
3496
- "width": 36,
3497
- "height": 41,
3498
- "xoffset": -10,
3499
- "yoffset": 18,
3500
- "xadvance": 14,
3501
- "chnl": 15,
3502
- "x": 537,
3503
- "y": 312,
3504
- "page": 0
3505
- },
3506
- {
3507
- "id": 1083,
3508
- "index": 613,
3509
- "char": "л",
3510
- "width": 40,
3511
- "height": 41,
3512
- "xoffset": -12,
3513
- "yoffset": 18,
3514
- "xadvance": 19,
3515
- "chnl": 15,
3516
- "x": 547,
3517
- "y": 264,
3518
- "page": 0
3519
- },
3520
- {
3521
- "id": 1085,
3522
- "index": 615,
3523
- "char": "н",
3524
- "width": 37,
3525
- "height": 41,
3526
- "xoffset": -10,
3527
- "yoffset": 18,
3528
- "xadvance": 18,
3529
- "chnl": 15,
3530
- "x": 575,
3531
- "y": 216,
3532
- "page": 0
3533
- },
3534
- {
3535
- "id": 1086,
3536
- "index": 616,
3537
- "char": "о",
3538
- "width": 40,
3539
- "height": 41,
3540
- "xoffset": -11,
3541
- "yoffset": 18,
3542
- "xadvance": 18,
3543
- "chnl": 15,
3544
- "x": 459,
3545
- "y": 659,
3546
- "page": 0
3547
- },
3548
- {
3549
- "id": 1087,
3550
- "index": 617,
3551
- "char": "п",
3552
- "width": 37,
3553
- "height": 41,
3554
- "xoffset": -10,
3555
- "yoffset": 18,
3556
- "xadvance": 17,
3557
- "chnl": 15,
3558
- "x": 481,
3559
- "y": 615,
3560
- "page": 0
3561
- },
3562
- {
3563
- "id": 1089,
3564
- "index": 619,
3565
- "char": "с",
3566
- "width": 38,
3567
- "height": 41,
3568
- "xoffset": -11,
3569
- "yoffset": 18,
3570
- "xadvance": 16,
3571
- "chnl": 15,
3572
- "x": 496,
3573
- "y": 569,
3574
- "page": 0
3575
- },
3576
- {
3577
- "id": 1090,
3578
- "index": 620,
3579
- "char": "т",
3580
- "width": 37,
3581
- "height": 41,
3582
- "xoffset": -11,
3583
- "yoffset": 18,
3584
- "xadvance": 15,
3585
- "chnl": 15,
3586
- "x": 508,
3587
- "y": 513,
3588
- "page": 0
3589
- },
3590
- {
3591
- "id": 1093,
3592
- "index": 623,
3593
- "char": "х",
3594
- "width": 40,
3595
- "height": 41,
3596
- "xoffset": -12,
3597
- "yoffset": 18,
3598
- "xadvance": 16,
3599
- "chnl": 15,
3600
- "x": 526,
3601
- "y": 464,
3602
- "page": 0
3603
- },
3604
- {
3605
- "id": 1095,
3606
- "index": 625,
3607
- "char": "ч",
3608
- "width": 37,
3609
- "height": 41,
3610
- "xoffset": -11,
3611
- "yoffset": 18,
3612
- "xadvance": 17,
3613
- "chnl": 15,
3614
- "x": 532,
3615
- "y": 405,
3616
- "page": 0
3617
- },
3618
- {
3619
- "id": 1100,
3620
- "index": 630,
3621
- "char": "ь",
3622
- "width": 38,
3623
- "height": 41,
3624
- "xoffset": -10,
3625
- "yoffset": 18,
3626
- "xadvance": 17,
3627
- "chnl": 15,
3628
- "x": 546,
3629
- "y": 354,
3630
- "page": 0
3631
- },
3632
- {
3633
- "id": 1101,
3634
- "index": 631,
3635
- "char": "э",
3636
- "width": 38,
3637
- "height": 41,
3638
- "xoffset": -11,
3639
- "yoffset": 18,
3640
- "xadvance": 16,
3641
- "chnl": 15,
3642
- "x": 574,
3643
- "y": 306,
3644
- "page": 0
3645
- },
3646
- {
3647
- "id": 1103,
3648
- "index": 633,
3649
- "char": "я",
3650
- "width": 39,
3651
- "height": 41,
3652
- "xoffset": -12,
3653
- "yoffset": 18,
3654
- "xadvance": 17,
3655
- "chnl": 15,
3656
- "x": 588,
3657
- "y": 258,
3658
- "page": 0
3659
- },
3660
- {
3661
- "id": 945,
3662
- "index": 302,
3663
- "char": "α",
3664
- "width": 40,
3665
- "height": 41,
3666
- "xoffset": -11,
3667
- "yoffset": 18,
3668
- "xadvance": 19,
3669
- "chnl": 15,
3670
- "x": 493,
3671
- "y": 701,
3672
- "page": 0
3673
- },
3674
- {
3675
- "id": 949,
3676
- "index": 304,
3677
- "char": "ε",
3678
- "width": 36,
3679
- "height": 41,
3680
- "xoffset": -10,
3681
- "yoffset": 18,
3682
- "xadvance": 14,
3683
- "chnl": 15,
3684
- "x": 500,
3685
- "y": 657,
3686
- "page": 0
3687
- },
3688
- {
3689
- "id": 953,
3690
- "index": 538,
3691
- "char": "ι",
3692
- "width": 27,
3693
- "height": 41,
3694
- "xoffset": -10,
3695
- "yoffset": 18,
3696
- "xadvance": 7,
3697
- "chnl": 15,
3698
- "x": 519,
3699
- "y": 611,
3700
- "page": 0
3701
- },
3702
- {
3703
- "id": 954,
3704
- "index": 539,
3705
- "char": "κ",
3706
- "width": 38,
3707
- "height": 41,
3708
- "xoffset": -10,
3709
- "yoffset": 18,
3710
- "xadvance": 16,
3711
- "chnl": 15,
3712
- "x": 535,
3713
- "y": 555,
3714
- "page": 0
3715
- },
3716
- {
3717
- "id": 957,
3718
- "index": 542,
3719
- "char": "ν",
3720
- "width": 39,
3721
- "height": 41,
3722
- "xoffset": -12,
3723
- "yoffset": 18,
3724
- "xadvance": 16,
3725
- "chnl": 15,
3726
- "x": 546,
3727
- "y": 506,
3728
- "page": 0
3729
- },
3730
- {
3731
- "id": 959,
3732
- "index": 544,
3733
- "char": "ο",
3734
- "width": 40,
3735
- "height": 41,
3736
- "xoffset": -11,
3737
- "yoffset": 18,
3738
- "xadvance": 18,
3739
- "chnl": 15,
3740
- "x": 567,
3741
- "y": 447,
3742
- "page": 0
3743
- },
3744
- {
3745
- "id": 964,
3746
- "index": 306,
3747
- "char": "τ",
3748
- "width": 35,
3749
- "height": 41,
3750
- "xoffset": -11,
3751
- "yoffset": 18,
3752
- "xadvance": 13,
3753
- "chnl": 15,
3754
- "x": 570,
3755
- "y": 396,
3756
- "page": 0
3757
- },
3758
- {
3759
- "id": 965,
3760
- "index": 547,
3761
- "char": "υ",
3762
- "width": 37,
3763
- "height": 41,
3764
- "xoffset": -10,
3765
- "yoffset": 18,
3766
- "xadvance": 18,
3767
- "chnl": 15,
3768
- "x": 585,
3769
- "y": 348,
3770
- "page": 0
3771
- },
3772
- {
3773
- "id": 58,
3774
- "index": 29,
3775
- "char": ":",
3776
- "width": 27,
3777
- "height": 41,
3778
- "xoffset": -9,
3779
- "yoffset": 18,
3780
- "xadvance": 9,
3781
- "chnl": 15,
3782
- "x": 613,
3783
- "y": 300,
3784
- "page": 0
3785
- },
3786
- {
3787
- "id": 60,
3788
- "index": 31,
3789
- "char": "<",
3790
- "width": 39,
3791
- "height": 40,
3792
- "xoffset": -10,
3793
- "yoffset": 16,
3794
- "xadvance": 19,
3795
- "chnl": 15,
3796
- "x": 606,
3797
- "y": 390,
3798
- "page": 0
3799
- },
3800
- {
3801
- "id": 62,
3802
- "index": 33,
3803
- "char": ">",
3804
- "width": 39,
3805
- "height": 40,
3806
- "xoffset": -10,
3807
- "yoffset": 16,
3808
- "xadvance": 19,
3809
- "chnl": 15,
3810
- "x": 623,
3811
- "y": 342,
3812
- "page": 0
3813
- },
3814
- {
3815
- "id": 43,
3816
- "index": 14,
3817
- "char": "+",
3818
- "width": 39,
3819
- "height": 39,
3820
- "xoffset": -10,
3821
- "yoffset": 16,
3822
- "xadvance": 19,
3823
- "chnl": 15,
3824
- "x": 595,
3825
- "y": 88,
3826
- "page": 0
3827
- },
3828
- {
3829
- "id": 247,
3830
- "index": 183,
3831
- "char": "÷",
3832
- "width": 39,
3833
- "height": 37,
3834
- "xoffset": -11,
3835
- "yoffset": 17,
3836
- "xadvance": 18,
3837
- "chnl": 15,
3838
- "x": 595,
3839
- "y": 128,
3840
- "page": 0
3841
- },
3842
- {
3843
- "id": 61,
3844
- "index": 32,
3845
- "char": "=",
3846
- "width": 39,
3847
- "height": 34,
3848
- "xoffset": -10,
3849
- "yoffset": 19,
3850
- "xadvance": 19,
3851
- "chnl": 15,
3852
- "x": 86,
3853
- "y": 990,
3854
- "page": 0
3855
- },
3856
- {
3857
- "id": 215,
3858
- "index": 238,
3859
- "char": "×",
3860
- "width": 38,
3861
- "height": 38,
3862
- "xoffset": -9,
3863
- "yoffset": 17,
3864
- "xadvance": 19,
3865
- "chnl": 15,
3866
- "x": 614,
3867
- "y": 42,
3868
- "page": 0
3869
- },
3870
- {
3871
- "id": 42,
3872
- "index": 13,
3873
- "char": "*",
3874
- "width": 34,
3875
- "height": 34,
3876
- "xoffset": -11,
3877
- "yoffset": 12,
3878
- "xadvance": 12,
3879
- "chnl": 15,
3880
- "x": 126,
3881
- "y": 990,
3882
- "page": 0
3883
- },
3884
- {
3885
- "id": 45,
3886
- "index": 16,
3887
- "char": "-",
3888
- "width": 33,
3889
- "height": 27,
3890
- "xoffset": -11,
3891
- "yoffset": 25,
3892
- "xadvance": 11,
3893
- "chnl": 15,
3894
- "x": 459,
3895
- "y": 701,
3896
- "page": 0
3897
- },
3898
- {
3899
- "id": 8216,
3900
- "index": 181,
3901
- "char": "‘",
3902
- "width": 27,
3903
- "height": 32,
3904
- "xoffset": -10,
3905
- "yoffset": 12,
3906
- "xadvance": 7,
3907
- "chnl": 15,
3908
- "x": 0,
3909
- "y": 991,
3910
- "page": 0
3911
- },
3912
- {
3913
- "id": 8217,
3914
- "index": 182,
3915
- "char": "’",
3916
- "width": 27,
3917
- "height": 32,
3918
- "xoffset": -10,
3919
- "yoffset": 12,
3920
- "xadvance": 7,
3921
- "chnl": 15,
3922
- "x": 28,
3923
- "y": 991,
3924
- "page": 0
3925
- },
3926
- {
3927
- "id": 8220,
3928
- "index": 179,
3929
- "char": "“",
3930
- "width": 32,
3931
- "height": 32,
3932
- "xoffset": -11,
3933
- "yoffset": 12,
3934
- "xadvance": 11,
3935
- "chnl": 15,
3936
- "x": 161,
3937
- "y": 989,
3938
- "page": 0
3939
- },
3940
- {
3941
- "id": 8221,
3942
- "index": 180,
3943
- "char": "”",
3944
- "width": 32,
3945
- "height": 32,
3946
- "xoffset": -11,
3947
- "yoffset": 12,
3948
- "xadvance": 11,
3949
- "chnl": 15,
3950
- "x": 493,
3951
- "y": 743,
3952
- "page": 0
3953
- },
3954
- {
3955
- "id": 44,
3956
- "index": 15,
3957
- "char": ",",
3958
- "width": 27,
3959
- "height": 32,
3960
- "xoffset": -9,
3961
- "yoffset": 32,
3962
- "xadvance": 9,
3963
- "chnl": 15,
3964
- "x": 56,
3965
- "y": 991,
3966
- "page": 0
3967
- },
3968
- {
3969
- "id": 46,
3970
- "index": 17,
3971
- "char": ".",
3972
- "width": 27,
3973
- "height": 27,
3974
- "xoffset": -9,
3975
- "yoffset": 32,
3976
- "xadvance": 9,
3977
- "chnl": 15,
3978
- "x": 615,
3979
- "y": 0,
3980
- "page": 0
3981
- },
3982
- {
3983
- "id": 32,
3984
- "index": 3,
3985
- "char": " ",
3986
- "width": 0,
3987
- "height": 0,
3988
- "xoffset": -12,
3989
- "yoffset": 35,
3990
- "xadvance": 9,
3991
- "chnl": 15,
3992
- "x": 38,
3993
- "y": 322,
3994
- "page": 0
3995
- }
3996
- ],
3997
- "info": {
3998
- "face": "arial",
3999
- "size": 32,
4000
- "bold": 0,
4001
- "italic": 0,
4002
- "charset": [
4003
- " ",
4004
- "A",
4005
- "B",
4006
- "C",
4007
- "Č",
4008
- "Ć",
4009
- "D",
4010
- "Đ",
4011
- "E",
4012
- "F",
4013
- "G",
4014
- "H",
4015
- "I",
4016
- "J",
4017
- "K",
4018
- "L",
4019
- "M",
4020
- "N",
4021
- "O",
4022
- "P",
4023
- "Q",
4024
- "R",
4025
- "S",
4026
- "Š",
4027
- "T",
4028
- "U",
4029
- "V",
4030
- "W",
4031
- "X",
4032
- "Y",
4033
- "Z",
4034
- "Ž",
4035
- "a",
4036
- "b",
4037
- "c",
4038
- "č",
4039
- "ć",
4040
- "d",
4041
- "đ",
4042
- "e",
4043
- "f",
4044
- "g",
4045
- "h",
4046
- "i",
4047
- "j",
4048
- "k",
4049
- "l",
4050
- "m",
4051
- "n",
4052
- "o",
4053
- "p",
4054
- "q",
4055
- "r",
4056
- "s",
4057
- "š",
4058
- "t",
4059
- "u",
4060
- "v",
4061
- "w",
4062
- "x",
4063
- "y",
4064
- "z",
4065
- "ž",
4066
- "А",
4067
- "Б",
4068
- "В",
4069
- "Г",
4070
- "Ґ",
4071
- "Д",
4072
- "Ђ",
4073
- "Е",
4074
- "Ё",
4075
- "Є",
4076
- "Ж",
4077
- "З",
4078
- "Ѕ",
4079
- "И",
4080
- "І",
4081
- "Ї",
4082
- "Й",
4083
- "Ј",
4084
- "К",
4085
- "Л",
4086
- "Љ",
4087
- "М",
4088
- "Н",
4089
- "Њ",
4090
- "О",
4091
- "П",
4092
- "Р",
4093
- "С",
4094
- "Т",
4095
- "Ћ",
4096
- "У",
4097
- "Ў",
4098
- "Ф",
4099
- "Х",
4100
- "Ц",
4101
- "Ч",
4102
- "Џ",
4103
- "Ш",
4104
- "Щ",
4105
- "Ъ",
4106
- "Ы",
4107
- "Ь",
4108
- "Э",
4109
- "Ю",
4110
- "Я",
4111
- "а",
4112
- "б",
4113
- "в",
4114
- "г",
4115
- "ґ",
4116
- "д",
4117
- "ђ",
4118
- "е",
4119
- "ё",
4120
- "є",
4121
- "ж",
4122
- "з",
4123
- "ѕ",
4124
- "и",
4125
- "і",
4126
- "ї",
4127
- "й",
4128
- "ј",
4129
- "к",
4130
- "л",
4131
- "љ",
4132
- "м",
4133
- "н",
4134
- "њ",
4135
- "о",
4136
- "п",
4137
- "р",
4138
- "с",
4139
- "т",
4140
- "ћ",
4141
- "у",
4142
- "ў",
4143
- "ф",
4144
- "х",
4145
- "ц",
4146
- "ч",
4147
- "џ",
4148
- "ш",
4149
- "щ",
4150
- "ъ",
4151
- "ы",
4152
- "ь",
4153
- "э",
4154
- "ю",
4155
- "я",
4156
- "Α",
4157
- "Β",
4158
- "Γ",
4159
- "Δ",
4160
- "Ε",
4161
- "Ζ",
4162
- "Η",
4163
- "Θ",
4164
- "Ι",
4165
- "Κ",
4166
- "Λ",
4167
- "Μ",
4168
- "Ν",
4169
- "Ξ",
4170
- "Ο",
4171
- "Π",
4172
- "Ρ",
4173
- "Σ",
4174
- "Τ",
4175
- "Υ",
4176
- "Φ",
4177
- "Χ",
4178
- "Ψ",
4179
- "Ω",
4180
- "α",
4181
- "β",
4182
- "γ",
4183
- "δ",
4184
- "ε",
4185
- "ζ",
4186
- "η",
4187
- "θ",
4188
- "ι",
4189
- "κ",
4190
- "λ",
4191
- "μ",
4192
- "ν",
4193
- "ξ",
4194
- "ο",
4195
- "π",
4196
- "ρ",
4197
- "σ",
4198
- "τ",
4199
- "υ",
4200
- "φ",
4201
- "χ",
4202
- "ψ",
4203
- "ω",
4204
- "ά",
4205
- "Ά",
4206
- "έ",
4207
- "Έ",
4208
- "Ή",
4209
- "ί",
4210
- "ϊ",
4211
- "ΐ",
4212
- "Ί",
4213
- "ό",
4214
- "Ό",
4215
- "ύ",
4216
- "ΰ",
4217
- "ϋ",
4218
- "Ύ",
4219
- "Ϋ",
4220
- "Ώ",
4221
- "Ă",
4222
- "Â",
4223
- "Ê",
4224
- "Ô",
4225
- "Ơ",
4226
- "Ư",
4227
- "ă",
4228
- "â",
4229
- "ê",
4230
- "ô",
4231
- "ơ",
4232
- "ư",
4233
- "1",
4234
- "2",
4235
- "3",
4236
- "4",
4237
- "5",
4238
- "6",
4239
- "7",
4240
- "8",
4241
- "9",
4242
- "0",
4243
- "‘",
4244
- "?",
4245
- "’",
4246
- "“",
4247
- "!",
4248
- "”",
4249
- "(",
4250
- "%",
4251
- ")",
4252
- "[",
4253
- "#",
4254
- "]",
4255
- "{",
4256
- "@",
4257
- "}",
4258
- "/",
4259
- "&",
4260
- "\\",
4261
- "<",
4262
- "-",
4263
- "+",
4264
- "÷",
4265
- "×",
4266
- "=",
4267
- ">",
4268
- "®",
4269
- "©",
4270
- "$",
4271
- "€",
4272
- "£",
4273
- "¥",
4274
- "¢",
4275
- ":",
4276
- ";",
4277
- ",",
4278
- ".",
4279
- "*",
4280
- "Ä",
4281
- "ä",
4282
- "Ö",
4283
- "ö",
4284
- "Ü",
4285
- "ü",
4286
- "ẞ",
4287
- "ß"
4288
- ],
4289
- "unicode": 1,
4290
- "stretchH": 100,
4291
- "smooth": 1,
4292
- "aa": 1,
4293
- "padding": [
4294
- 12,
4295
- 12,
4296
- 12,
4297
- 12
4298
- ],
4299
- "spacing": [
4300
- 0,
4301
- 0
4302
- ]
4303
- },
4304
- "common": {
4305
- "lineHeight": 35,
4306
- "base": 35,
4307
- "scaleW": 1024,
4308
- "scaleH": 1024,
4309
- "pages": 1,
4310
- "packed": 0,
4311
- "alphaChnl": 0,
4312
- "redChnl": 0,
4313
- "greenChnl": 0,
4314
- "blueChnl": 0
4315
- },
4316
- "distanceField": {
4317
- "fieldType": "msdf",
4318
- "distanceRange": 24
4319
- },
4320
- "kernings": []
4321
- }
1
+ {"atlas":{"type":"mtsdf","distanceRange":12,"distanceRangeMiddle":0,"size":28,"width":1024,"height":1024,"yOrigin":"bottom"},"metrics":{"emSize":1,"lineHeight":1.14990234375,"ascender":0.9052734375,"descender":-0.2119140625,"underlineY":-0.142578125,"underlineThickness":0.0732421875},"glyphs":[{"unicode":32,"advance":0.27783203125},{"unicode":33,"advance":0.27783203125,"planeBounds":{"left":-0.18104771205357145,"bottom":-0.26785714285714285,"right":0.4618094308035714,"top":0.9821428571428571},"atlasBounds":{"left":313.5,"bottom":988.5,"right":331.5,"top":1023.5}},{"unicode":35,"advance":0.55615234375,"planeBounds":{"left":-0.24100167410714285,"bottom":-0.26785714285714285,"right":0.7947126116071429,"top":0.9821428571428571},"atlasBounds":{"left":145.5,"bottom":484.5,"right":174.5,"top":519.5}},{"unicode":36,"advance":0.55615234375,"planeBounds":{"left":-0.2275390625,"bottom":-0.375,"right":0.7724609375,"top":1.0535714285714286},"atlasBounds":{"left":176.5,"bottom":911.5,"right":204.5,"top":951.5}},{"unicode":37,"advance":0.88916015625,"planeBounds":{"left":-0.19998604910714288,"bottom":-0.3035714285714286,"right":1.0857282366071428,"top":0.98214285714285721},"atlasBounds":{"left":0.5,"bottom":620.5,"right":36.5,"top":656.5}},{"unicode":38,"advance":0.6669921875,"planeBounds":{"left":-0.21006556919642858,"bottom":-0.26785714285714285,"right":0.8970772879464286,"top":0.9821428571428571},"atlasBounds":{"left":79.5,"bottom":176.5,"right":110.5,"top":211.5}},{"unicode":40,"advance":0.3330078125,"planeBounds":{"left":-0.1962890625,"bottom":-0.48214285714285715,"right":0.5537109375,"top":0.98214285714285698},"atlasBounds":{"left":0.5,"bottom":0.5,"right":21.5,"top":41.5}},{"unicode":41,"advance":0.3330078125,"planeBounds":{"left":-0.1962890625,"bottom":-0.48214285714285715,"right":0.5537109375,"top":0.98214285714285698},"atlasBounds":{"left":79.5,"bottom":0.5,"right":100.5,"top":41.5}},{"unicode":42,"advance":0.38916015625,"planeBounds":{"left":-0.2359444754464286,"bottom":0.1607142857142857,"right":0.6211983816964286,"top":0.98214285714285698},"atlasBounds":{"left":235.5,"bottom":0.5,"right":259.5,"top":23.5}},{"unicode":43,"advance":0.583984375,"planeBounds":{"left":-0.2080078125,"bottom":-0.16071428571428573,"right":0.7919921875,"top":0.83928571428571419},"atlasBounds":{"left":176.5,"bottom":882.5,"right":204.5,"top":910.5}},{"unicode":44,"advance":0.27783203125,"planeBounds":{"left":-0.16758510044642858,"bottom":-0.4107142857142857,"right":0.4395577566964286,"top":0.37499999999999994},"atlasBounds":{"left":561.5,"bottom":1001.5,"right":578.5,"top":1023.5}},{"unicode":45,"advance":0.3330078125,"planeBounds":{"left":-0.22610909598214288,"bottom":-0.053571428571428568,"right":0.55960518973214279,"top":0.5535714285714286},"atlasBounds":{"left":263.5,"bottom":82.5,"right":285.5,"top":99.5}},{"unicode":46,"advance":0.27783203125,"planeBounds":{"left":-0.16270228794642858,"bottom":-0.26785714285714285,"right":0.4444405691964286,"top":0.375},"atlasBounds":{"left":176.5,"bottom":0.5,"right":193.5,"top":18.5}},{"unicode":47,"advance":0.27783203125,"planeBounds":{"left":-0.25394112723214285,"bottom":-0.26785714285714285,"right":0.53177315848214279,"top":0.9821428571428571},"atlasBounds":{"left":263.5,"bottom":10.5,"right":285.5,"top":45.5}},{"unicode":48,"advance":0.55615234375,"planeBounds":{"left":-0.22509765625,"bottom":-0.26785714285714285,"right":0.77490234375,"top":0.9821428571428571},"atlasBounds":{"left":176.5,"bottom":846.5,"right":204.5,"top":881.5}},{"unicode":49,"advance":0.55615234375,"planeBounds":{"left":-0.15213448660714288,"bottom":-0.26785714285714285,"right":0.63357979910714279,"top":0.9821428571428571},"atlasBounds":{"left":443.5,"bottom":988.5,"right":465.5,"top":1023.5}},{"unicode":50,"advance":0.55615234375,"planeBounds":{"left":-0.23319335937500002,"bottom":-0.26785714285714285,"right":0.76680664062499992,"top":0.9821428571428571},"atlasBounds":{"left":176.5,"bottom":810.5,"right":204.5,"top":845.5}},{"unicode":51,"advance":0.55615234375,"planeBounds":{"left":-0.2236328125,"bottom":-0.26785714285714285,"right":0.7763671875,"top":0.9821428571428571},"atlasBounds":{"left":176.5,"bottom":774.5,"right":204.5,"top":809.5}},{"unicode":52,"advance":0.55615234375,"planeBounds":{"left":-0.23974609375,"bottom":-0.26785714285714285,"right":0.76025390625,"top":0.9821428571428571},"atlasBounds":{"left":176.5,"bottom":738.5,"right":204.5,"top":773.5}},{"unicode":53,"advance":0.55615234375,"planeBounds":{"left":-0.22119140625,"bottom":-0.26785714285714285,"right":0.77880859375,"top":0.9821428571428571},"atlasBounds":{"left":176.5,"bottom":618.5,"right":204.5,"top":653.5}},{"unicode":54,"advance":0.55615234375,"planeBounds":{"left":-0.22607421875,"bottom":-0.26785714285714285,"right":0.77392578125,"top":0.9821428571428571},"atlasBounds":{"left":176.5,"bottom":546.5,"right":204.5,"top":581.5}},{"unicode":55,"advance":0.55615234375,"planeBounds":{"left":-0.20309012276785715,"bottom":-0.26785714285714285,"right":0.7611955915178571,"top":0.9821428571428571},"atlasBounds":{"left":206.5,"bottom":272.5,"right":233.5,"top":307.5}},{"unicode":56,"advance":0.55615234375,"planeBounds":{"left":-0.2236328125,"bottom":-0.26785714285714285,"right":0.7763671875,"top":0.9821428571428571},"atlasBounds":{"left":176.5,"bottom":510.5,"right":204.5,"top":545.5}},{"unicode":57,"advance":0.55615234375,"planeBounds":{"left":-0.22314453125,"bottom":-0.26785714285714285,"right":0.77685546875,"top":0.9821428571428571},"atlasBounds":{"left":176.5,"bottom":474.5,"right":204.5,"top":509.5}},{"unicode":58,"advance":0.27783203125,"planeBounds":{"left":-0.16319056919642858,"bottom":-0.26785714285714285,"right":0.4439522879464286,"top":0.80357142857142849},"atlasBounds":{"left":520.5,"bottom":993.5,"right":537.5,"top":1023.5}},{"unicode":59,"advance":0.27783203125,"planeBounds":{"left":-0.16758510044642858,"bottom":-0.4107142857142857,"right":0.4395577566964286,"top":0.80357142857142838},"atlasBounds":{"left":484.5,"bottom":989.5,"right":501.5,"top":1023.5}},{"unicode":60,"advance":0.583984375,"planeBounds":{"left":-0.208251953125,"bottom":-0.16071428571428573,"right":0.791748046875,"top":0.875},"atlasBounds":{"left":176.5,"bottom":444.5,"right":204.5,"top":473.5}},{"unicode":61,"advance":0.583984375,"planeBounds":{"left":-0.2080078125,"bottom":-0.053571428571428568,"right":0.7919921875,"top":0.76785714285714279},"atlasBounds":{"left":176.5,"bottom":420.5,"right":204.5,"top":443.5}},{"unicode":62,"advance":0.583984375,"planeBounds":{"left":-0.208251953125,"bottom":-0.16071428571428573,"right":0.791748046875,"top":0.875},"atlasBounds":{"left":176.5,"bottom":390.5,"right":204.5,"top":419.5}},{"unicode":63,"advance":0.55615234375,"planeBounds":{"left":-0.20724051339285715,"bottom":-0.26785714285714285,"right":0.7570452008928571,"top":0.9821428571428571},"atlasBounds":{"left":206.5,"bottom":64.5,"right":233.5,"top":99.5}},{"unicode":64,"advance":1.01513671875,"planeBounds":{"left":-0.1976841517857143,"bottom":-0.48214285714285715,"right":1.2308872767857142,"top":0.98214285714285698},"atlasBounds":{"left":0.5,"bottom":946.5,"right":40.5,"top":987.5}},{"unicode":65,"advance":0.6669921875,"planeBounds":{"left":-0.2557896205357143,"bottom":-0.26785714285714285,"right":0.92278180803571419,"top":0.9821428571428571},"atlasBounds":{"left":44.5,"bottom":421.5,"right":77.5,"top":456.5}},{"unicode":66,"advance":0.6669921875,"planeBounds":{"left":-0.19220842633928573,"bottom":-0.26785714285714285,"right":0.87922014508928559,"top":0.9821428571428571},"atlasBounds":{"left":113.5,"bottom":805.5,"right":143.5,"top":840.5}},{"unicode":67,"advance":0.72216796875,"planeBounds":{"left":-0.20521763392857142,"bottom":-0.26785714285714285,"right":0.93763950892857129,"top":0.9821428571428571},"atlasBounds":{"left":79.5,"bottom":665.5,"right":111.5,"top":700.5}},{"unicode":68,"advance":0.72216796875,"planeBounds":{"left":-0.18052455357142858,"bottom":-0.26785714285714285,"right":0.9266183035714286,"top":0.9821428571428571},"atlasBounds":{"left":79.5,"bottom":140.5,"right":110.5,"top":175.5}},{"unicode":69,"advance":0.6669921875,"planeBounds":{"left":-0.17166573660714288,"bottom":-0.26785714285714285,"right":0.8640485491071429,"top":0.9821428571428571},"atlasBounds":{"left":145.5,"bottom":376.5,"right":174.5,"top":411.5}},{"unicode":70,"advance":0.61083984375,"planeBounds":{"left":-0.176513671875,"bottom":-0.26785714285714285,"right":0.823486328125,"top":0.9821428571428571},"atlasBounds":{"left":176.5,"bottom":323.5,"right":204.5,"top":358.5}},{"unicode":71,"advance":0.77783203125,"planeBounds":{"left":-0.2050083705357143,"bottom":-0.26785714285714285,"right":0.97356305803571419,"top":0.9821428571428571},"atlasBounds":{"left":44.5,"bottom":354.5,"right":77.5,"top":389.5}},{"unicode":72,"advance":0.72216796875,"planeBounds":{"left":-0.17487444196428573,"bottom":-0.26785714285714285,"right":0.89655412946428559,"top":0.9821428571428571},"atlasBounds":{"left":113.5,"bottom":662.5,"right":143.5,"top":697.5}},{"unicode":73,"advance":0.27783203125,"planeBounds":{"left":-0.16294642857142858,"bottom":-0.26785714285714285,"right":0.4441964285714286,"top":0.9821428571428571},"atlasBounds":{"left":407.5,"bottom":988.5,"right":424.5,"top":1023.5}},{"unicode":74,"advance":0.5,"planeBounds":{"left":-0.2387366282008086,"bottom":-0.26785714285714285,"right":0.68983480037061995,"top":0.9821428571428571},"atlasBounds":{"left":263.5,"bottom":853.5,"right":289.5,"top":888.5}},{"unicode":75,"advance":0.6669921875,"planeBounds":{"left":-0.18443080357142858,"bottom":-0.26785714285714285,"right":0.9227120535714286,"top":0.9821428571428571},"atlasBounds":{"left":79.5,"bottom":104.5,"right":110.5,"top":139.5}},{"unicode":76,"advance":0.55615234375,"planeBounds":{"left":-0.18526785714285715,"bottom":-0.26785714285714285,"right":0.7790178571428571,"top":0.9821428571428571},"atlasBounds":{"left":235.5,"bottom":926.5,"right":262.5,"top":961.5}},{"unicode":77,"advance":0.8330078125,"planeBounds":{"left":-0.19137137276785715,"bottom":-0.26785714285714285,"right":1.022914341517857,"top":0.9821428571428571},"atlasBounds":{"left":44.5,"bottom":988.5,"right":78.5,"top":1023.5}},{"unicode":78,"advance":0.72216796875,"planeBounds":{"left":-0.17755998883928573,"bottom":-0.26785714285714285,"right":0.89386858258928559,"top":0.9821428571428571},"atlasBounds":{"left":113.5,"bottom":590.5,"right":143.5,"top":625.5}},{"unicode":79,"advance":0.77783203125,"planeBounds":{"left":-0.21651785714285715,"bottom":-0.26785714285714285,"right":0.99776785714285698,"top":0.9821428571428571},"atlasBounds":{"left":44.5,"bottom":952.5,"right":78.5,"top":987.5}},{"unicode":80,"advance":0.6669921875,"planeBounds":{"left":-0.18537248883928573,"bottom":-0.26785714285714285,"right":0.88605608258928559,"top":0.9821428571428571},"atlasBounds":{"left":113.5,"bottom":554.5,"right":143.5,"top":589.5}},{"unicode":81,"advance":0.77783203125,"planeBounds":{"left":-0.21505301339285715,"bottom":-0.3392857142857143,"right":0.99923270089285698,"top":0.98214285714285698},"atlasBounds":{"left":44.5,"bottom":914.5,"right":78.5,"top":951.5}},{"unicode":82,"advance":0.72216796875,"planeBounds":{"left":-0.17738560267857142,"bottom":-0.26785714285714285,"right":0.96547154017857129,"top":0.9821428571428571},"atlasBounds":{"left":79.5,"bottom":593.5,"right":111.5,"top":628.5}},{"unicode":83,"advance":0.6669921875,"planeBounds":{"left":-0.20588030133928573,"bottom":-0.26785714285714285,"right":0.86554827008928559,"top":0.9821428571428571},"atlasBounds":{"left":113.5,"bottom":451.5,"right":143.5,"top":486.5}},{"unicode":84,"advance":0.61083984375,"planeBounds":{"left":-0.22858537946428573,"bottom":-0.26785714285714285,"right":0.84284319196428559,"top":0.9821428571428571},"atlasBounds":{"left":113.5,"bottom":415.5,"right":143.5,"top":450.5}},{"unicode":85,"advance":0.72216796875,"planeBounds":{"left":-0.17560686383928573,"bottom":-0.26785714285714285,"right":0.89582170758928559,"top":0.9821428571428571},"atlasBounds":{"left":113.5,"bottom":343.5,"right":143.5,"top":378.5}},{"unicode":86,"advance":0.6669921875,"planeBounds":{"left":-0.2574986049107143,"bottom":-0.26785714285714285,"right":0.92107282366071419,"top":0.9821428571428571},"atlasBounds":{"left":44.5,"bottom":318.5,"right":77.5,"top":353.5}},{"unicode":87,"advance":0.94384765625,"planeBounds":{"left":-0.2418736049107143,"bottom":-0.26785714285714285,"right":1.1866978236607142,"top":0.9821428571428571},"atlasBounds":{"left":0.5,"bottom":910.5,"right":40.5,"top":945.5}},{"unicode":88,"advance":0.6669921875,"planeBounds":{"left":-0.2567661830357143,"bottom":-0.26785714285714285,"right":0.92180524553571419,"top":0.9821428571428571},"atlasBounds":{"left":44.5,"bottom":282.5,"right":77.5,"top":317.5}},{"unicode":89,"advance":0.6669921875,"planeBounds":{"left":-0.2582310267857143,"bottom":-0.26785714285714285,"right":0.92034040178571419,"top":0.9821428571428571},"atlasBounds":{"left":44.5,"bottom":246.5,"right":77.5,"top":281.5}},{"unicode":90,"advance":0.61083984375,"planeBounds":{"left":-0.2327357700892857,"bottom":-0.26785714285714285,"right":0.83869280133928559,"top":0.9821428571428571},"atlasBounds":{"left":113.5,"bottom":307.5,"right":143.5,"top":342.5}},{"unicode":91,"advance":0.27783203125,"planeBounds":{"left":-0.19234793526785715,"bottom":-0.48214285714285715,"right":0.5219377790178571,"top":0.98214285714285698},"atlasBounds":{"left":355.5,"bottom":942.5,"right":375.5,"top":983.5}},{"unicode":93,"advance":0.27783203125,"planeBounds":{"left":-0.24117606026785715,"bottom":-0.48214285714285715,"right":0.4731096540178571,"top":0.98214285714285698},"atlasBounds":{"left":376.5,"bottom":942.5,"right":396.5,"top":983.5}},{"unicode":97,"advance":0.55615234375,"planeBounds":{"left":-0.22509765625,"bottom":-0.26785714285714285,"right":0.77490234375,"top":0.80357142857142849},"atlasBounds":{"left":176.5,"bottom":50.5,"right":204.5,"top":80.5}},{"unicode":98,"advance":0.55615234375,"planeBounds":{"left":-0.19185965401785715,"bottom":-0.26785714285714285,"right":0.7724260602678571,"top":0.9821428571428571},"atlasBounds":{"left":235.5,"bottom":604.5,"right":262.5,"top":639.5}},{"unicode":99,"advance":0.5,"planeBounds":{"left":-0.21725027901785715,"bottom":-0.26785714285714285,"right":0.7470354352678571,"top":0.80357142857142849},"atlasBounds":{"left":235.5,"bottom":573.5,"right":262.5,"top":603.5}},{"unicode":100,"advance":0.55615234375,"planeBounds":{"left":-0.22310965401785715,"bottom":-0.26785714285714285,"right":0.7411760602678571,"top":0.9821428571428571},"atlasBounds":{"left":235.5,"bottom":537.5,"right":262.5,"top":572.5}},{"unicode":101,"advance":0.55615234375,"planeBounds":{"left":-0.224365234375,"bottom":-0.26785714285714285,"right":0.775634765625,"top":0.80357142857142849},"atlasBounds":{"left":206.5,"bottom":993.5,"right":234.5,"top":1023.5}},{"unicode":102,"advance":0.27783203125,"planeBounds":{"left":-0.2498256138392857,"bottom":-0.26785714285714285,"right":0.57160295758928559,"top":0.9821428571428571},"atlasBounds":{"left":263.5,"bottom":361.5,"right":286.5,"top":396.5}},{"unicode":103,"advance":0.55615234375,"planeBounds":{"left":-0.22140066964285715,"bottom":-0.48214285714285715,"right":0.7428850446428571,"top":0.8035714285714286},"atlasBounds":{"left":235.5,"bottom":428.5,"right":262.5,"top":464.5}},{"unicode":104,"advance":0.55615234375,"planeBounds":{"left":-0.1871861049107143,"bottom":-0.26785714285714285,"right":0.74138532366071419,"top":0.9821428571428571},"atlasBounds":{"left":235.5,"bottom":361.5,"right":261.5,"top":396.5}},{"unicode":105,"advance":0.22216796875,"planeBounds":{"left":-0.19321986607142858,"bottom":-0.26785714285714285,"right":0.4139229910714286,"top":0.9821428571428571},"atlasBounds":{"left":353.5,"bottom":988.5,"right":370.5,"top":1023.5}},{"unicode":106,"advance":0.22216796875,"planeBounds":{"left":-0.30343191964285715,"bottom":-0.48214285714285715,"right":0.4108537946428571,"top":0.98214285714285698},"atlasBounds":{"left":334.5,"bottom":942.5,"right":354.5,"top":983.5}},{"unicode":107,"advance":0.5,"planeBounds":{"left":-0.20089285714285715,"bottom":-0.26785714285714285,"right":0.7633928571428571,"top":0.9821428571428571},"atlasBounds":{"left":235.5,"bottom":501.5,"right":262.5,"top":536.5}},{"unicode":108,"advance":0.22216796875,"planeBounds":{"left":-0.19566127232142858,"bottom":-0.26785714285714285,"right":0.4114815848214286,"top":0.9821428571428571},"atlasBounds":{"left":371.5,"bottom":988.5,"right":388.5,"top":1023.5}},{"unicode":109,"advance":0.8330078125,"planeBounds":{"left":-0.18990652901785715,"bottom":-0.26785714285714285,"right":1.024379185267857,"top":0.80357142857142849},"atlasBounds":{"left":44.5,"bottom":883.5,"right":78.5,"top":913.5}},{"unicode":110,"advance":0.55615234375,"planeBounds":{"left":-0.1876743861607143,"bottom":-0.26785714285714285,"right":0.74089704241071419,"top":0.80357142857142849},"atlasBounds":{"left":235.5,"bottom":24.5,"right":261.5,"top":54.5}},{"unicode":111,"advance":0.55615234375,"planeBounds":{"left":-0.223876953125,"bottom":-0.26785714285714285,"right":0.776123046875,"top":0.80357142857142849},"atlasBounds":{"left":206.5,"bottom":925.5,"right":234.5,"top":955.5}},{"unicode":112,"advance":0.55615234375,"planeBounds":{"left":-0.19112723214285715,"bottom":-0.48214285714285715,"right":0.7731584821428571,"top":0.8035714285714286},"atlasBounds":{"left":235.5,"bottom":676.5,"right":262.5,"top":712.5}},{"unicode":113,"advance":0.55615234375,"planeBounds":{"left":-0.22237723214285715,"bottom":-0.48214285714285715,"right":0.7419084821428571,"top":0.8035714285714286},"atlasBounds":{"left":235.5,"bottom":713.5,"right":262.5,"top":749.5}},{"unicode":114,"advance":0.3330078125,"planeBounds":{"left":-0.18704659598214288,"bottom":-0.26785714285714285,"right":0.59866768973214279,"top":0.80357142857142849},"atlasBounds":{"left":538.5,"bottom":993.5,"right":560.5,"top":1023.5}},{"unicode":115,"advance":0.5,"planeBounds":{"left":-0.23604910714285715,"bottom":-0.26785714285714285,"right":0.7282366071428571,"top":0.80357142857142849},"atlasBounds":{"left":235.5,"bottom":786.5,"right":262.5,"top":816.5}},{"unicode":116,"advance":0.27783203125,"planeBounds":{"left":-0.24881417410714285,"bottom":-0.26785714285714285,"right":0.53690011160714279,"top":0.9821428571428571},"atlasBounds":{"left":263.5,"bottom":46.5,"right":285.5,"top":81.5}},{"unicode":117,"advance":0.55615234375,"planeBounds":{"left":-0.1901157924107143,"bottom":-0.26785714285714285,"right":0.73845563616071419,"top":0.80357142857142849},"atlasBounds":{"left":263.5,"bottom":718.5,"right":289.5,"top":748.5}},{"unicode":118,"advance":0.5,"planeBounds":{"left":-0.24951171875,"bottom":-0.26785714285714285,"right":0.75048828125,"top":0.80357142857142849},"atlasBounds":{"left":206.5,"bottom":894.5,"right":234.5,"top":924.5}},{"unicode":119,"advance":0.72216796875,"planeBounds":{"left":-0.24850027901785715,"bottom":-0.26785714285714285,"right":0.96578543526785698,"top":0.80357142857142849},"atlasBounds":{"left":44.5,"bottom":852.5,"right":78.5,"top":882.5}},{"unicode":120,"advance":0.5,"planeBounds":{"left":-0.25,"bottom":-0.26785714285714285,"right":0.75,"top":0.80357142857142849},"atlasBounds":{"left":206.5,"bottom":796.5,"right":234.5,"top":826.5}},{"unicode":121,"advance":0.5,"planeBounds":{"left":-0.246337890625,"bottom":-0.48214285714285715,"right":0.753662109375,"top":0.8035714285714286},"atlasBounds":{"left":206.5,"bottom":759.5,"right":234.5,"top":795.5}},{"unicode":122,"advance":0.5,"planeBounds":{"left":-0.23311941964285715,"bottom":-0.26785714285714285,"right":0.7311662946428571,"top":0.80357142857142849},"atlasBounds":{"left":235.5,"bottom":993.5,"right":262.5,"top":1023.5}},{"unicode":123,"advance":0.333984375,"planeBounds":{"left":-0.22366768973214288,"bottom":-0.48214285714285715,"right":0.56204659598214279,"top":0.98214285714285698},"atlasBounds":{"left":263.5,"bottom":158.5,"right":285.5,"top":199.5}},{"unicode":125,"advance":0.333984375,"planeBounds":{"left":-0.22855050223214288,"bottom":-0.48214285714285715,"right":0.55716378348214279,"top":0.98214285714285698},"atlasBounds":{"left":290.5,"bottom":942.5,"right":312.5,"top":983.5}},{"unicode":162,"advance":0.55615234375,"planeBounds":{"left":-0.20357840401785715,"bottom":-0.48214285714285715,"right":0.7607073102678571,"top":0.98214285714285698},"atlasBounds":{"left":206.5,"bottom":100.5,"right":233.5,"top":141.5}},{"unicode":163,"advance":0.55615234375,"planeBounds":{"left":-0.24710518973214285,"bottom":-0.26785714285714285,"right":0.7886090959821429,"top":0.9821428571428571},"atlasBounds":{"left":145.5,"bottom":129.5,"right":174.5,"top":164.5}},{"unicode":165,"advance":0.55615234375,"planeBounds":{"left":-0.2598353794642857,"bottom":-0.26785714285714285,"right":0.81159319196428559,"top":0.9821428571428571},"atlasBounds":{"left":113.5,"bottom":271.5,"right":143.5,"top":306.5}},{"unicode":169,"advance":0.73681640625,"planeBounds":{"left":-0.255126953125,"bottom":-0.26785714285714285,"right":0.994873046875,"top":0.9821428571428571},"atlasBounds":{"left":0.5,"bottom":332.5,"right":35.5,"top":367.5}},{"unicode":174,"advance":0.73681640625,"planeBounds":{"left":-0.255126953125,"bottom":-0.26785714285714285,"right":0.994873046875,"top":0.9821428571428571},"atlasBounds":{"left":0.5,"bottom":296.5,"right":35.5,"top":331.5}},{"unicode":194,"advance":0.6669921875,"planeBounds":{"left":-0.2557896205357143,"bottom":-0.26785714285714285,"right":0.92278180803571419,"top":1.1607142857142856},"atlasBounds":{"left":44.5,"bottom":205.5,"right":77.5,"top":245.5}},{"unicode":196,"advance":0.6669921875,"planeBounds":{"left":-0.2557896205357143,"bottom":-0.26785714285714285,"right":0.92278180803571419,"top":1.125},"atlasBounds":{"left":44.5,"bottom":165.5,"right":77.5,"top":204.5}},{"unicode":202,"advance":0.6669921875,"planeBounds":{"left":-0.17166573660714288,"bottom":-0.26785714285714285,"right":0.8640485491071429,"top":1.1607142857142856},"atlasBounds":{"left":145.5,"bottom":88.5,"right":174.5,"top":128.5}},{"unicode":212,"advance":0.77783203125,"planeBounds":{"left":-0.21651785714285715,"bottom":-0.26785714285714285,"right":0.99776785714285698,"top":1.1607142857142856},"atlasBounds":{"left":44.5,"bottom":811.5,"right":78.5,"top":851.5}},{"unicode":214,"advance":0.77783203125,"planeBounds":{"left":-0.21651785714285715,"bottom":-0.26785714285714285,"right":0.99776785714285698,"top":1.125},"atlasBounds":{"left":44.5,"bottom":771.5,"right":78.5,"top":810.5}},{"unicode":215,"advance":0.583984375,"planeBounds":{"left":-0.1727818080357143,"bottom":-0.125,"right":0.75578962053571419,"top":0.83928571428571419},"atlasBounds":{"left":206.5,"bottom":0.5,"right":232.5,"top":27.5}},{"unicode":220,"advance":0.72216796875,"planeBounds":{"left":-0.17560686383928573,"bottom":-0.26785714285714285,"right":0.89582170758928559,"top":1.125},"atlasBounds":{"left":113.5,"bottom":231.5,"right":143.5,"top":270.5}},{"unicode":223,"advance":0.61083984375,"planeBounds":{"left":-0.19070870535714285,"bottom":-0.26785714285714285,"right":0.8450055803571429,"top":0.9821428571428571},"atlasBounds":{"left":145.5,"bottom":52.5,"right":174.5,"top":87.5}},{"unicode":226,"advance":0.55615234375,"planeBounds":{"left":-0.22509765625,"bottom":-0.26785714285714285,"right":0.77490234375,"top":0.9821428571428571},"atlasBounds":{"left":206.5,"bottom":552.5,"right":234.5,"top":587.5}},{"unicode":228,"advance":0.55615234375,"planeBounds":{"left":-0.22509765625,"bottom":-0.26785714285714285,"right":0.77490234375,"top":0.9821428571428571},"atlasBounds":{"left":206.5,"bottom":588.5,"right":234.5,"top":623.5}},{"unicode":234,"advance":0.55615234375,"planeBounds":{"left":-0.224365234375,"bottom":-0.26785714285714285,"right":0.775634765625,"top":0.9821428571428571},"atlasBounds":{"left":206.5,"bottom":624.5,"right":234.5,"top":659.5}},{"unicode":244,"advance":0.55615234375,"planeBounds":{"left":-0.223876953125,"bottom":-0.26785714285714285,"right":0.776123046875,"top":0.9821428571428571},"atlasBounds":{"left":206.5,"bottom":660.5,"right":234.5,"top":695.5}},{"unicode":246,"advance":0.55615234375,"planeBounds":{"left":-0.223876953125,"bottom":-0.26785714285714285,"right":0.776123046875,"top":0.9821428571428571},"atlasBounds":{"left":206.5,"bottom":696.5,"right":234.5,"top":731.5}},{"unicode":247,"advance":0.548828125,"planeBounds":{"left":-0.2255859375,"bottom":-0.125,"right":0.7744140625,"top":0.8035714285714286},"atlasBounds":{"left":206.5,"bottom":732.5,"right":234.5,"top":758.5}},{"unicode":252,"advance":0.55615234375,"planeBounds":{"left":-0.1901157924107143,"bottom":-0.26785714285714285,"right":0.73845563616071419,"top":0.9821428571428571},"atlasBounds":{"left":263.5,"bottom":957.5,"right":289.5,"top":992.5}},{"unicode":258,"advance":0.6669921875,"planeBounds":{"left":-0.2557896205357143,"bottom":-0.26785714285714285,"right":0.92278180803571419,"top":1.1607142857142856},"atlasBounds":{"left":44.5,"bottom":124.5,"right":77.5,"top":164.5}},{"unicode":259,"advance":0.55615234375,"planeBounds":{"left":-0.22509765625,"bottom":-0.26785714285714285,"right":0.77490234375,"top":0.9821428571428571},"atlasBounds":{"left":206.5,"bottom":827.5,"right":234.5,"top":862.5}},{"unicode":262,"advance":0.72216796875,"planeBounds":{"left":-0.20521763392857142,"bottom":-0.26785714285714285,"right":0.93763950892857129,"top":1.1607142857142856},"atlasBounds":{"left":79.5,"bottom":516.5,"right":111.5,"top":556.5}},{"unicode":263,"advance":0.5,"planeBounds":{"left":-0.21725027901785715,"bottom":-0.26785714285714285,"right":0.7470354352678571,"top":0.9821428571428571},"atlasBounds":{"left":235.5,"bottom":640.5,"right":262.5,"top":675.5}},{"unicode":268,"advance":0.72216796875,"planeBounds":{"left":-0.20521763392857142,"bottom":-0.26785714285714285,"right":0.93763950892857129,"top":1.1607142857142856},"atlasBounds":{"left":79.5,"bottom":475.5,"right":111.5,"top":515.5}},{"unicode":269,"advance":0.5,"planeBounds":{"left":-0.21725027901785715,"bottom":-0.26785714285714285,"right":0.7470354352678571,"top":0.9821428571428571},"atlasBounds":{"left":235.5,"bottom":465.5,"right":262.5,"top":500.5}},{"unicode":272,"advance":0.72216796875,"planeBounds":{"left":-0.2555454799107143,"bottom":-0.26785714285714285,"right":0.92302594866071419,"top":0.9821428571428571},"atlasBounds":{"left":44.5,"bottom":88.5,"right":77.5,"top":123.5}},{"unicode":273,"advance":0.55615234375,"planeBounds":{"left":-0.22342354910714288,"bottom":-0.26785714285714285,"right":0.8122907366071429,"top":0.9821428571428571},"atlasBounds":{"left":145.5,"bottom":16.5,"right":174.5,"top":51.5}},{"unicode":352,"advance":0.6669921875,"planeBounds":{"left":-0.20588030133928573,"bottom":-0.26785714285714285,"right":0.86554827008928559,"top":1.1607142857142856},"atlasBounds":{"left":113.5,"bottom":51.5,"right":143.5,"top":91.5}},{"unicode":353,"advance":0.5,"planeBounds":{"left":-0.23604910714285715,"bottom":-0.26785714285714285,"right":0.7282366071428571,"top":0.9821428571428571},"atlasBounds":{"left":235.5,"bottom":750.5,"right":262.5,"top":785.5}},{"unicode":381,"advance":0.61083984375,"planeBounds":{"left":-0.2327357700892857,"bottom":-0.26785714285714285,"right":0.83869280133928559,"top":1.1607142857142856},"atlasBounds":{"left":113.5,"bottom":10.5,"right":143.5,"top":50.5}},{"unicode":382,"advance":0.5,"planeBounds":{"left":-0.23311941964285715,"bottom":-0.26785714285714285,"right":0.7311662946428571,"top":0.9821428571428571},"atlasBounds":{"left":235.5,"bottom":890.5,"right":262.5,"top":925.5}},{"unicode":416,"advance":0.857421875,"planeBounds":{"left":-0.20169503348214288,"bottom":-0.26785714285714285,"right":1.0840192522321428,"top":0.9821428571428571},"atlasBounds":{"left":0.5,"bottom":584.5,"right":36.5,"top":619.5}},{"unicode":417,"advance":0.65576171875,"planeBounds":{"left":-0.22446986607142858,"bottom":-0.26785714285714285,"right":0.8826729910714286,"top":0.80357142857142849},"atlasBounds":{"left":79.5,"bottom":73.5,"right":110.5,"top":103.5}},{"unicode":431,"advance":0.85400390625,"planeBounds":{"left":-0.178955078125,"bottom":-0.26785714285714285,"right":1.071044921875,"top":0.9821428571428571},"atlasBounds":{"left":0.5,"bottom":260.5,"right":35.5,"top":295.5}},{"unicode":432,"advance":0.66943359375,"planeBounds":{"left":-0.20200892857142858,"bottom":-0.26785714285714285,"right":0.9051339285714286,"top":0.80357142857142849},"atlasBounds":{"left":79.5,"bottom":42.5,"right":110.5,"top":72.5}},{"unicode":902,"advance":0.66748046875,"planeBounds":{"left":-0.2548130580357143,"bottom":-0.26785714285714285,"right":0.92375837053571419,"top":0.9821428571428571},"atlasBounds":{"left":44.5,"bottom":52.5,"right":77.5,"top":87.5}},{"unicode":904,"advance":0.7841796875,"planeBounds":{"left":-0.29959542410714285,"bottom":-0.26785714285714285,"right":0.9861188616071429,"top":0.9821428571428571},"atlasBounds":{"left":0.5,"bottom":548.5,"right":36.5,"top":583.5}},{"unicode":905,"advance":0.837890625,"planeBounds":{"left":-0.29568917410714285,"bottom":-0.26785714285714285,"right":0.9900251116071429,"top":0.9821428571428571},"atlasBounds":{"left":0.5,"bottom":512.5,"right":36.5,"top":547.5}},{"unicode":906,"advance":0.3837890625,"planeBounds":{"left":-0.2969447544642857,"bottom":-0.26785714285714285,"right":0.52448381696428559,"top":0.9821428571428571},"atlasBounds":{"left":263.5,"bottom":258.5,"right":286.5,"top":293.5}},{"unicode":908,"advance":0.7744140625,"planeBounds":{"left":-0.30081612723214285,"bottom":-0.26785714285714285,"right":0.9848981584821429,"top":0.9821428571428571},"atlasBounds":{"left":0.5,"bottom":476.5,"right":36.5,"top":511.5}},{"unicode":910,"advance":0.85546875,"planeBounds":{"left":-0.29725864955357145,"bottom":-0.26785714285714285,"right":1.0955984933035712,"top":0.9821428571428571},"atlasBounds":{"left":0.5,"bottom":802.5,"right":39.5,"top":837.5}},{"unicode":911,"advance":0.75244140625,"planeBounds":{"left":-0.2939453125,"bottom":-0.26785714285714285,"right":0.9560546875,"top":0.9821428571428571},"atlasBounds":{"left":0.5,"bottom":224.5,"right":35.5,"top":259.5}},{"unicode":912,"advance":0.22216796875,"planeBounds":{"left":-0.3174874441964286,"bottom":-0.26785714285714285,"right":0.5396554129464286,"top":1.0178571428571428},"atlasBounds":{"left":263.5,"bottom":428.5,"right":287.5,"top":464.5}},{"unicode":913,"advance":0.6669921875,"planeBounds":{"left":-0.2557896205357143,"bottom":-0.26785714285714285,"right":0.92278180803571419,"top":0.9821428571428571},"atlasBounds":{"left":44.5,"bottom":16.5,"right":77.5,"top":51.5}},{"unicode":914,"advance":0.6669921875,"planeBounds":{"left":-0.19220842633928573,"bottom":-0.26785714285714285,"right":0.87922014508928559,"top":0.9821428571428571},"atlasBounds":{"left":145.5,"bottom":880.5,"right":175.5,"top":915.5}},{"unicode":915,"advance":0.55078125,"planeBounds":{"left":-0.17843191964285715,"bottom":-0.26785714285714285,"right":0.7858537946428571,"top":0.9821428571428571},"atlasBounds":{"left":206.5,"bottom":308.5,"right":233.5,"top":343.5}},{"unicode":916,"advance":0.66796875,"planeBounds":{"left":-0.2553013392857143,"bottom":-0.26785714285714285,"right":0.92327008928571419,"top":0.9821428571428571},"atlasBounds":{"left":79.5,"bottom":988.5,"right":112.5,"top":1023.5}},{"unicode":917,"advance":0.6669921875,"planeBounds":{"left":-0.17166573660714288,"bottom":-0.26785714285714285,"right":0.8640485491071429,"top":0.9821428571428571},"atlasBounds":{"left":176.5,"bottom":952.5,"right":205.5,"top":987.5}},{"unicode":918,"advance":0.61083984375,"planeBounds":{"left":-0.2327357700892857,"bottom":-0.26785714285714285,"right":0.83869280133928559,"top":0.9821428571428571},"atlasBounds":{"left":145.5,"bottom":844.5,"right":175.5,"top":879.5}},{"unicode":919,"advance":0.72216796875,"planeBounds":{"left":-0.17487444196428573,"bottom":-0.26785714285714285,"right":0.89655412946428559,"top":0.9821428571428571},"atlasBounds":{"left":145.5,"bottom":808.5,"right":175.5,"top":843.5}},{"unicode":920,"advance":0.77783203125,"planeBounds":{"left":-0.21798270089285715,"bottom":-0.26785714285714285,"right":0.99630301339285698,"top":0.9821428571428571},"atlasBounds":{"left":44.5,"bottom":735.5,"right":78.5,"top":770.5}},{"unicode":921,"advance":0.27783203125,"planeBounds":{"left":-0.16294642857142858,"bottom":-0.26785714285714285,"right":0.4441964285714286,"top":0.9821428571428571},"atlasBounds":{"left":466.5,"bottom":988.5,"right":483.5,"top":1023.5}},{"unicode":922,"advance":0.6669921875,"planeBounds":{"left":-0.18443080357142858,"bottom":-0.26785714285714285,"right":0.9227120535714286,"top":0.9821428571428571},"atlasBounds":{"left":113.5,"bottom":957.5,"right":144.5,"top":992.5}},{"unicode":923,"advance":0.66796875,"planeBounds":{"left":-0.2565220424107143,"bottom":-0.26785714285714285,"right":0.92204938616071419,"top":0.9821428571428571},"atlasBounds":{"left":79.5,"bottom":952.5,"right":112.5,"top":987.5}},{"unicode":924,"advance":0.8330078125,"planeBounds":{"left":-0.19137137276785715,"bottom":-0.26785714285714285,"right":1.022914341517857,"top":0.9821428571428571},"atlasBounds":{"left":44.5,"bottom":699.5,"right":78.5,"top":734.5}},{"unicode":925,"advance":0.72216796875,"planeBounds":{"left":-0.17755998883928573,"bottom":-0.26785714285714285,"right":0.89386858258928559,"top":0.9821428571428571},"atlasBounds":{"left":145.5,"bottom":772.5,"right":175.5,"top":807.5}},{"unicode":926,"advance":0.64990234375,"planeBounds":{"left":-0.21076311383928573,"bottom":-0.26785714285714285,"right":0.86066545758928559,"top":0.9821428571428571},"atlasBounds":{"left":145.5,"bottom":736.5,"right":175.5,"top":771.5}},{"unicode":927,"advance":0.77783203125,"planeBounds":{"left":-0.21651785714285715,"bottom":-0.26785714285714285,"right":0.99776785714285698,"top":0.9821428571428571},"atlasBounds":{"left":44.5,"bottom":663.5,"right":78.5,"top":698.5}},{"unicode":928,"advance":0.72216796875,"planeBounds":{"left":-0.17487444196428573,"bottom":-0.26785714285714285,"right":0.89655412946428559,"top":0.9821428571428571},"atlasBounds":{"left":145.5,"bottom":700.5,"right":175.5,"top":735.5}},{"unicode":929,"advance":0.6669921875,"planeBounds":{"left":-0.18537248883928573,"bottom":-0.26785714285714285,"right":0.88605608258928559,"top":0.9821428571428571},"atlasBounds":{"left":145.5,"bottom":664.5,"right":175.5,"top":699.5}},{"unicode":931,"advance":0.6181640625,"planeBounds":{"left":-0.19217354910714285,"bottom":-0.26785714285714285,"right":0.8435407366071429,"top":0.9821428571428571},"atlasBounds":{"left":145.5,"bottom":165.5,"right":174.5,"top":200.5}},{"unicode":932,"advance":0.61083984375,"planeBounds":{"left":-0.22858537946428573,"bottom":-0.26785714285714285,"right":0.84284319196428559,"top":0.9821428571428571},"atlasBounds":{"left":145.5,"bottom":628.5,"right":175.5,"top":663.5}},{"unicode":933,"advance":0.6669921875,"planeBounds":{"left":-0.2582310267857143,"bottom":-0.26785714285714285,"right":0.92034040178571419,"top":0.9821428571428571},"atlasBounds":{"left":79.5,"bottom":916.5,"right":112.5,"top":951.5}},{"unicode":934,"advance":0.7978515625,"planeBounds":{"left":-0.22607421875,"bottom":-0.3035714285714286,"right":1.02392578125,"top":1.0178571428571428},"atlasBounds":{"left":0.5,"bottom":186.5,"right":35.5,"top":223.5}},{"unicode":935,"advance":0.6669921875,"planeBounds":{"left":-0.2567661830357143,"bottom":-0.26785714285714285,"right":0.92180524553571419,"top":0.9821428571428571},"atlasBounds":{"left":79.5,"bottom":880.5,"right":112.5,"top":915.5}},{"unicode":936,"advance":0.83544921875,"planeBounds":{"left":-0.18941824776785715,"bottom":-0.26785714285714285,"right":1.024867466517857,"top":0.9821428571428571},"atlasBounds":{"left":44.5,"bottom":627.5,"right":78.5,"top":662.5}},{"unicode":937,"advance":0.74755859375,"planeBounds":{"left":-0.2152622767857143,"bottom":-0.26785714285714285,"right":0.96330915178571419,"top":0.9821428571428571},"atlasBounds":{"left":79.5,"bottom":844.5,"right":112.5,"top":879.5}},{"unicode":939,"advance":0.6669921875,"planeBounds":{"left":-0.2582310267857143,"bottom":-0.26785714285714285,"right":0.92034040178571419,"top":1.125},"atlasBounds":{"left":79.5,"bottom":804.5,"right":112.5,"top":843.5}},{"unicode":940,"advance":0.578125,"planeBounds":{"left":-0.23001534598214285,"bottom":-0.26785714285714285,"right":0.8056989397321429,"top":0.9821428571428571},"atlasBounds":{"left":145.5,"bottom":448.5,"right":174.5,"top":483.5}},{"unicode":941,"advance":0.44580078125,"planeBounds":{"left":-0.21083286830357142,"bottom":-0.26785714285714285,"right":0.6820242745535714,"top":0.9821428571428571},"atlasBounds":{"left":263.5,"bottom":611.5,"right":288.5,"top":646.5}},{"unicode":943,"advance":0.22216796875,"planeBounds":{"left":-0.21871512276785715,"bottom":-0.26785714285714285,"right":0.4955705915178571,"top":0.9821428571428571},"atlasBounds":{"left":332.5,"bottom":988.5,"right":352.5,"top":1023.5}},{"unicode":944,"advance":0.546875,"planeBounds":{"left":-0.1903599330357143,"bottom":-0.26785714285714285,"right":0.73821149553571419,"top":1.0178571428571428},"atlasBounds":{"left":263.5,"bottom":920.5,"right":289.5,"top":956.5}},{"unicode":945,"advance":0.578125,"planeBounds":{"left":-0.23001534598214285,"bottom":-0.26785714285714285,"right":0.8056989397321429,"top":0.80357142857142849},"atlasBounds":{"left":145.5,"bottom":201.5,"right":174.5,"top":231.5}},{"unicode":946,"advance":0.5751953125,"planeBounds":{"left":-0.18307059151785715,"bottom":-0.48214285714285715,"right":0.7812151227678571,"top":0.98214285714285698},"atlasBounds":{"left":235.5,"bottom":817.5,"right":262.5,"top":858.5}},{"unicode":947,"advance":0.5,"planeBounds":{"left":-0.25,"bottom":-0.48214285714285715,"right":0.75,"top":0.8035714285714286},"atlasBounds":{"left":206.5,"bottom":442.5,"right":234.5,"top":478.5}},{"unicode":948,"advance":0.556640625,"planeBounds":{"left":-0.2216796875,"bottom":-0.26785714285714285,"right":0.7783203125,"top":0.9821428571428571},"atlasBounds":{"left":206.5,"bottom":516.5,"right":234.5,"top":551.5}},{"unicode":949,"advance":0.44580078125,"planeBounds":{"left":-0.21083286830357142,"bottom":-0.26785714285714285,"right":0.6820242745535714,"top":0.80357142857142849},"atlasBounds":{"left":263.5,"bottom":465.5,"right":288.5,"top":495.5}},{"unicode":950,"advance":0.44091796875,"planeBounds":{"left":-0.2303989955357143,"bottom":-0.48214285714285715,"right":0.69817243303571419,"top":0.98214285714285698},"atlasBounds":{"left":235.5,"bottom":154.5,"right":261.5,"top":195.5}},{"unicode":951,"advance":0.55615234375,"planeBounds":{"left":-0.1857212611607143,"bottom":-0.48214285714285715,"right":0.74285016741071419,"top":0.8035714285714286},"atlasBounds":{"left":235.5,"bottom":117.5,"right":261.5,"top":153.5}},{"unicode":952,"advance":0.55615234375,"planeBounds":{"left":-0.2216796875,"bottom":-0.26785714285714285,"right":0.7783203125,"top":0.9821428571428571},"atlasBounds":{"left":176.5,"bottom":582.5,"right":204.5,"top":617.5}},{"unicode":953,"advance":0.22216796875,"planeBounds":{"left":-0.19273158482142858,"bottom":-0.26785714285714285,"right":0.4144112723214286,"top":0.80357142857142849},"atlasBounds":{"left":502.5,"bottom":993.5,"right":519.5,"top":1023.5}},{"unicode":954,"advance":0.5,"planeBounds":{"left":-0.19967215401785715,"bottom":-0.26785714285714285,"right":0.7646135602678571,"top":0.80357142857142849},"atlasBounds":{"left":235.5,"bottom":962.5,"right":262.5,"top":992.5}},{"unicode":955,"advance":0.5,"planeBounds":{"left":-0.25048828125,"bottom":-0.26785714285714285,"right":0.74951171875,"top":0.9821428571428571},"atlasBounds":{"left":176.5,"bottom":185.5,"right":204.5,"top":220.5}},{"unicode":956,"advance":0.576171875,"planeBounds":{"left":-0.1766880580357143,"bottom":-0.48214285714285715,"right":0.75188337053571419,"top":0.8035714285714286},"atlasBounds":{"left":263.5,"bottom":749.5,"right":289.5,"top":785.5}},{"unicode":957,"advance":0.5,"planeBounds":{"left":-0.24951171875,"bottom":-0.26785714285714285,"right":0.75048828125,"top":0.80357142857142849},"atlasBounds":{"left":176.5,"bottom":19.5,"right":204.5,"top":49.5}},{"unicode":958,"advance":0.44775390625,"planeBounds":{"left":-0.20912388392857142,"bottom":-0.48214285714285715,"right":0.6837332589285714,"top":0.98214285714285698},"atlasBounds":{"left":263.5,"bottom":496.5,"right":288.5,"top":537.5}},{"unicode":959,"advance":0.55615234375,"planeBounds":{"left":-0.223876953125,"bottom":-0.26785714285714285,"right":0.776123046875,"top":0.80357142857142849},"atlasBounds":{"left":206.5,"bottom":863.5,"right":234.5,"top":893.5}},{"unicode":960,"advance":0.68994140625,"planeBounds":{"left":-0.2440708705357143,"bottom":-0.26785714285714285,"right":0.93450055803571419,"top":0.80357142857142849},"atlasBounds":{"left":79.5,"bottom":737.5,"right":112.5,"top":767.5}},{"unicode":961,"advance":0.56884765625,"planeBounds":{"left":-0.201171875,"bottom":-0.48214285714285715,"right":0.798828125,"top":0.8035714285714286},"atlasBounds":{"left":206.5,"bottom":479.5,"right":234.5,"top":515.5}},{"unicode":963,"advance":0.6171875,"planeBounds":{"left":-0.22150530133928573,"bottom":-0.26785714285714285,"right":0.84992327008928559,"top":0.80357142857142849},"atlasBounds":{"left":113.5,"bottom":200.5,"right":143.5,"top":230.5}},{"unicode":964,"advance":0.39501953125,"planeBounds":{"left":-0.23130580357142858,"bottom":-0.26785714285714285,"right":0.6258370535714286,"top":0.80357142857142849},"atlasBounds":{"left":263.5,"bottom":397.5,"right":287.5,"top":427.5}},{"unicode":965,"advance":0.546875,"planeBounds":{"left":-0.1903599330357143,"bottom":-0.26785714285714285,"right":0.73821149553571419,"top":0.80357142857142849},"atlasBounds":{"left":235.5,"bottom":55.5,"right":261.5,"top":85.5}},{"unicode":966,"advance":0.6484375,"planeBounds":{"left":-0.22910853794642858,"bottom":-0.48214285714285715,"right":0.8780343191964286,"top":0.8035714285714286},"atlasBounds":{"left":113.5,"bottom":920.5,"right":144.5,"top":956.5}},{"unicode":967,"advance":0.52490234375,"planeBounds":{"left":-0.25589425223214285,"bottom":-0.48214285714285715,"right":0.7798200334821429,"top":0.8035714285714286},"atlasBounds":{"left":145.5,"bottom":232.5,"right":174.5,"top":268.5}},{"unicode":968,"advance":0.712890625,"planeBounds":{"left":-0.19737025669642858,"bottom":-0.48214285714285715,"right":0.9097726004464286,"top":0.8035714285714286},"atlasBounds":{"left":113.5,"bottom":883.5,"right":144.5,"top":919.5}},{"unicode":969,"advance":0.78076171875,"planeBounds":{"left":-0.21676199776785715,"bottom":-0.26785714285714285,"right":0.99752371651785698,"top":0.80357142857142849},"atlasBounds":{"left":44.5,"bottom":596.5,"right":78.5,"top":626.5}},{"unicode":970,"advance":0.22216796875,"planeBounds":{"left":-0.27884347098214285,"bottom":-0.26785714285714285,"right":0.50687081473214279,"top":0.9821428571428571},"atlasBounds":{"left":263.5,"bottom":222.5,"right":285.5,"top":257.5}},{"unicode":971,"advance":0.546875,"planeBounds":{"left":-0.1903599330357143,"bottom":-0.26785714285714285,"right":0.73821149553571419,"top":0.9821428571428571},"atlasBounds":{"left":263.5,"bottom":786.5,"right":289.5,"top":821.5}},{"unicode":972,"advance":0.55615234375,"planeBounds":{"left":-0.223876953125,"bottom":-0.26785714285714285,"right":0.776123046875,"top":0.9821428571428571},"atlasBounds":{"left":176.5,"bottom":118.5,"right":204.5,"top":153.5}},{"unicode":973,"advance":0.546875,"planeBounds":{"left":-0.1903599330357143,"bottom":-0.26785714285714285,"right":0.73821149553571419,"top":0.9821428571428571},"atlasBounds":{"left":263.5,"bottom":682.5,"right":289.5,"top":717.5}},{"unicode":1025,"advance":0.6669921875,"planeBounds":{"left":-0.17166573660714288,"bottom":-0.26785714285714285,"right":0.8640485491071429,"top":1.125},"atlasBounds":{"left":145.5,"bottom":300.5,"right":174.5,"top":339.5}},{"unicode":1026,"advance":0.86474609375,"planeBounds":{"left":-0.2361537388392857,"bottom":-0.26785714285714285,"right":1.0852748325892856,"top":0.9821428571428571},"atlasBounds":{"left":0.5,"bottom":657.5,"right":37.5,"top":692.5}},{"unicode":1028,"advance":0.71875,"planeBounds":{"left":-0.20318448505704365,"bottom":-0.26785714285714285,"right":0.93967265780009912,"top":0.9821428571428571},"atlasBounds":{"left":79.5,"bottom":294.5,"right":111.5,"top":329.5}},{"unicode":1029,"advance":0.6669921875,"planeBounds":{"left":-0.20588030133928573,"bottom":-0.26785714285714285,"right":0.86554827008928559,"top":0.9821428571428571},"atlasBounds":{"left":113.5,"bottom":698.5,"right":143.5,"top":733.5}},{"unicode":1030,"advance":0.27783203125,"planeBounds":{"left":-0.16294642857142858,"bottom":-0.26785714285714285,"right":0.4441964285714286,"top":0.9821428571428571},"atlasBounds":{"left":389.5,"bottom":988.5,"right":406.5,"top":1023.5}},{"unicode":1031,"advance":0.27783203125,"planeBounds":{"left":-0.25394112723214285,"bottom":-0.26785714285714285,"right":0.53177315848214279,"top":1.125},"atlasBounds":{"left":290.5,"bottom":984.5,"right":312.5,"top":1023.5}},{"unicode":1032,"advance":0.5,"planeBounds":{"left":-0.2387366282008086,"bottom":-0.26785714285714285,"right":0.68983480037061995,"top":0.9821428571428571},"atlasBounds":{"left":235.5,"bottom":227.5,"right":261.5,"top":262.5}},{"unicode":1033,"advance":1.05712890625,"planeBounds":{"left":-0.25467354910714285,"bottom":-0.26785714285714285,"right":1.2810407366071428,"top":0.9821428571428571},"atlasBounds":{"left":0.5,"bottom":988.5,"right":43.5,"top":1023.5}},{"unicode":1034,"advance":1.01025390625,"planeBounds":{"left":-0.1876743861607143,"bottom":-0.26785714285714285,"right":1.2408970424107142,"top":0.9821428571428571},"atlasBounds":{"left":0.5,"bottom":874.5,"right":40.5,"top":909.5}},{"unicode":1035,"advance":0.85400390625,"planeBounds":{"left":-0.22659737723214288,"bottom":-0.26785714285714285,"right":1.0591169084821428,"top":0.9821428571428571},"atlasBounds":{"left":0.5,"bottom":440.5,"right":36.5,"top":475.5}},{"unicode":1038,"advance":0.63525390625,"planeBounds":{"left":-0.25282505580357145,"bottom":-0.26785714285714285,"right":0.89003208705357129,"top":1.1607142857142856},"atlasBounds":{"left":79.5,"bottom":253.5,"right":111.5,"top":293.5}},{"unicode":1039,"advance":0.71875,"planeBounds":{"left":-0.17609514508928573,"bottom":-0.48214285714285715,"right":0.89533342633928559,"top":0.98214285714285698},"atlasBounds":{"left":113.5,"bottom":841.5,"right":143.5,"top":882.5}},{"unicode":1040,"advance":0.6669921875,"planeBounds":{"left":-0.2557896205357143,"bottom":-0.26785714285714285,"right":0.92278180803571419,"top":0.9821428571428571},"atlasBounds":{"left":79.5,"bottom":701.5,"right":112.5,"top":736.5}},{"unicode":1041,"advance":0.65625,"planeBounds":{"left":-0.18439592633928573,"bottom":-0.26785714285714285,"right":0.88703264508928559,"top":0.9821428571428571},"atlasBounds":{"left":145.5,"bottom":988.5,"right":175.5,"top":1023.5}},{"unicode":1042,"advance":0.6669921875,"planeBounds":{"left":-0.19220842633928573,"bottom":-0.26785714285714285,"right":0.87922014508928559,"top":0.9821428571428571},"atlasBounds":{"left":113.5,"bottom":626.5,"right":143.5,"top":661.5}},{"unicode":1043,"advance":0.54150390625,"planeBounds":{"left":-0.17208426339285715,"bottom":-0.26785714285714285,"right":0.7922014508928571,"top":0.9821428571428571},"atlasBounds":{"left":206.5,"bottom":28.5,"right":233.5,"top":63.5}},{"unicode":1044,"advance":0.67724609375,"planeBounds":{"left":-0.25038364955357145,"bottom":-0.44642857142857145,"right":0.89247349330357129,"top":0.9821428571428571},"atlasBounds":{"left":79.5,"bottom":212.5,"right":111.5,"top":252.5}},{"unicode":1045,"advance":0.6669921875,"planeBounds":{"left":-0.17166573660714288,"bottom":-0.26785714285714285,"right":0.8640485491071429,"top":0.9821428571428571},"atlasBounds":{"left":145.5,"bottom":412.5,"right":174.5,"top":447.5}},{"unicode":1046,"advance":0.92333984375,"planeBounds":{"left":-0.2528599330357143,"bottom":-0.26785714285714285,"right":1.1757114955357142,"top":0.9821428571428571},"atlasBounds":{"left":0.5,"bottom":838.5,"right":40.5,"top":873.5}},{"unicode":1047,"advance":0.60400390625,"planeBounds":{"left":-0.21707589285714288,"bottom":-0.26785714285714285,"right":0.8186383928571429,"top":0.9821428571428571},"atlasBounds":{"left":145.5,"bottom":340.5,"right":174.5,"top":375.5}},{"unicode":1048,"advance":0.71875,"planeBounds":{"left":-0.17609514508928573,"bottom":-0.26785714285714285,"right":0.89533342633928559,"top":0.9821428571428571},"atlasBounds":{"left":113.5,"bottom":128.5,"right":143.5,"top":163.5}},{"unicode":1049,"advance":0.71875,"planeBounds":{"left":-0.17609514508928573,"bottom":-0.26785714285714285,"right":0.89533342633928559,"top":1.1607142857142856},"atlasBounds":{"left":145.5,"bottom":520.5,"right":175.5,"top":560.5}},{"unicode":1050,"advance":0.58251953125,"planeBounds":{"left":-0.18899972098214285,"bottom":-0.26785714285714285,"right":0.8467145647321429,"top":0.9821428571428571},"atlasBounds":{"left":176.5,"bottom":988.5,"right":205.5,"top":1023.5}},{"unicode":1051,"advance":0.65625,"planeBounds":{"left":-0.2425013950892857,"bottom":-0.26785714285714285,"right":0.82892717633928559,"top":0.9821428571428571},"atlasBounds":{"left":113.5,"bottom":92.5,"right":143.5,"top":127.5}},{"unicode":1052,"advance":0.8330078125,"planeBounds":{"left":-0.19137137276785715,"bottom":-0.26785714285714285,"right":1.022914341517857,"top":0.9821428571428571},"atlasBounds":{"left":44.5,"bottom":560.5,"right":78.5,"top":595.5}},{"unicode":1053,"advance":0.72216796875,"planeBounds":{"left":-0.17487444196428573,"bottom":-0.26785714285714285,"right":0.89655412946428559,"top":0.9821428571428571},"atlasBounds":{"left":113.5,"bottom":164.5,"right":143.5,"top":199.5}},{"unicode":1054,"advance":0.77783203125,"planeBounds":{"left":-0.21651785714285715,"bottom":-0.26785714285714285,"right":0.99776785714285698,"top":0.9821428571428571},"atlasBounds":{"left":44.5,"bottom":524.5,"right":78.5,"top":559.5}},{"unicode":1055,"advance":0.71875,"planeBounds":{"left":-0.17609514508928573,"bottom":-0.26785714285714285,"right":0.89533342633928559,"top":0.9821428571428571},"atlasBounds":{"left":113.5,"bottom":487.5,"right":143.5,"top":522.5}},{"unicode":1056,"advance":0.6669921875,"planeBounds":{"left":-0.18537248883928573,"bottom":-0.26785714285714285,"right":0.88605608258928559,"top":0.9821428571428571},"atlasBounds":{"left":113.5,"bottom":769.5,"right":143.5,"top":804.5}},{"unicode":1057,"advance":0.72216796875,"planeBounds":{"left":-0.20521763392857142,"bottom":-0.26785714285714285,"right":0.93763950892857129,"top":0.9821428571428571},"atlasBounds":{"left":79.5,"bottom":629.5,"right":111.5,"top":664.5}},{"unicode":1058,"advance":0.61083984375,"planeBounds":{"left":-0.22858537946428573,"bottom":-0.26785714285714285,"right":0.84284319196428559,"top":0.9821428571428571},"atlasBounds":{"left":145.5,"bottom":952.5,"right":175.5,"top":987.5}},{"unicode":1059,"advance":0.63525390625,"planeBounds":{"left":-0.25282505580357145,"bottom":-0.26785714285714285,"right":0.89003208705357129,"top":0.9821428571428571},"atlasBounds":{"left":79.5,"bottom":330.5,"right":111.5,"top":365.5}},{"unicode":1060,"advance":0.76025390625,"planeBounds":{"left":-0.22726004464285715,"bottom":-0.26785714285714285,"right":0.98702566964285698,"top":0.9821428571428571},"atlasBounds":{"left":44.5,"bottom":488.5,"right":78.5,"top":523.5}},{"unicode":1061,"advance":0.6669921875,"planeBounds":{"left":-0.2567661830357143,"bottom":-0.26785714285714285,"right":0.92180524553571419,"top":0.9821428571428571},"atlasBounds":{"left":79.5,"bottom":768.5,"right":112.5,"top":803.5}},{"unicode":1062,"advance":0.73974609375,"planeBounds":{"left":-0.17958286830357142,"bottom":-0.48214285714285715,"right":0.96327427455357129,"top":0.98214285714285698},"atlasBounds":{"left":79.5,"bottom":366.5,"right":111.5,"top":407.5}},{"unicode":1063,"advance":0.66650390625,"planeBounds":{"left":-0.22052873883928573,"bottom":-0.26785714285714285,"right":0.85089983258928559,"top":0.9821428571428571},"atlasBounds":{"left":145.5,"bottom":592.5,"right":175.5,"top":627.5}},{"unicode":1064,"advance":0.91650390625,"planeBounds":{"left":-0.18436104910714288,"bottom":-0.26785714285714285,"right":1.1013532366071428,"top":0.9821428571428571},"atlasBounds":{"left":0.5,"bottom":404.5,"right":36.5,"top":439.5}},{"unicode":1065,"advance":0.9375,"planeBounds":{"left":-0.18760463169642858,"bottom":-0.48214285714285715,"right":1.1695382254464286,"top":0.98214285714285698},"atlasBounds":{"left":0.5,"bottom":693.5,"right":38.5,"top":734.5}},{"unicode":1066,"advance":0.79150390625,"planeBounds":{"left":-0.26419503348214285,"bottom":-0.26785714285714285,"right":1.0215192522321428,"top":0.9821428571428571},"atlasBounds":{"left":0.5,"bottom":368.5,"right":36.5,"top":403.5}},{"unicode":1067,"advance":0.88525390625,"planeBounds":{"left":-0.182861328125,"bottom":-0.26785714285714285,"right":1.067138671875,"top":0.9821428571428571},"atlasBounds":{"left":0.5,"bottom":150.5,"right":35.5,"top":185.5}},{"unicode":1068,"advance":0.65625,"planeBounds":{"left":-0.18537248883928573,"bottom":-0.26785714285714285,"right":0.88605608258928559,"top":0.9821428571428571},"atlasBounds":{"left":145.5,"bottom":916.5,"right":175.5,"top":951.5}},{"unicode":1069,"advance":0.71875,"planeBounds":{"left":-0.21555247077249401,"bottom":-0.26785714285714285,"right":0.92730467208464873,"top":0.9821428571428571},"atlasBounds":{"left":79.5,"bottom":439.5,"right":111.5,"top":474.5}},{"unicode":1070,"advance":1.01025390625,"planeBounds":{"left":-0.17665318080357142,"bottom":-0.26785714285714285,"right":1.2162039620535714,"top":0.9821428571428571},"atlasBounds":{"left":0.5,"bottom":766.5,"right":39.5,"top":801.5}},{"unicode":1071,"advance":0.72216796875,"planeBounds":{"left":-0.24330357142857145,"bottom":-0.26785714285714285,"right":0.89955357142857129,"top":0.9821428571428571},"atlasBounds":{"left":79.5,"bottom":557.5,"right":111.5,"top":592.5}},{"unicode":1072,"advance":0.55615234375,"planeBounds":{"left":-0.22509765625,"bottom":-0.26785714285714285,"right":0.77490234375,"top":0.80357142857142849},"atlasBounds":{"left":206.5,"bottom":375.5,"right":234.5,"top":405.5}},{"unicode":1073,"advance":0.57275390625,"planeBounds":{"left":-0.211181640625,"bottom":-0.26785714285714285,"right":0.788818359375,"top":1.0178571428571428},"atlasBounds":{"left":176.5,"bottom":81.5,"right":204.5,"top":117.5}},{"unicode":1074,"advance":0.53125,"planeBounds":{"left":-0.1849888392857143,"bottom":-0.26785714285714285,"right":0.74358258928571419,"top":0.80357142857142849},"atlasBounds":{"left":263.5,"bottom":993.5,"right":289.5,"top":1023.5}},{"unicode":1075,"advance":0.36474609375,"planeBounds":{"left":-0.19513811383928573,"bottom":-0.26785714285714285,"right":0.62629045758928559,"top":0.80357142857142849},"atlasBounds":{"left":263.5,"bottom":330.5,"right":286.5,"top":360.5}},{"unicode":1076,"advance":0.58349609375,"planeBounds":{"left":-0.2593470982142857,"bottom":-0.4107142857142857,"right":0.81208147321428559,"top":0.80357142857142838},"atlasBounds":{"left":113.5,"bottom":734.5,"right":143.5,"top":768.5}},{"unicode":1077,"advance":0.55615234375,"planeBounds":{"left":-0.224365234375,"bottom":-0.26785714285714285,"right":0.775634765625,"top":0.80357142857142849},"atlasBounds":{"left":176.5,"bottom":359.5,"right":204.5,"top":389.5}},{"unicode":1078,"advance":0.6689453125,"planeBounds":{"left":-0.2545689174107143,"bottom":-0.26785714285714285,"right":0.92400251116071419,"top":0.80357142857142849},"atlasBounds":{"left":44.5,"bottom":390.5,"right":77.5,"top":420.5}},{"unicode":1079,"advance":0.45849609375,"planeBounds":{"left":-0.2406529017857143,"bottom":-0.26785714285714285,"right":0.68791852678571419,"top":0.80357142857142849},"atlasBounds":{"left":235.5,"bottom":294.5,"right":261.5,"top":324.5}},{"unicode":1080,"advance":0.55859375,"planeBounds":{"left":-0.1852329799107143,"bottom":-0.26785714285714285,"right":0.74333844866071419,"top":0.80357142857142849},"atlasBounds":{"left":235.5,"bottom":397.5,"right":261.5,"top":427.5}},{"unicode":1081,"advance":0.55859375,"planeBounds":{"left":-0.1852329799107143,"bottom":-0.26785714285714285,"right":0.74333844866071419,"top":0.9821428571428571},"atlasBounds":{"left":235.5,"bottom":325.5,"right":261.5,"top":360.5}},{"unicode":1082,"advance":0.4375,"planeBounds":{"left":-0.19105747767857142,"bottom":-0.26785714285714285,"right":0.7017996651785714,"top":0.80357142857142849},"atlasBounds":{"left":263.5,"bottom":538.5,"right":288.5,"top":568.5}},{"unicode":1083,"advance":0.58349609375,"planeBounds":{"left":-0.25345284598214285,"bottom":-0.26785714285714285,"right":0.7822614397321429,"top":0.80357142857142849},"atlasBounds":{"left":145.5,"bottom":269.5,"right":174.5,"top":299.5}},{"unicode":1084,"advance":0.6875,"planeBounds":{"left":-0.19196428571428573,"bottom":-0.26785714285714285,"right":0.87946428571428559,"top":0.80357142857142849},"atlasBounds":{"left":145.5,"bottom":561.5,"right":175.5,"top":591.5}},{"unicode":1085,"advance":0.55224609375,"planeBounds":{"left":-0.1881626674107143,"bottom":-0.26785714285714285,"right":0.74040876116071419,"top":0.80357142857142849},"atlasBounds":{"left":235.5,"bottom":86.5,"right":261.5,"top":116.5}},{"unicode":1086,"advance":0.55615234375,"planeBounds":{"left":-0.223876953125,"bottom":-0.26785714285714285,"right":0.776123046875,"top":0.80357142857142849},"atlasBounds":{"left":176.5,"bottom":221.5,"right":204.5,"top":251.5}},{"unicode":1087,"advance":0.54150390625,"planeBounds":{"left":-0.1932896205357143,"bottom":-0.26785714285714285,"right":0.73528180803571419,"top":0.80357142857142849},"atlasBounds":{"left":235.5,"bottom":196.5,"right":261.5,"top":226.5}},{"unicode":1088,"advance":0.55615234375,"planeBounds":{"left":-0.19112723214285715,"bottom":-0.48214285714285715,"right":0.7731584821428571,"top":0.8035714285714286},"atlasBounds":{"left":206.5,"bottom":142.5,"right":233.5,"top":178.5}},{"unicode":1089,"advance":0.5,"planeBounds":{"left":-0.21725027901785715,"bottom":-0.26785714285714285,"right":0.7470354352678571,"top":0.80357142857142849},"atlasBounds":{"left":206.5,"bottom":210.5,"right":233.5,"top":240.5}},{"unicode":1090,"advance":0.4580078125,"planeBounds":{"left":-0.2350376674107143,"bottom":-0.26785714285714285,"right":0.69353376116071419,"top":0.80357142857142849},"atlasBounds":{"left":263.5,"bottom":889.5,"right":289.5,"top":919.5}},{"unicode":1091,"advance":0.5,"planeBounds":{"left":-0.246337890625,"bottom":-0.48214285714285715,"right":0.753662109375,"top":0.8035714285714286},"atlasBounds":{"left":206.5,"bottom":956.5,"right":234.5,"top":992.5}},{"unicode":1092,"advance":0.82275390625,"planeBounds":{"left":-0.213623046875,"bottom":-0.48214285714285715,"right":1.036376953125,"top":0.98214285714285698},"atlasBounds":{"left":0.5,"bottom":108.5,"right":35.5,"top":149.5}},{"unicode":1093,"advance":0.5,"planeBounds":{"left":-0.25,"bottom":-0.26785714285714285,"right":0.75,"top":0.80357142857142849},"atlasBounds":{"left":176.5,"bottom":154.5,"right":204.5,"top":184.5}},{"unicode":1094,"advance":0.57275390625,"planeBounds":{"left":-0.19482421875,"bottom":-0.4107142857142857,"right":0.80517578125,"top":0.80357142857142838},"atlasBounds":{"left":176.5,"bottom":252.5,"right":204.5,"top":286.5}},{"unicode":1095,"advance":0.52099609375,"planeBounds":{"left":-0.2201450892857143,"bottom":-0.26785714285714285,"right":0.70842633928571419,"top":0.80357142857142849},"atlasBounds":{"left":235.5,"bottom":263.5,"right":261.5,"top":293.5}},{"unicode":1096,"advance":0.80224609375,"planeBounds":{"left":-0.1884068080357143,"bottom":-0.26785714285714285,"right":0.99016462053571419,"top":0.80357142857142849},"atlasBounds":{"left":44.5,"bottom":457.5,"right":77.5,"top":487.5}},{"unicode":1097,"advance":0.82275390625,"planeBounds":{"left":-0.195068359375,"bottom":-0.4107142857142857,"right":1.054931640625,"top":0.80357142857142838},"atlasBounds":{"left":0.5,"bottom":73.5,"right":35.5,"top":107.5}},{"unicode":1098,"advance":0.625,"planeBounds":{"left":-0.23127092633928573,"bottom":-0.26785714285714285,"right":0.84015764508928559,"top":0.80357142857142849},"atlasBounds":{"left":113.5,"bottom":523.5,"right":143.5,"top":553.5}},{"unicode":1099,"advance":0.71875,"planeBounds":{"left":-0.19590541294642858,"bottom":-0.26785714285714285,"right":0.9112374441964286,"top":0.80357142857142849},"atlasBounds":{"left":113.5,"bottom":993.5,"right":144.5,"top":1023.5}},{"unicode":1100,"advance":0.52099609375,"planeBounds":{"left":-0.1869419642857143,"bottom":-0.26785714285714285,"right":0.74162946428571419,"top":0.80357142857142849},"atlasBounds":{"left":263.5,"bottom":822.5,"right":289.5,"top":852.5}},{"unicode":1101,"advance":0.51025390625,"planeBounds":{"left":-0.23378423334478027,"bottom":-0.26785714285714285,"right":0.73050148094093403,"top":0.80357142857142849},"atlasBounds":{"left":206.5,"bottom":179.5,"right":233.5,"top":209.5}},{"unicode":1102,"advance":0.75,"planeBounds":{"left":-0.18324497767857142,"bottom":-0.26785714285714285,"right":0.95961216517857129,"top":0.80357142857142849},"atlasBounds":{"left":79.5,"bottom":408.5,"right":111.5,"top":438.5}},{"unicode":1103,"advance":0.54150390625,"planeBounds":{"left":-0.23751395089285715,"bottom":-0.26785714285714285,"right":0.7267717633928571,"top":0.80357142857142849},"atlasBounds":{"left":206.5,"bottom":241.5,"right":233.5,"top":271.5}},{"unicode":1105,"advance":0.55615234375,"planeBounds":{"left":-0.224365234375,"bottom":-0.26785714285714285,"right":0.775634765625,"top":0.9821428571428571},"atlasBounds":{"left":206.5,"bottom":406.5,"right":234.5,"top":441.5}},{"unicode":1106,"advance":0.55615234375,"planeBounds":{"left":-0.255859375,"bottom":-0.48214285714285715,"right":0.744140625,"top":0.98214285714285698},"atlasBounds":{"left":176.5,"bottom":654.5,"right":204.5,"top":695.5}},{"unicode":1108,"advance":0.51025390625,"planeBounds":{"left":-0.21780616844093401,"bottom":-0.26785714285714285,"right":0.74647954584478027,"top":0.80357142857142849},"atlasBounds":{"left":235.5,"bottom":859.5,"right":262.5,"top":889.5}},{"unicode":1109,"advance":0.5,"planeBounds":{"left":-0.23604910714285715,"bottom":-0.26785714285714285,"right":0.7282366071428571,"top":0.80357142857142849},"atlasBounds":{"left":206.5,"bottom":344.5,"right":233.5,"top":374.5}},{"unicode":1110,"advance":0.22216796875,"planeBounds":{"left":-0.19321986607142858,"bottom":-0.26785714285714285,"right":0.4139229910714286,"top":0.9821428571428571},"atlasBounds":{"left":425.5,"bottom":988.5,"right":442.5,"top":1023.5}},{"unicode":1111,"advance":0.27783203125,"planeBounds":{"left":-0.25149972098214285,"bottom":-0.26785714285714285,"right":0.53421456473214279,"top":0.9821428571428571},"atlasBounds":{"left":263.5,"bottom":122.5,"right":285.5,"top":157.5}},{"unicode":1112,"advance":0.22216796875,"planeBounds":{"left":-0.30343191964285715,"bottom":-0.48214285714285715,"right":0.4108537946428571,"top":0.98214285714285698},"atlasBounds":{"left":313.5,"bottom":942.5,"right":333.5,"top":983.5}},{"unicode":1113,"advance":0.90625,"planeBounds":{"left":-0.25624302455357145,"bottom":-0.26785714285714285,"right":1.1366141183035712,"top":0.80357142857142849},"atlasBounds":{"left":0.5,"bottom":735.5,"right":39.5,"top":765.5}},{"unicode":1114,"advance":0.8125,"planeBounds":{"left":-0.18624441964285715,"bottom":-0.26785714285714285,"right":1.028041294642857,"top":0.80357142857142849},"atlasBounds":{"left":0.5,"bottom":42.5,"right":34.5,"top":72.5}},{"unicode":1115,"advance":0.55615234375,"planeBounds":{"left":-0.255859375,"bottom":-0.26785714285714285,"right":0.744140625,"top":0.9821428571428571},"atlasBounds":{"left":176.5,"bottom":287.5,"right":204.5,"top":322.5}},{"unicode":1118,"advance":0.5,"planeBounds":{"left":-0.246337890625,"bottom":-0.48214285714285715,"right":0.753662109375,"top":0.98214285714285698},"atlasBounds":{"left":176.5,"bottom":696.5,"right":204.5,"top":737.5}},{"unicode":1119,"advance":0.55224609375,"planeBounds":{"left":-0.1881626674107143,"bottom":-0.4107142857142857,"right":0.74040876116071419,"top":0.80357142857142838},"atlasBounds":{"left":263.5,"bottom":647.5,"right":289.5,"top":681.5}},{"unicode":1168,"advance":0.48876953125,"planeBounds":{"left":-0.17762974330357142,"bottom":-0.26785714285714285,"right":0.7152273995535714,"top":1.1964285714285712},"atlasBounds":{"left":263.5,"bottom":569.5,"right":288.5,"top":610.5}},{"unicode":1169,"advance":0.4111328125,"planeBounds":{"left":-0.18708147321428573,"bottom":-0.26785714285714285,"right":0.63434709821428559,"top":0.9821428571428571},"atlasBounds":{"left":263.5,"bottom":294.5,"right":286.5,"top":329.5}},{"unicode":8216,"advance":0.22216796875,"planeBounds":{"left":-0.19004603794642858,"bottom":0.23214285714285712,"right":0.4170968191964286,"top":0.9821428571428571},"atlasBounds":{"left":597.5,"bottom":1002.5,"right":614.5,"top":1023.5}},{"unicode":8217,"advance":0.22216796875,"planeBounds":{"left":-0.19981166294642858,"bottom":0.23214285714285712,"right":0.4073311941964286,"top":0.9821428571428571},"atlasBounds":{"left":579.5,"bottom":1002.5,"right":596.5,"top":1023.5}},{"unicode":8220,"advance":0.3330078125,"planeBounds":{"left":-0.22562081473214285,"bottom":0.23214285714285712,"right":0.56009347098214279,"top":0.9821428571428571},"atlasBounds":{"left":263.5,"bottom":100.5,"right":285.5,"top":121.5}},{"unicode":8221,"advance":0.3330078125,"planeBounds":{"left":-0.23148018973214285,"bottom":0.23214285714285712,"right":0.55423409598214279,"top":0.9821428571428571},"atlasBounds":{"left":263.5,"bottom":200.5,"right":285.5,"top":221.5}},{"unicode":8364,"advance":0.55615234375,"planeBounds":{"left":-0.2722865513392857,"bottom":-0.26785714285714285,"right":0.79914202008928559,"top":0.9821428571428571},"atlasBounds":{"left":113.5,"bottom":379.5,"right":143.5,"top":414.5}}],"kerning":[{"unicode1":32,"unicode2":65,"advance":-0.05517578125},{"unicode1":32,"unicode2":84,"advance":-0.01806640625},{"unicode1":32,"unicode2":89,"advance":-0.01806640625},{"unicode1":32,"unicode2":902,"advance":-0.05517578125},{"unicode1":32,"unicode2":913,"advance":-0.05517578125},{"unicode1":32,"unicode2":916,"advance":-0.05517578125},{"unicode1":32,"unicode2":923,"advance":-0.05517578125},{"unicode1":32,"unicode2":932,"advance":-0.01806640625},{"unicode1":32,"unicode2":933,"advance":-0.01806640625},{"unicode1":32,"unicode2":939,"advance":-0.01806640625},{"unicode1":49,"unicode2":49,"advance":-0.07421875},{"unicode1":65,"unicode2":32,"advance":-0.05517578125},{"unicode1":65,"unicode2":84,"advance":-0.07421875},{"unicode1":65,"unicode2":86,"advance":-0.07421875},{"unicode1":65,"unicode2":87,"advance":-0.037109375},{"unicode1":65,"unicode2":89,"advance":-0.07421875},{"unicode1":65,"unicode2":118,"advance":-0.01806640625},{"unicode1":65,"unicode2":119,"advance":-0.01806640625},{"unicode1":65,"unicode2":121,"advance":-0.01806640625},{"unicode1":65,"unicode2":8217,"advance":-0.07421875},{"unicode1":70,"unicode2":44,"advance":-0.11083984375},{"unicode1":70,"unicode2":46,"advance":-0.11083984375},{"unicode1":70,"unicode2":65,"advance":-0.05517578125},{"unicode1":76,"unicode2":32,"advance":-0.037109375},{"unicode1":76,"unicode2":84,"advance":-0.07421875},{"unicode1":76,"unicode2":86,"advance":-0.07421875},{"unicode1":76,"unicode2":87,"advance":-0.07421875},{"unicode1":76,"unicode2":89,"advance":-0.07421875},{"unicode1":76,"unicode2":121,"advance":-0.037109375},{"unicode1":76,"unicode2":8217,"advance":-0.05517578125},{"unicode1":80,"unicode2":32,"advance":-0.01806640625},{"unicode1":80,"unicode2":44,"advance":-0.12890625},{"unicode1":80,"unicode2":46,"advance":-0.12890625},{"unicode1":80,"unicode2":65,"advance":-0.07421875},{"unicode1":82,"unicode2":84,"advance":-0.01806640625},{"unicode1":82,"unicode2":86,"advance":-0.01806640625},{"unicode1":82,"unicode2":87,"advance":-0.01806640625},{"unicode1":82,"unicode2":89,"advance":-0.01806640625},{"unicode1":84,"unicode2":32,"advance":-0.01806640625},{"unicode1":84,"unicode2":44,"advance":-0.11083984375},{"unicode1":84,"unicode2":45,"advance":-0.05517578125},{"unicode1":84,"unicode2":46,"advance":-0.11083984375},{"unicode1":84,"unicode2":58,"advance":-0.11083984375},{"unicode1":84,"unicode2":59,"advance":-0.11083984375},{"unicode1":84,"unicode2":65,"advance":-0.07421875},{"unicode1":84,"unicode2":79,"advance":-0.01806640625},{"unicode1":84,"unicode2":97,"advance":-0.11083984375},{"unicode1":84,"unicode2":99,"advance":-0.11083984375},{"unicode1":84,"unicode2":101,"advance":-0.11083984375},{"unicode1":84,"unicode2":105,"advance":-0.037109375},{"unicode1":84,"unicode2":111,"advance":-0.11083984375},{"unicode1":84,"unicode2":114,"advance":-0.037109375},{"unicode1":84,"unicode2":115,"advance":-0.11083984375},{"unicode1":84,"unicode2":117,"advance":-0.037109375},{"unicode1":84,"unicode2":119,"advance":-0.05517578125},{"unicode1":84,"unicode2":121,"advance":-0.05517578125},{"unicode1":86,"unicode2":44,"advance":-0.091796875},{"unicode1":86,"unicode2":45,"advance":-0.05517578125},{"unicode1":86,"unicode2":46,"advance":-0.091796875},{"unicode1":86,"unicode2":58,"advance":-0.037109375},{"unicode1":86,"unicode2":59,"advance":-0.037109375},{"unicode1":86,"unicode2":65,"advance":-0.07421875},{"unicode1":86,"unicode2":97,"advance":-0.07421875},{"unicode1":86,"unicode2":101,"advance":-0.05517578125},{"unicode1":86,"unicode2":105,"advance":-0.01806640625},{"unicode1":86,"unicode2":111,"advance":-0.05517578125},{"unicode1":86,"unicode2":114,"advance":-0.037109375},{"unicode1":86,"unicode2":117,"advance":-0.037109375},{"unicode1":86,"unicode2":121,"advance":-0.037109375},{"unicode1":87,"unicode2":44,"advance":-0.05517578125},{"unicode1":87,"unicode2":45,"advance":-0.01806640625},{"unicode1":87,"unicode2":46,"advance":-0.05517578125},{"unicode1":87,"unicode2":58,"advance":-0.01806640625},{"unicode1":87,"unicode2":59,"advance":-0.01806640625},{"unicode1":87,"unicode2":65,"advance":-0.037109375},{"unicode1":87,"unicode2":97,"advance":-0.037109375},{"unicode1":87,"unicode2":101,"advance":-0.01806640625},{"unicode1":87,"unicode2":111,"advance":-0.01806640625},{"unicode1":87,"unicode2":114,"advance":-0.01806640625},{"unicode1":87,"unicode2":117,"advance":-0.01806640625},{"unicode1":87,"unicode2":121,"advance":-0.0087890625},{"unicode1":89,"unicode2":32,"advance":-0.01806640625},{"unicode1":89,"unicode2":44,"advance":-0.12890625},{"unicode1":89,"unicode2":45,"advance":-0.091796875},{"unicode1":89,"unicode2":46,"advance":-0.12890625},{"unicode1":89,"unicode2":58,"advance":-0.05517578125},{"unicode1":89,"unicode2":59,"advance":-0.06494140625},{"unicode1":89,"unicode2":65,"advance":-0.07421875},{"unicode1":89,"unicode2":97,"advance":-0.07421875},{"unicode1":89,"unicode2":101,"advance":-0.091796875},{"unicode1":89,"unicode2":105,"advance":-0.037109375},{"unicode1":89,"unicode2":111,"advance":-0.091796875},{"unicode1":89,"unicode2":112,"advance":-0.07421875},{"unicode1":89,"unicode2":113,"advance":-0.091796875},{"unicode1":89,"unicode2":117,"advance":-0.05517578125},{"unicode1":89,"unicode2":118,"advance":-0.05517578125},{"unicode1":102,"unicode2":102,"advance":-0.01806640625},{"unicode1":102,"unicode2":8217,"advance":0.01806640625},{"unicode1":114,"unicode2":44,"advance":-0.05517578125},{"unicode1":114,"unicode2":46,"advance":-0.05517578125},{"unicode1":114,"unicode2":8217,"advance":0.037109375},{"unicode1":118,"unicode2":44,"advance":-0.07421875},{"unicode1":118,"unicode2":46,"advance":-0.07421875},{"unicode1":119,"unicode2":44,"advance":-0.05517578125},{"unicode1":119,"unicode2":46,"advance":-0.05517578125},{"unicode1":121,"unicode2":44,"advance":-0.07421875},{"unicode1":121,"unicode2":46,"advance":-0.07421875},{"unicode1":8216,"unicode2":8216,"advance":-0.01806640625},{"unicode1":8217,"unicode2":32,"advance":-0.037109375},{"unicode1":8217,"unicode2":115,"advance":-0.01806640625},{"unicode1":8217,"unicode2":8217,"advance":-0.01806640625},{"unicode1":915,"unicode2":44,"advance":-0.10986328125},{"unicode1":915,"unicode2":46,"advance":-0.10986328125},{"unicode1":915,"unicode2":912,"advance":0.080078125},{"unicode1":915,"unicode2":913,"advance":-0.091796875},{"unicode1":915,"unicode2":916,"advance":-0.091796875},{"unicode1":915,"unicode2":923,"advance":-0.091796875},{"unicode1":915,"unicode2":953,"advance":-0.04296875},{"unicode1":915,"unicode2":970,"advance":0.04296875},{"unicode1":920,"unicode2":913,"advance":-0.01806640625},{"unicode1":920,"unicode2":916,"advance":-0.01806640625},{"unicode1":920,"unicode2":923,"advance":-0.01806640625},{"unicode1":920,"unicode2":933,"advance":-0.0322265625},{"unicode1":920,"unicode2":939,"advance":-0.0322265625},{"unicode1":934,"unicode2":913,"advance":-0.02880859375},{"unicode1":934,"unicode2":933,"advance":-0.0322265625},{"unicode1":934,"unicode2":939,"advance":-0.0322265625},{"unicode1":948,"unicode2":964,"advance":-0.01416015625},{"unicode1":948,"unicode2":955,"advance":-0.01904296875},{"unicode1":948,"unicode2":967,"advance":-0.02685546875},{"unicode1":948,"unicode2":960,"advance":-0.01416015625},{"unicode1":964,"unicode2":945,"advance":-0.01416015625},{"unicode1":964,"unicode2":948,"advance":-0.01416015625},{"unicode1":964,"unicode2":963,"advance":-0.01416015625},{"unicode1":964,"unicode2":966,"advance":-0.01416015625},{"unicode1":964,"unicode2":940,"advance":-0.01416015625},{"unicode1":964,"unicode2":950,"advance":-0.01416015625},{"unicode1":964,"unicode2":959,"advance":-0.01416015625},{"unicode1":964,"unicode2":969,"advance":-0.01416015625},{"unicode1":966,"unicode2":964,"advance":-0.01416015625},{"unicode1":966,"unicode2":955,"advance":-0.01904296875},{"unicode1":966,"unicode2":967,"advance":-0.02685546875},{"unicode1":966,"unicode2":960,"advance":-0.01416015625},{"unicode1":902,"unicode2":920,"advance":-0.02099609375},{"unicode1":902,"unicode2":934,"advance":-0.02880859375},{"unicode1":902,"unicode2":927,"advance":-0.02099609375},{"unicode1":902,"unicode2":932,"advance":-0.07421875},{"unicode1":902,"unicode2":933,"advance":-0.07421875},{"unicode1":902,"unicode2":939,"advance":-0.07421875},{"unicode1":902,"unicode2":947,"advance":-0.01806640625},{"unicode1":902,"unicode2":957,"advance":-0.01806640625},{"unicode1":902,"unicode2":967,"advance":-0.01806640625},{"unicode1":908,"unicode2":933,"advance":-0.0322265625},{"unicode1":910,"unicode2":920,"advance":-0.05615234375},{"unicode1":910,"unicode2":934,"advance":-0.05615234375},{"unicode1":910,"unicode2":945,"advance":-0.0908203125},{"unicode1":910,"unicode2":963,"advance":-0.0908203125},{"unicode1":910,"unicode2":966,"advance":-0.0908203125},{"unicode1":910,"unicode2":912,"advance":0.0830078125},{"unicode1":910,"unicode2":913,"advance":-0.07421875},{"unicode1":910,"unicode2":916,"advance":-0.07421875},{"unicode1":910,"unicode2":923,"advance":-0.07421875},{"unicode1":910,"unicode2":927,"advance":-0.05615234375},{"unicode1":910,"unicode2":937,"advance":-0.0478515625},{"unicode1":910,"unicode2":943,"advance":-0.037109375},{"unicode1":910,"unicode2":951,"advance":-0.07421875},{"unicode1":910,"unicode2":953,"advance":-0.037109375},{"unicode1":910,"unicode2":954,"advance":-0.07421875},{"unicode1":910,"unicode2":956,"advance":-0.07421875},{"unicode1":910,"unicode2":959,"advance":-0.0908203125},{"unicode1":910,"unicode2":970,"advance":0.0478515625},{"unicode1":910,"unicode2":972,"advance":-0.0908203125},{"unicode1":911,"unicode2":933,"advance":-0.02294921875},{"unicode1":911,"unicode2":939,"advance":-0.02294921875},{"unicode1":913,"unicode2":32,"advance":-0.05517578125},{"unicode1":913,"unicode2":8217,"advance":-0.07421875},{"unicode1":913,"unicode2":920,"advance":-0.02099609375},{"unicode1":913,"unicode2":934,"advance":-0.02880859375},{"unicode1":913,"unicode2":927,"advance":-0.02099609375},{"unicode1":913,"unicode2":932,"advance":-0.07421875},{"unicode1":913,"unicode2":933,"advance":-0.07421875},{"unicode1":913,"unicode2":939,"advance":-0.07421875},{"unicode1":913,"unicode2":947,"advance":-0.01806640625},{"unicode1":913,"unicode2":957,"advance":-0.01806640625},{"unicode1":913,"unicode2":967,"advance":-0.01806640625},{"unicode1":916,"unicode2":32,"advance":-0.05517578125},{"unicode1":916,"unicode2":920,"advance":-0.02099609375},{"unicode1":916,"unicode2":927,"advance":-0.02099609375},{"unicode1":916,"unicode2":932,"advance":-0.05810546875},{"unicode1":916,"unicode2":933,"advance":-0.07421875},{"unicode1":916,"unicode2":939,"advance":-0.07421875},{"unicode1":922,"unicode2":920,"advance":-0.03076171875},{"unicode1":922,"unicode2":934,"advance":-0.05517578125},{"unicode1":922,"unicode2":945,"advance":-0.01220703125},{"unicode1":922,"unicode2":948,"advance":-0.01220703125},{"unicode1":922,"unicode2":963,"advance":-0.01220703125},{"unicode1":922,"unicode2":966,"advance":-0.01220703125},{"unicode1":922,"unicode2":927,"advance":-0.03076171875},{"unicode1":922,"unicode2":940,"advance":-0.01220703125},{"unicode1":922,"unicode2":950,"advance":-0.01220703125},{"unicode1":922,"unicode2":952,"advance":-0.01220703125},{"unicode1":922,"unicode2":958,"advance":-0.01220703125},{"unicode1":922,"unicode2":959,"advance":-0.01220703125},{"unicode1":922,"unicode2":969,"advance":-0.01220703125},{"unicode1":922,"unicode2":972,"advance":-0.01220703125},{"unicode1":923,"unicode2":32,"advance":-0.05517578125},{"unicode1":923,"unicode2":920,"advance":-0.02099609375},{"unicode1":923,"unicode2":927,"advance":-0.02099609375},{"unicode1":923,"unicode2":932,"advance":-0.07421875},{"unicode1":923,"unicode2":933,"advance":-0.07421875},{"unicode1":923,"unicode2":939,"advance":-0.07421875},{"unicode1":927,"unicode2":913,"advance":-0.01806640625},{"unicode1":927,"unicode2":916,"advance":-0.02099609375},{"unicode1":927,"unicode2":923,"advance":-0.01806640625},{"unicode1":927,"unicode2":933,"advance":-0.0322265625},{"unicode1":927,"unicode2":939,"advance":-0.0322265625},{"unicode1":929,"unicode2":32,"advance":-0.01806640625},{"unicode1":929,"unicode2":44,"advance":-0.1279296875},{"unicode1":929,"unicode2":46,"advance":-0.1279296875},{"unicode1":929,"unicode2":913,"advance":-0.07421875},{"unicode1":929,"unicode2":916,"advance":-0.07421875},{"unicode1":929,"unicode2":923,"advance":-0.07421875},{"unicode1":931,"unicode2":964,"advance":-0.0478515625},{"unicode1":931,"unicode2":960,"advance":-0.0478515625},{"unicode1":932,"unicode2":32,"advance":-0.01806640625},{"unicode1":932,"unicode2":44,"advance":-0.10986328125},{"unicode1":932,"unicode2":46,"advance":-0.10986328125},{"unicode1":932,"unicode2":58,"advance":-0.10986328125},{"unicode1":932,"unicode2":59,"advance":-0.10986328125},{"unicode1":932,"unicode2":920,"advance":-0.01806640625},{"unicode1":932,"unicode2":934,"advance":-0.01806640625},{"unicode1":932,"unicode2":945,"advance":-0.10986328125},{"unicode1":932,"unicode2":949,"advance":-0.10986328125},{"unicode1":932,"unicode2":963,"advance":-0.10986328125},{"unicode1":932,"unicode2":966,"advance":-0.10986328125},{"unicode1":932,"unicode2":912,"advance":0.091796875},{"unicode1":932,"unicode2":913,"advance":-0.07421875},{"unicode1":932,"unicode2":916,"advance":-0.07421875},{"unicode1":932,"unicode2":923,"advance":-0.07421875},{"unicode1":932,"unicode2":927,"advance":-0.01806640625},{"unicode1":932,"unicode2":937,"advance":-0.01806640625},{"unicode1":932,"unicode2":940,"advance":-0.10986328125},{"unicode1":932,"unicode2":941,"advance":-0.10986328125},{"unicode1":932,"unicode2":944,"advance":-0.0869140625},{"unicode1":932,"unicode2":947,"advance":-0.0869140625},{"unicode1":932,"unicode2":951,"advance":-0.0732421875},{"unicode1":932,"unicode2":953,"advance":-0.037109375},{"unicode1":932,"unicode2":956,"advance":-0.0732421875},{"unicode1":932,"unicode2":957,"advance":-0.05517578125},{"unicode1":932,"unicode2":959,"advance":-0.10986328125},{"unicode1":932,"unicode2":965,"advance":-0.0859375},{"unicode1":932,"unicode2":967,"advance":-0.05517578125},{"unicode1":932,"unicode2":968,"advance":-0.0732421875},{"unicode1":932,"unicode2":970,"advance":0.091796875},{"unicode1":932,"unicode2":971,"advance":-0.0869140625},{"unicode1":932,"unicode2":972,"advance":-0.10986328125},{"unicode1":932,"unicode2":973,"advance":-0.0869140625},{"unicode1":933,"unicode2":32,"advance":-0.01806640625},{"unicode1":933,"unicode2":44,"advance":-0.1279296875},{"unicode1":933,"unicode2":45,"advance":-0.0908203125},{"unicode1":933,"unicode2":46,"advance":-0.1279296875},{"unicode1":933,"unicode2":58,"advance":-0.05517578125},{"unicode1":933,"unicode2":59,"advance":-0.05517578125},{"unicode1":933,"unicode2":920,"advance":-0.05615234375},{"unicode1":933,"unicode2":934,"advance":-0.05615234375},{"unicode1":933,"unicode2":945,"advance":-0.0908203125},{"unicode1":933,"unicode2":963,"advance":-0.0908203125},{"unicode1":933,"unicode2":966,"advance":-0.0908203125},{"unicode1":933,"unicode2":912,"advance":0.091796875},{"unicode1":933,"unicode2":913,"advance":-0.07421875},{"unicode1":933,"unicode2":916,"advance":-0.07421875},{"unicode1":933,"unicode2":923,"advance":-0.07421875},{"unicode1":933,"unicode2":927,"advance":-0.05615234375},{"unicode1":933,"unicode2":937,"advance":-0.0478515625},{"unicode1":933,"unicode2":943,"advance":-0.037109375},{"unicode1":933,"unicode2":947,"advance":-0.0478515625},{"unicode1":933,"unicode2":951,"advance":-0.07421875},{"unicode1":933,"unicode2":953,"advance":-0.037109375},{"unicode1":933,"unicode2":954,"advance":-0.07421875},{"unicode1":933,"unicode2":956,"advance":-0.07421875},{"unicode1":933,"unicode2":959,"advance":-0.0908203125},{"unicode1":933,"unicode2":970,"advance":0.05908203125},{"unicode1":933,"unicode2":972,"advance":-0.0908203125},{"unicode1":936,"unicode2":945,"advance":-0.0380859375},{"unicode1":936,"unicode2":948,"advance":-0.0380859375},{"unicode1":936,"unicode2":963,"advance":-0.0380859375},{"unicode1":936,"unicode2":966,"advance":-0.0380859375},{"unicode1":936,"unicode2":940,"advance":-0.0380859375},{"unicode1":936,"unicode2":952,"advance":-0.01904296875},{"unicode1":936,"unicode2":959,"advance":-0.0380859375},{"unicode1":936,"unicode2":969,"advance":-0.0380859375},{"unicode1":936,"unicode2":972,"advance":-0.0380859375},{"unicode1":937,"unicode2":933,"advance":-0.02294921875},{"unicode1":937,"unicode2":939,"advance":-0.02294921875},{"unicode1":939,"unicode2":32,"advance":-0.01806640625},{"unicode1":939,"unicode2":920,"advance":-0.05615234375},{"unicode1":939,"unicode2":934,"advance":-0.05615234375},{"unicode1":939,"unicode2":945,"advance":-0.0908203125},{"unicode1":939,"unicode2":963,"advance":-0.0908203125},{"unicode1":939,"unicode2":966,"advance":-0.0908203125},{"unicode1":939,"unicode2":912,"advance":0.0830078125},{"unicode1":939,"unicode2":913,"advance":-0.07421875},{"unicode1":939,"unicode2":916,"advance":-0.07421875},{"unicode1":939,"unicode2":923,"advance":-0.07421875},{"unicode1":939,"unicode2":927,"advance":-0.05615234375},{"unicode1":939,"unicode2":937,"advance":-0.0478515625},{"unicode1":939,"unicode2":943,"advance":-0.037109375},{"unicode1":939,"unicode2":951,"advance":-0.07421875},{"unicode1":939,"unicode2":953,"advance":-0.037109375},{"unicode1":939,"unicode2":954,"advance":-0.07421875},{"unicode1":939,"unicode2":956,"advance":-0.07421875},{"unicode1":939,"unicode2":959,"advance":-0.0908203125},{"unicode1":939,"unicode2":970,"advance":0.0478515625},{"unicode1":939,"unicode2":972,"advance":-0.0908203125},{"unicode1":950,"unicode2":945,"advance":-0.06689453125},{"unicode1":950,"unicode2":948,"advance":-0.037109375},{"unicode1":950,"unicode2":963,"advance":-0.06689453125},{"unicode1":950,"unicode2":964,"advance":-0.0419921875},{"unicode1":950,"unicode2":966,"advance":-0.06689453125},{"unicode1":950,"unicode2":940,"advance":-0.06689453125},{"unicode1":950,"unicode2":947,"advance":-0.0419921875},{"unicode1":950,"unicode2":951,"advance":-0.01806640625},{"unicode1":950,"unicode2":952,"advance":-0.0478515625},{"unicode1":950,"unicode2":953,"advance":-0.01806640625},{"unicode1":950,"unicode2":954,"advance":-0.01806640625},{"unicode1":950,"unicode2":957,"advance":-0.0419921875},{"unicode1":950,"unicode2":959,"advance":-0.06689453125},{"unicode1":950,"unicode2":969,"advance":-0.06689453125},{"unicode1":950,"unicode2":972,"advance":-0.06689453125},{"unicode1":950,"unicode2":960,"advance":-0.0419921875},{"unicode1":952,"unicode2":955,"advance":-0.01904296875},{"unicode1":954,"unicode2":945,"advance":-0.01220703125},{"unicode1":954,"unicode2":948,"advance":-0.01220703125},{"unicode1":954,"unicode2":963,"advance":-0.01220703125},{"unicode1":954,"unicode2":966,"advance":-0.01220703125},{"unicode1":954,"unicode2":940,"advance":-0.01220703125},{"unicode1":954,"unicode2":950,"advance":-0.01220703125},{"unicode1":954,"unicode2":952,"advance":-0.01220703125},{"unicode1":954,"unicode2":958,"advance":-0.01220703125},{"unicode1":954,"unicode2":959,"advance":-0.01220703125},{"unicode1":954,"unicode2":969,"advance":-0.01220703125},{"unicode1":954,"unicode2":972,"advance":-0.01220703125},{"unicode1":955,"unicode2":945,"advance":-0.01513671875},{"unicode1":955,"unicode2":948,"advance":-0.01513671875},{"unicode1":955,"unicode2":963,"advance":-0.01513671875},{"unicode1":955,"unicode2":966,"advance":-0.01806640625},{"unicode1":955,"unicode2":940,"advance":-0.01513671875},{"unicode1":955,"unicode2":958,"advance":-0.01513671875},{"unicode1":955,"unicode2":959,"advance":-0.01513671875},{"unicode1":955,"unicode2":965,"advance":-0.02392578125},{"unicode1":955,"unicode2":969,"advance":-0.01513671875},{"unicode1":955,"unicode2":972,"advance":-0.01513671875},{"unicode1":955,"unicode2":973,"advance":-0.02392578125},{"unicode1":958,"unicode2":945,"advance":-0.02685546875},{"unicode1":958,"unicode2":948,"advance":-0.02685546875},{"unicode1":958,"unicode2":963,"advance":-0.02685546875},{"unicode1":958,"unicode2":966,"advance":-0.02685546875},{"unicode1":958,"unicode2":940,"advance":-0.02685546875},{"unicode1":958,"unicode2":950,"advance":-0.02685546875},{"unicode1":958,"unicode2":958,"advance":-0.02685546875},{"unicode1":958,"unicode2":959,"advance":-0.02685546875},{"unicode1":958,"unicode2":972,"advance":-0.02685546875},{"unicode1":959,"unicode2":964,"advance":-0.01416015625},{"unicode1":959,"unicode2":955,"advance":-0.01904296875},{"unicode1":959,"unicode2":967,"advance":-0.02685546875},{"unicode1":959,"unicode2":960,"advance":-0.01416015625},{"unicode1":961,"unicode2":964,"advance":-0.01416015625},{"unicode1":961,"unicode2":955,"advance":-0.01904296875},{"unicode1":961,"unicode2":960,"advance":-0.01416015625},{"unicode1":967,"unicode2":945,"advance":-0.02685546875},{"unicode1":967,"unicode2":948,"advance":-0.02685546875},{"unicode1":967,"unicode2":963,"advance":-0.02685546875},{"unicode1":967,"unicode2":966,"advance":-0.02685546875},{"unicode1":967,"unicode2":940,"advance":-0.02685546875},{"unicode1":967,"unicode2":950,"advance":-0.02685546875},{"unicode1":967,"unicode2":959,"advance":-0.02685546875},{"unicode1":967,"unicode2":969,"advance":-0.02685546875},{"unicode1":967,"unicode2":972,"advance":-0.02685546875},{"unicode1":969,"unicode2":964,"advance":-0.01416015625},{"unicode1":969,"unicode2":955,"advance":-0.01904296875},{"unicode1":969,"unicode2":967,"advance":-0.02685546875},{"unicode1":969,"unicode2":960,"advance":-0.01416015625},{"unicode1":972,"unicode2":964,"advance":-0.01416015625},{"unicode1":972,"unicode2":955,"advance":-0.01904296875},{"unicode1":972,"unicode2":967,"advance":-0.02685546875},{"unicode1":972,"unicode2":960,"advance":-0.01416015625},{"unicode1":1033,"unicode2":8217,"advance":-0.078125},{"unicode1":1034,"unicode2":8217,"advance":-0.06689453125},{"unicode1":1040,"unicode2":8217,"advance":-0.05615234375},{"unicode1":1040,"unicode2":1044,"advance":0.033203125},{"unicode1":1040,"unicode2":1047,"advance":-0.01123046875},{"unicode1":1040,"unicode2":1051,"advance":0.02197265625},{"unicode1":1040,"unicode2":1054,"advance":-0.02197265625},{"unicode1":1040,"unicode2":1055,"advance":-0.01123046875},{"unicode1":1040,"unicode2":1057,"advance":-0.02197265625},{"unicode1":1040,"unicode2":1058,"advance":-0.078125},{"unicode1":1040,"unicode2":1059,"advance":-0.0439453125},{"unicode1":1040,"unicode2":1060,"advance":-0.033203125},{"unicode1":1040,"unicode2":1063,"advance":-0.078125},{"unicode1":1040,"unicode2":1069,"advance":-0.02197265625},{"unicode1":1040,"unicode2":1072,"advance":0.01123046875},{"unicode1":1040,"unicode2":1090,"advance":-0.02197265625},{"unicode1":1040,"unicode2":1091,"advance":-0.01123046875},{"unicode1":1040,"unicode2":1092,"advance":0.01123046875},{"unicode1":1040,"unicode2":1101,"advance":0.02197265625},{"unicode1":1041,"unicode2":1040,"advance":-0.02197265625},{"unicode1":1041,"unicode2":1047,"advance":-0.01123046875},{"unicode1":1041,"unicode2":1054,"advance":-0.01123046875},{"unicode1":1041,"unicode2":1057,"advance":-0.01123046875},{"unicode1":1041,"unicode2":1058,"advance":-0.044921875},{"unicode1":1041,"unicode2":1059,"advance":-0.02294921875},{"unicode1":1041,"unicode2":1060,"advance":-0.01123046875},{"unicode1":1041,"unicode2":1061,"advance":-0.02197265625},{"unicode1":1041,"unicode2":1063,"advance":-0.044921875},{"unicode1":1041,"unicode2":1066,"advance":-0.033203125},{"unicode1":1041,"unicode2":1069,"advance":-0.01123046875},{"unicode1":1041,"unicode2":1071,"advance":-0.01123046875},{"unicode1":1041,"unicode2":1083,"advance":-0.01123046875},{"unicode1":1041,"unicode2":1091,"advance":-0.02197265625},{"unicode1":1042,"unicode2":1040,"advance":-0.033203125},{"unicode1":1042,"unicode2":1044,"advance":-0.02197265625},{"unicode1":1042,"unicode2":1046,"advance":-0.02197265625},{"unicode1":1042,"unicode2":1047,"advance":-0.033203125},{"unicode1":1042,"unicode2":1051,"advance":-0.01123046875},{"unicode1":1042,"unicode2":1054,"advance":-0.033203125},{"unicode1":1042,"unicode2":1057,"advance":-0.033203125},{"unicode1":1042,"unicode2":1058,"advance":-0.06689453125},{"unicode1":1042,"unicode2":1059,"advance":-0.033203125},{"unicode1":1042,"unicode2":1060,"advance":-0.033203125},{"unicode1":1042,"unicode2":1061,"advance":-0.0439453125},{"unicode1":1042,"unicode2":1063,"advance":-0.044921875},{"unicode1":1042,"unicode2":1066,"advance":-0.05615234375},{"unicode1":1042,"unicode2":1071,"advance":-0.033203125},{"unicode1":1042,"unicode2":1076,"advance":-0.01123046875},{"unicode1":1042,"unicode2":1084,"advance":-0.01123046875},{"unicode1":1042,"unicode2":1090,"advance":-0.033203125},{"unicode1":1042,"unicode2":1091,"advance":-0.01123046875},{"unicode1":1042,"unicode2":1093,"advance":-0.01123046875},{"unicode1":1042,"unicode2":1095,"advance":-0.033203125},{"unicode1":1042,"unicode2":1103,"advance":-0.01123046875},{"unicode1":1043,"unicode2":44,"advance":-0.1220703125},{"unicode1":1043,"unicode2":46,"advance":-0.1220703125},{"unicode1":1043,"unicode2":1040,"advance":-0.06689453125},{"unicode1":1043,"unicode2":1044,"advance":-0.06689453125},{"unicode1":1043,"unicode2":1047,"advance":-0.02197265625},{"unicode1":1043,"unicode2":1051,"advance":-0.05615234375},{"unicode1":1043,"unicode2":1052,"advance":-0.02294921875},{"unicode1":1043,"unicode2":1054,"advance":-0.05615234375},{"unicode1":1043,"unicode2":1057,"advance":-0.044921875},{"unicode1":1043,"unicode2":1071,"advance":-0.033203125},{"unicode1":1043,"unicode2":1072,"advance":-0.05615234375},{"unicode1":1043,"unicode2":1074,"advance":-0.05615234375},{"unicode1":1043,"unicode2":1076,"advance":-0.06689453125},{"unicode1":1043,"unicode2":1077,"advance":-0.06689453125},{"unicode1":1043,"unicode2":1080,"advance":-0.05615234375},{"unicode1":1043,"unicode2":1083,"advance":-0.05615234375},{"unicode1":1043,"unicode2":1084,"advance":-0.05615234375},{"unicode1":1043,"unicode2":1085,"advance":-0.05615234375},{"unicode1":1043,"unicode2":1086,"advance":-0.06689453125},{"unicode1":1043,"unicode2":1088,"advance":-0.05615234375},{"unicode1":1043,"unicode2":1091,"advance":-0.06689453125},{"unicode1":1043,"unicode2":1099,"advance":-0.05615234375},{"unicode1":1043,"unicode2":1100,"advance":-0.05615234375},{"unicode1":1043,"unicode2":1102,"advance":-0.05615234375},{"unicode1":1043,"unicode2":1103,"advance":-0.06689453125},{"unicode1":1044,"unicode2":1059,"advance":0.01123046875},{"unicode1":1044,"unicode2":1060,"advance":-0.02197265625},{"unicode1":1044,"unicode2":1063,"advance":-0.0341796875},{"unicode1":1044,"unicode2":1079,"advance":0.033203125},{"unicode1":1044,"unicode2":1086,"advance":0.01123046875},{"unicode1":1044,"unicode2":1091,"advance":0.02197265625},{"unicode1":1045,"unicode2":1047,"advance":-0.02197265625},{"unicode1":1045,"unicode2":1089,"advance":-0.01123046875},{"unicode1":1046,"unicode2":1047,"advance":-0.01123046875},{"unicode1":1046,"unicode2":1054,"advance":-0.02197265625},{"unicode1":1046,"unicode2":1057,"advance":-0.01123046875},{"unicode1":1046,"unicode2":1058,"advance":0.01123046875},{"unicode1":1046,"unicode2":1059,"advance":0.02197265625},{"unicode1":1046,"unicode2":1066,"advance":0.02197265625},{"unicode1":1046,"unicode2":1072,"advance":0.01123046875},{"unicode1":1046,"unicode2":1077,"advance":-0.01220703125},{"unicode1":1046,"unicode2":1086,"advance":-0.01123046875},{"unicode1":1046,"unicode2":1091,"advance":-0.01123046875},{"unicode1":1047,"unicode2":1051,"advance":-0.01123046875},{"unicode1":1047,"unicode2":1054,"advance":-0.01123046875},{"unicode1":1047,"unicode2":1057,"advance":-0.01123046875},{"unicode1":1047,"unicode2":1058,"advance":-0.02197265625},{"unicode1":1047,"unicode2":1059,"advance":-0.01123046875},{"unicode1":1047,"unicode2":1060,"advance":-0.01123046875},{"unicode1":1047,"unicode2":1063,"advance":-0.02197265625},{"unicode1":1047,"unicode2":1071,"advance":-0.01123046875},{"unicode1":1050,"unicode2":1047,"advance":-0.01123046875},{"unicode1":1050,"unicode2":1054,"advance":-0.01123046875},{"unicode1":1050,"unicode2":1057,"advance":-0.01123046875},{"unicode1":1050,"unicode2":1059,"advance":0.01123046875},{"unicode1":1050,"unicode2":1060,"advance":-0.0341796875},{"unicode1":1051,"unicode2":1060,"advance":-0.01123046875},{"unicode1":1051,"unicode2":1073,"advance":0.01123046875},{"unicode1":1051,"unicode2":1091,"advance":0.01123046875},{"unicode1":1052,"unicode2":1060,"advance":-0.01123046875},{"unicode1":1052,"unicode2":1063,"advance":-0.01123046875},{"unicode1":1052,"unicode2":1072,"advance":0.01123046875},{"unicode1":1052,"unicode2":1077,"advance":0.01123046875},{"unicode1":1052,"unicode2":1086,"advance":0.01123046875},{"unicode1":1052,"unicode2":1089,"advance":0.01123046875},{"unicode1":1052,"unicode2":1091,"advance":0.01123046875},{"unicode1":1052,"unicode2":1095,"advance":-0.01123046875},{"unicode1":1052,"unicode2":1101,"advance":0.01123046875},{"unicode1":1054,"unicode2":1040,"advance":-0.02197265625},{"unicode1":1054,"unicode2":1044,"advance":-0.02197265625},{"unicode1":1054,"unicode2":1046,"advance":-0.02197265625},{"unicode1":1054,"unicode2":1051,"advance":-0.01123046875},{"unicode1":1054,"unicode2":1059,"advance":-0.02197265625},{"unicode1":1054,"unicode2":1061,"advance":-0.044921875},{"unicode1":1054,"unicode2":1063,"advance":-0.02197265625},{"unicode1":1054,"unicode2":1071,"advance":-0.02197265625},{"unicode1":1054,"unicode2":1076,"advance":-0.02197265625},{"unicode1":1054,"unicode2":1083,"advance":-0.01123046875},{"unicode1":1054,"unicode2":1093,"advance":-0.01123046875},{"unicode1":1056,"unicode2":44,"advance":-0.18896484375},{"unicode1":1056,"unicode2":46,"advance":-0.18896484375},{"unicode1":1056,"unicode2":58,"advance":-0.02197265625},{"unicode1":1056,"unicode2":59,"advance":-0.02197265625},{"unicode1":1056,"unicode2":1040,"advance":-0.06689453125},{"unicode1":1056,"unicode2":1044,"advance":-0.06689453125},{"unicode1":1056,"unicode2":1046,"advance":-0.01123046875},{"unicode1":1056,"unicode2":1047,"advance":-0.02197265625},{"unicode1":1056,"unicode2":1051,"advance":-0.05615234375},{"unicode1":1056,"unicode2":1052,"advance":-0.01123046875},{"unicode1":1056,"unicode2":1054,"advance":-0.02197265625},{"unicode1":1056,"unicode2":1057,"advance":-0.01123046875},{"unicode1":1056,"unicode2":1058,"advance":-0.044921875},{"unicode1":1056,"unicode2":1059,"advance":-0.02197265625},{"unicode1":1056,"unicode2":1060,"advance":-0.01123046875},{"unicode1":1056,"unicode2":1061,"advance":-0.044921875},{"unicode1":1056,"unicode2":1071,"advance":-0.02197265625},{"unicode1":1056,"unicode2":1072,"advance":-0.033203125},{"unicode1":1056,"unicode2":1076,"advance":-0.078125},{"unicode1":1056,"unicode2":1077,"advance":-0.0439453125},{"unicode1":1056,"unicode2":1086,"advance":-0.0439453125},{"unicode1":1056,"unicode2":1101,"advance":-0.02197265625},{"unicode1":1056,"unicode2":1103,"advance":-0.033203125},{"unicode1":1057,"unicode2":1040,"advance":-0.02197265625},{"unicode1":1057,"unicode2":1044,"advance":-0.02197265625},{"unicode1":1057,"unicode2":1047,"advance":-0.01123046875},{"unicode1":1057,"unicode2":1051,"advance":-0.033203125},{"unicode1":1057,"unicode2":1052,"advance":-0.01123046875},{"unicode1":1057,"unicode2":1054,"advance":-0.02197265625},{"unicode1":1057,"unicode2":1058,"advance":-0.033203125},{"unicode1":1057,"unicode2":1059,"advance":-0.033203125},{"unicode1":1057,"unicode2":1061,"advance":-0.05615234375},{"unicode1":1057,"unicode2":1063,"advance":-0.033203125},{"unicode1":1057,"unicode2":1066,"advance":-0.0341796875},{"unicode1":1057,"unicode2":1069,"advance":-0.01123046875},{"unicode1":1057,"unicode2":1072,"advance":0.01123046875},{"unicode1":1057,"unicode2":1078,"advance":0.02197265625},{"unicode1":1057,"unicode2":1095,"advance":-0.01123046875},{"unicode1":1058,"unicode2":44,"advance":-0.11083984375},{"unicode1":1058,"unicode2":46,"advance":-0.11083984375},{"unicode1":1058,"unicode2":1040,"advance":-0.033203125},{"unicode1":1058,"unicode2":1044,"advance":-0.033203125},{"unicode1":1058,"unicode2":1046,"advance":0.01123046875},{"unicode1":1058,"unicode2":1047,"advance":-0.01123046875},{"unicode1":1058,"unicode2":1051,"advance":-0.02197265625},{"unicode1":1058,"unicode2":1054,"advance":-0.044921875},{"unicode1":1058,"unicode2":1060,"advance":-0.033203125},{"unicode1":1058,"unicode2":1071,"advance":-0.02197265625},{"unicode1":1058,"unicode2":1072,"advance":-0.044921875},{"unicode1":1058,"unicode2":1074,"advance":-0.0439453125},{"unicode1":1058,"unicode2":1077,"advance":-0.05615234375},{"unicode1":1058,"unicode2":1080,"advance":-0.0439453125},{"unicode1":1058,"unicode2":1082,"advance":-0.0439453125},{"unicode1":1058,"unicode2":1083,"advance":-0.044921875},{"unicode1":1058,"unicode2":1084,"advance":-0.0439453125},{"unicode1":1058,"unicode2":1086,"advance":-0.078125},{"unicode1":1058,"unicode2":1087,"advance":-0.0439453125},{"unicode1":1058,"unicode2":1088,"advance":-0.05615234375},{"unicode1":1058,"unicode2":1089,"advance":-0.05615234375},{"unicode1":1058,"unicode2":1091,"advance":-0.05615234375},{"unicode1":1058,"unicode2":1093,"advance":-0.0439453125},{"unicode1":1058,"unicode2":1097,"advance":-0.0439453125},{"unicode1":1058,"unicode2":1099,"advance":-0.0439453125},{"unicode1":1058,"unicode2":1100,"advance":-0.0439453125},{"unicode1":1058,"unicode2":1102,"advance":-0.0439453125},{"unicode1":1058,"unicode2":1103,"advance":-0.05615234375},{"unicode1":1059,"unicode2":44,"advance":-0.1328125},{"unicode1":1059,"unicode2":46,"advance":-0.1328125},{"unicode1":1059,"unicode2":58,"advance":-0.02197265625},{"unicode1":1059,"unicode2":59,"advance":-0.02197265625},{"unicode1":1059,"unicode2":1040,"advance":-0.06689453125},{"unicode1":1059,"unicode2":1044,"advance":-0.044921875},{"unicode1":1059,"unicode2":1047,"advance":-0.02197265625},{"unicode1":1059,"unicode2":1051,"advance":-0.033203125},{"unicode1":1059,"unicode2":1054,"advance":-0.033203125},{"unicode1":1059,"unicode2":1060,"advance":-0.033203125},{"unicode1":1059,"unicode2":1069,"advance":-0.02197265625},{"unicode1":1059,"unicode2":1071,"advance":-0.02197265625},{"unicode1":1059,"unicode2":1073,"advance":-0.02197265625},{"unicode1":1059,"unicode2":1074,"advance":-0.05615234375},{"unicode1":1059,"unicode2":1075,"advance":-0.044921875},{"unicode1":1059,"unicode2":1076,"advance":-0.078125},{"unicode1":1059,"unicode2":1077,"advance":-0.06689453125},{"unicode1":1059,"unicode2":1078,"advance":-0.033203125},{"unicode1":1059,"unicode2":1079,"advance":-0.05615234375},{"unicode1":1059,"unicode2":1080,"advance":-0.044921875},{"unicode1":1059,"unicode2":1081,"advance":-0.033203125},{"unicode1":1059,"unicode2":1082,"advance":-0.044921875},{"unicode1":1059,"unicode2":1083,"advance":-0.06689453125},{"unicode1":1059,"unicode2":1084,"advance":-0.044921875},{"unicode1":1059,"unicode2":1085,"advance":-0.044921875},{"unicode1":1059,"unicode2":1086,"advance":-0.06689453125},{"unicode1":1059,"unicode2":1087,"advance":-0.044921875},{"unicode1":1059,"unicode2":1088,"advance":-0.044921875},{"unicode1":1059,"unicode2":1089,"advance":-0.06689453125},{"unicode1":1059,"unicode2":1093,"advance":-0.044921875},{"unicode1":1059,"unicode2":1094,"advance":-0.044921875},{"unicode1":1059,"unicode2":1096,"advance":-0.044921875},{"unicode1":1059,"unicode2":1097,"advance":-0.044921875},{"unicode1":1059,"unicode2":1102,"advance":-0.044921875},{"unicode1":1059,"unicode2":1103,"advance":-0.06689453125},{"unicode1":1060,"unicode2":1040,"advance":-0.02197265625},{"unicode1":1060,"unicode2":1044,"advance":-0.033203125},{"unicode1":1060,"unicode2":1051,"advance":-0.033203125},{"unicode1":1060,"unicode2":1058,"advance":-0.05615234375},{"unicode1":1060,"unicode2":1059,"advance":-0.044921875},{"unicode1":1060,"unicode2":1063,"advance":-0.02197265625},{"unicode1":1060,"unicode2":1071,"advance":-0.0341796875},{"unicode1":1060,"unicode2":1083,"advance":-0.033203125},{"unicode1":1061,"unicode2":1047,"advance":-0.02197265625},{"unicode1":1061,"unicode2":1054,"advance":-0.033203125},{"unicode1":1061,"unicode2":1057,"advance":-0.033203125},{"unicode1":1061,"unicode2":1060,"advance":-0.033203125},{"unicode1":1061,"unicode2":1069,"advance":-0.0341796875},{"unicode1":1061,"unicode2":1086,"advance":-0.01123046875},{"unicode1":1061,"unicode2":1091,"advance":-0.02197265625},{"unicode1":1062,"unicode2":1054,"advance":-0.02197265625},{"unicode1":1062,"unicode2":1072,"advance":0.02197265625},{"unicode1":1065,"unicode2":1072,"advance":0.01123046875},{"unicode1":1065,"unicode2":1091,"advance":0.02197265625},{"unicode1":1066,"unicode2":8217,"advance":-0.06689453125},{"unicode1":1066,"unicode2":1071,"advance":-0.033203125},{"unicode1":1068,"unicode2":8217,"advance":-0.078125},{"unicode1":1068,"unicode2":1040,"advance":-0.02197265625},{"unicode1":1068,"unicode2":1044,"advance":-0.02197265625},{"unicode1":1068,"unicode2":1046,"advance":-0.033203125},{"unicode1":1068,"unicode2":1047,"advance":-0.01123046875},{"unicode1":1068,"unicode2":1051,"advance":-0.0341796875},{"unicode1":1068,"unicode2":1052,"advance":-0.02197265625},{"unicode1":1068,"unicode2":1054,"advance":-0.02197265625},{"unicode1":1068,"unicode2":1057,"advance":-0.02197265625},{"unicode1":1068,"unicode2":1058,"advance":-0.10009765625},{"unicode1":1068,"unicode2":1061,"advance":-0.044921875},{"unicode1":1068,"unicode2":1063,"advance":-0.078125},{"unicode1":1068,"unicode2":1069,"advance":-0.01123046875},{"unicode1":1068,"unicode2":1071,"advance":-0.044921875},{"unicode1":1069,"unicode2":1044,"advance":-0.033203125},{"unicode1":1069,"unicode2":1046,"advance":-0.01220703125},{"unicode1":1069,"unicode2":1047,"advance":-0.01123046875},{"unicode1":1069,"unicode2":1051,"advance":-0.033203125},{"unicode1":1069,"unicode2":1061,"advance":-0.0341796875},{"unicode1":1069,"unicode2":1071,"advance":-0.02197265625},{"unicode1":1069,"unicode2":1076,"advance":-0.033203125},{"unicode1":1069,"unicode2":1078,"advance":0.01123046875},{"unicode1":1069,"unicode2":1083,"advance":-0.033203125},{"unicode1":1069,"unicode2":1084,"advance":-0.01123046875},{"unicode1":1069,"unicode2":1103,"advance":-0.01123046875},{"unicode1":1070,"unicode2":1040,"advance":-0.033203125},{"unicode1":1070,"unicode2":1044,"advance":-0.0439453125},{"unicode1":1070,"unicode2":1046,"advance":-0.02197265625},{"unicode1":1070,"unicode2":1051,"advance":-0.044921875},{"unicode1":1070,"unicode2":1054,"advance":-0.01123046875},{"unicode1":1070,"unicode2":1057,"advance":-0.01123046875},{"unicode1":1070,"unicode2":1058,"advance":-0.05615234375},{"unicode1":1070,"unicode2":1061,"advance":-0.044921875},{"unicode1":1070,"unicode2":1063,"advance":-0.033203125},{"unicode1":1070,"unicode2":1076,"advance":-0.044921875},{"unicode1":1070,"unicode2":1083,"advance":-0.044921875},{"unicode1":1070,"unicode2":1084,"advance":-0.01123046875},{"unicode1":1072,"unicode2":1079,"advance":-0.01123046875},{"unicode1":1072,"unicode2":1090,"advance":-0.02197265625},{"unicode1":1072,"unicode2":1091,"advance":-0.01123046875},{"unicode1":1072,"unicode2":1095,"advance":-0.02197265625},{"unicode1":1073,"unicode2":1072,"advance":-0.02294921875},{"unicode1":1073,"unicode2":1076,"advance":-0.044921875},{"unicode1":1073,"unicode2":1077,"advance":-0.01123046875},{"unicode1":1073,"unicode2":1078,"advance":-0.01123046875},{"unicode1":1073,"unicode2":1079,"advance":-0.02197265625},{"unicode1":1073,"unicode2":1083,"advance":-0.044921875},{"unicode1":1073,"unicode2":1084,"advance":-0.02197265625},{"unicode1":1073,"unicode2":1089,"advance":-0.01123046875},{"unicode1":1073,"unicode2":1091,"advance":-0.02197265625},{"unicode1":1073,"unicode2":1092,"advance":-0.01123046875},{"unicode1":1073,"unicode2":1093,"advance":-0.033203125},{"unicode1":1073,"unicode2":1095,"advance":-0.033203125},{"unicode1":1073,"unicode2":1098,"advance":-0.033203125},{"unicode1":1073,"unicode2":1101,"advance":-0.01123046875},{"unicode1":1073,"unicode2":1103,"advance":-0.02197265625},{"unicode1":1074,"unicode2":1072,"advance":-0.01123046875},{"unicode1":1074,"unicode2":1073,"advance":-0.01123046875},{"unicode1":1074,"unicode2":1076,"advance":-0.01123046875},{"unicode1":1074,"unicode2":1077,"advance":-0.01123046875},{"unicode1":1074,"unicode2":1078,"advance":-0.01123046875},{"unicode1":1074,"unicode2":1079,"advance":-0.01123046875},{"unicode1":1074,"unicode2":1083,"advance":-0.02294921875},{"unicode1":1074,"unicode2":1084,"advance":-0.01123046875},{"unicode1":1074,"unicode2":1086,"advance":-0.01123046875},{"unicode1":1074,"unicode2":1089,"advance":-0.01123046875},{"unicode1":1074,"unicode2":1090,"advance":-0.02197265625},{"unicode1":1074,"unicode2":1091,"advance":-0.02197265625},{"unicode1":1074,"unicode2":1092,"advance":-0.01123046875},{"unicode1":1074,"unicode2":1095,"advance":-0.044921875},{"unicode1":1074,"unicode2":1098,"advance":-0.033203125},{"unicode1":1074,"unicode2":1103,"advance":-0.01123046875},{"unicode1":1075,"unicode2":44,"advance":-0.1220703125},{"unicode1":1075,"unicode2":46,"advance":-0.1220703125},{"unicode1":1075,"unicode2":1072,"advance":-0.02197265625},{"unicode1":1075,"unicode2":1076,"advance":-0.044921875},{"unicode1":1075,"unicode2":1077,"advance":-0.02197265625},{"unicode1":1075,"unicode2":1079,"advance":-0.01123046875},{"unicode1":1075,"unicode2":1083,"advance":-0.02197265625},{"unicode1":1075,"unicode2":1086,"advance":-0.02197265625},{"unicode1":1075,"unicode2":1089,"advance":-0.02197265625},{"unicode1":1075,"unicode2":1103,"advance":-0.01123046875},{"unicode1":1076,"unicode2":1098,"advance":-0.02197265625},{"unicode1":1076,"unicode2":1101,"advance":0.01123046875},{"unicode1":1077,"unicode2":1073,"advance":-0.01123046875},{"unicode1":1077,"unicode2":1076,"advance":-0.02197265625},{"unicode1":1077,"unicode2":1078,"advance":-0.01123046875},{"unicode1":1077,"unicode2":1079,"advance":-0.02197265625},{"unicode1":1077,"unicode2":1083,"advance":-0.033203125},{"unicode1":1077,"unicode2":1090,"advance":-0.033203125},{"unicode1":1077,"unicode2":1091,"advance":-0.01123046875},{"unicode1":1077,"unicode2":1093,"advance":-0.02197265625},{"unicode1":1077,"unicode2":1095,"advance":-0.033203125},{"unicode1":1078,"unicode2":1073,"advance":0.01123046875},{"unicode1":1078,"unicode2":1091,"advance":0.01123046875},{"unicode1":1078,"unicode2":1095,"advance":-0.01123046875},{"unicode1":1078,"unicode2":1098,"advance":0.02197265625},{"unicode1":1079,"unicode2":1073,"advance":-0.01123046875},{"unicode1":1079,"unicode2":1076,"advance":-0.02197265625},{"unicode1":1079,"unicode2":1077,"advance":-0.01123046875},{"unicode1":1079,"unicode2":1079,"advance":-0.01123046875},{"unicode1":1079,"unicode2":1083,"advance":-0.01123046875},{"unicode1":1079,"unicode2":1086,"advance":-0.01123046875},{"unicode1":1079,"unicode2":1089,"advance":-0.01123046875},{"unicode1":1079,"unicode2":1091,"advance":-0.01123046875},{"unicode1":1079,"unicode2":1092,"advance":-0.01123046875},{"unicode1":1079,"unicode2":1095,"advance":-0.033203125},{"unicode1":1079,"unicode2":1098,"advance":-0.02197265625},{"unicode1":1082,"unicode2":1072,"advance":0.02197265625},{"unicode1":1082,"unicode2":1073,"advance":0.02197265625},{"unicode1":1082,"unicode2":1077,"advance":0.01123046875},{"unicode1":1082,"unicode2":1079,"advance":0.01123046875},{"unicode1":1082,"unicode2":1083,"advance":0.01123046875},{"unicode1":1082,"unicode2":1086,"advance":0.01123046875},{"unicode1":1082,"unicode2":1089,"advance":0.01123046875},{"unicode1":1082,"unicode2":1090,"advance":0.01123046875},{"unicode1":1082,"unicode2":1091,"advance":0.01123046875},{"unicode1":1082,"unicode2":1101,"advance":0.01123046875},{"unicode1":1083,"unicode2":1086,"advance":0.01123046875},{"unicode1":1083,"unicode2":1095,"advance":-0.02197265625},{"unicode1":1084,"unicode2":1073,"advance":-0.01123046875},{"unicode1":1084,"unicode2":1079,"advance":-0.01123046875},{"unicode1":1084,"unicode2":1091,"advance":0.01123046875},{"unicode1":1086,"unicode2":1076,"advance":-0.02197265625},{"unicode1":1086,"unicode2":1078,"advance":-0.01123046875},{"unicode1":1086,"unicode2":1079,"advance":-0.01123046875},{"unicode1":1086,"unicode2":1083,"advance":-0.02197265625},{"unicode1":1086,"unicode2":1090,"advance":-0.02197265625},{"unicode1":1086,"unicode2":1091,"advance":-0.01123046875},{"unicode1":1086,"unicode2":1093,"advance":-0.01123046875},{"unicode1":1086,"unicode2":1095,"advance":-0.02197265625},{"unicode1":1088,"unicode2":1076,"advance":-0.02294921875},{"unicode1":1088,"unicode2":1079,"advance":-0.01123046875},{"unicode1":1088,"unicode2":1083,"advance":-0.0341796875},{"unicode1":1088,"unicode2":1090,"advance":-0.02197265625},{"unicode1":1088,"unicode2":1091,"advance":-0.01123046875},{"unicode1":1088,"unicode2":1093,"advance":-0.01123046875},{"unicode1":1088,"unicode2":1095,"advance":-0.02197265625},{"unicode1":1088,"unicode2":1103,"advance":-0.01123046875},{"unicode1":1089,"unicode2":1078,"advance":0.01123046875},{"unicode1":1089,"unicode2":1086,"advance":0.01123046875},{"unicode1":1089,"unicode2":1095,"advance":-0.01123046875},{"unicode1":1089,"unicode2":1101,"advance":0.01123046875},{"unicode1":1090,"unicode2":44,"advance":-0.11083984375},{"unicode1":1090,"unicode2":46,"advance":-0.11083984375},{"unicode1":1090,"unicode2":1072,"advance":-0.01123046875},{"unicode1":1090,"unicode2":1076,"advance":-0.033203125},{"unicode1":1090,"unicode2":1077,"advance":-0.01123046875},{"unicode1":1090,"unicode2":1078,"advance":0.033203125},{"unicode1":1090,"unicode2":1083,"advance":-0.02197265625},{"unicode1":1090,"unicode2":1086,"advance":-0.01123046875},{"unicode1":1090,"unicode2":1089,"advance":-0.01123046875},{"unicode1":1090,"unicode2":1091,"advance":0.01123046875},{"unicode1":1091,"unicode2":44,"advance":-0.10009765625},{"unicode1":1091,"unicode2":46,"advance":-0.10009765625},{"unicode1":1091,"unicode2":1072,"advance":-0.01123046875},{"unicode1":1091,"unicode2":1073,"advance":0.01123046875},{"unicode1":1091,"unicode2":1076,"advance":-0.033203125},{"unicode1":1091,"unicode2":1077,"advance":-0.01123046875},{"unicode1":1091,"unicode2":1078,"advance":0.01123046875},{"unicode1":1091,"unicode2":1083,"advance":-0.02197265625},{"unicode1":1091,"unicode2":1084,"advance":-0.01123046875},{"unicode1":1091,"unicode2":1086,"advance":-0.01220703125},{"unicode1":1091,"unicode2":1088,"advance":-0.01123046875},{"unicode1":1091,"unicode2":1089,"advance":-0.01123046875},{"unicode1":1091,"unicode2":1092,"advance":-0.01123046875},{"unicode1":1091,"unicode2":1101,"advance":-0.01123046875},{"unicode1":1091,"unicode2":1103,"advance":-0.01123046875},{"unicode1":1092,"unicode2":1073,"advance":-0.01123046875},{"unicode1":1092,"unicode2":1076,"advance":-0.02197265625},{"unicode1":1092,"unicode2":1083,"advance":-0.02197265625},{"unicode1":1092,"unicode2":1090,"advance":-0.02197265625},{"unicode1":1092,"unicode2":1091,"advance":-0.01123046875},{"unicode1":1092,"unicode2":1095,"advance":-0.02197265625},{"unicode1":1092,"unicode2":1103,"advance":-0.01123046875},{"unicode1":1093,"unicode2":1072,"advance":-0.01123046875},{"unicode1":1093,"unicode2":1073,"advance":-0.01123046875},{"unicode1":1093,"unicode2":1077,"advance":-0.01123046875},{"unicode1":1093,"unicode2":1079,"advance":-0.01123046875},{"unicode1":1093,"unicode2":1086,"advance":-0.01123046875},{"unicode1":1093,"unicode2":1089,"advance":-0.01123046875},{"unicode1":1093,"unicode2":1090,"advance":-0.01123046875},{"unicode1":1093,"unicode2":1092,"advance":-0.01123046875},{"unicode1":1093,"unicode2":1095,"advance":-0.02197265625},{"unicode1":1094,"unicode2":1077,"advance":-0.01123046875},{"unicode1":1094,"unicode2":1079,"advance":-0.01123046875},{"unicode1":1094,"unicode2":1086,"advance":-0.01123046875},{"unicode1":1094,"unicode2":1089,"advance":-0.01123046875},{"unicode1":1097,"unicode2":1077,"advance":-0.01123046875},{"unicode1":1097,"unicode2":1086,"advance":-0.01123046875},{"unicode1":1097,"unicode2":1091,"advance":0.01123046875},{"unicode1":1100,"unicode2":1090,"advance":-0.078125},{"unicode1":1100,"unicode2":1095,"advance":-0.06689453125},{"unicode1":1101,"unicode2":1076,"advance":-0.02197265625},{"unicode1":1101,"unicode2":1077,"advance":0.01123046875},{"unicode1":1101,"unicode2":1079,"advance":-0.01123046875},{"unicode1":1101,"unicode2":1083,"advance":-0.02197265625},{"unicode1":1101,"unicode2":1086,"advance":0.01123046875},{"unicode1":1101,"unicode2":1090,"advance":-0.02197265625},{"unicode1":1101,"unicode2":1093,"advance":-0.01123046875},{"unicode1":1101,"unicode2":1103,"advance":-0.01123046875},{"unicode1":1102,"unicode2":1076,"advance":-0.02197265625},{"unicode1":1102,"unicode2":1078,"advance":-0.01123046875},{"unicode1":1102,"unicode2":1083,"advance":-0.02197265625},{"unicode1":1102,"unicode2":1084,"advance":-0.01123046875},{"unicode1":1102,"unicode2":1090,"advance":-0.02197265625},{"unicode1":1102,"unicode2":1093,"advance":-0.01123046875},{"unicode1":1102,"unicode2":1095,"advance":-0.02197265625},{"unicode1":1118,"unicode2":44,"advance":-0.10009765625},{"unicode1":1118,"unicode2":46,"advance":-0.10009765625},{"unicode1":1168,"unicode2":44,"advance":-0.1220703125},{"unicode1":1168,"unicode2":46,"advance":-0.1220703125},{"unicode1":1168,"unicode2":58,"advance":-0.02197265625},{"unicode1":1168,"unicode2":59,"advance":-0.02197265625},{"unicode1":960,"unicode2":945,"advance":-0.01416015625},{"unicode1":960,"unicode2":963,"advance":-0.01416015625},{"unicode1":960,"unicode2":966,"advance":-0.01416015625},{"unicode1":960,"unicode2":940,"advance":-0.01416015625},{"unicode1":960,"unicode2":950,"advance":-0.01416015625},{"unicode1":960,"unicode2":959,"advance":-0.01416015625},{"unicode1":960,"unicode2":969,"advance":-0.01416015625}]}