@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,1570 +0,0 @@
1
- {
2
- "opt": {
3
- "version": "msdf-bmfont-xml v2.6.0",
4
- "outputType": "json",
5
- "filename": "arial.ttf",
6
- "fontSize": 32,
7
- "charsetFile": "charset.txt",
8
- "textureSize": [
9
- 1024,
10
- 1024
11
- ],
12
- "texturePadding": 1,
13
- "border": 0,
14
- "distanceRange": 24,
15
- "fieldType": "msdf",
16
- "roundDecimal": 0,
17
- "vector": false,
18
- "smartSize": false,
19
- "pot": false,
20
- "square": false,
21
- "rot": false,
22
- "rtl": false,
23
- "fontFile": "arial.ttf",
24
- "charset": [
25
- " ",
26
- "A",
27
- "B",
28
- "C",
29
- "Č",
30
- "Ć",
31
- "D",
32
- "Đ",
33
- "E",
34
- "F",
35
- "G",
36
- "H",
37
- "I",
38
- "J",
39
- "K",
40
- "L",
41
- "M",
42
- "N",
43
- "O",
44
- "P",
45
- "Q",
46
- "R",
47
- "S",
48
- "Š",
49
- "T",
50
- "U",
51
- "V",
52
- "W",
53
- "X",
54
- "Y",
55
- "Z",
56
- "Ž",
57
- "a",
58
- "b",
59
- "c",
60
- "č",
61
- "ć",
62
- "d",
63
- "đ",
64
- "e",
65
- "f",
66
- "g",
67
- "h",
68
- "i",
69
- "j",
70
- "k",
71
- "l",
72
- "m",
73
- "n",
74
- "o",
75
- "p",
76
- "q",
77
- "r",
78
- "s",
79
- "š",
80
- "t",
81
- "u",
82
- "v",
83
- "w",
84
- "x",
85
- "y",
86
- "z",
87
- "ž",
88
- "А",
89
- "Б",
90
- "В",
91
- "Г",
92
- "Ґ",
93
- "Д",
94
- "Ђ",
95
- "Е",
96
- "Ё",
97
- "Є",
98
- "Ж",
99
- "З",
100
- "Ѕ",
101
- "И",
102
- "І",
103
- "Ї",
104
- "Й",
105
- "Ј",
106
- "К",
107
- "Л",
108
- "Љ",
109
- "М",
110
- "Н",
111
- "Њ",
112
- "О",
113
- "П",
114
- "Р",
115
- "С",
116
- "Т",
117
- "Ћ",
118
- "У",
119
- "Ў",
120
- "Ф",
121
- "Х",
122
- "Ц",
123
- "Ч",
124
- "Џ",
125
- "Ш",
126
- "Щ",
127
- "Ъ",
128
- "Ы",
129
- "Ь",
130
- "Э",
131
- "Ю",
132
- "Я",
133
- "а",
134
- "б",
135
- "в",
136
- "г",
137
- "ґ",
138
- "д",
139
- "ђ",
140
- "е",
141
- "ё",
142
- "є",
143
- "ж",
144
- "з",
145
- "ѕ",
146
- "и",
147
- "і",
148
- "ї",
149
- "й",
150
- "ј",
151
- "к",
152
- "л",
153
- "љ",
154
- "м",
155
- "н",
156
- "њ",
157
- "о",
158
- "п",
159
- "р",
160
- "с",
161
- "т",
162
- "ћ",
163
- "у",
164
- "ў",
165
- "ф",
166
- "х",
167
- "ц",
168
- "ч",
169
- "џ",
170
- "ш",
171
- "щ",
172
- "ъ",
173
- "ы",
174
- "ь",
175
- "э",
176
- "ю",
177
- "я",
178
- "Α",
179
- "Β",
180
- "Γ",
181
- "Δ",
182
- "Ε",
183
- "Ζ",
184
- "Η",
185
- "Θ",
186
- "Ι",
187
- "Κ",
188
- "Λ",
189
- "Μ",
190
- "Ν",
191
- "Ξ",
192
- "Ο",
193
- "Π",
194
- "Ρ",
195
- "Σ",
196
- "Τ",
197
- "Υ",
198
- "Φ",
199
- "Χ",
200
- "Ψ",
201
- "Ω",
202
- "α",
203
- "β",
204
- "γ",
205
- "δ",
206
- "ε",
207
- "ζ",
208
- "η",
209
- "θ",
210
- "ι",
211
- "κ",
212
- "λ",
213
- "μ",
214
- "ν",
215
- "ξ",
216
- "ο",
217
- "π",
218
- "ρ",
219
- "σ",
220
- "τ",
221
- "υ",
222
- "φ",
223
- "χ",
224
- "ψ",
225
- "ω",
226
- "ά",
227
- "Ά",
228
- "έ",
229
- "Έ",
230
- "έ",
231
- "Ή",
232
- "ί",
233
- "ϊ",
234
- "ΐ",
235
- "Ί",
236
- "ό",
237
- "Ό",
238
- "ύ",
239
- "ΰ",
240
- "ϋ",
241
- "Ύ",
242
- "Ϋ",
243
- "Ώ",
244
- "Ă",
245
- "Â",
246
- "Ê",
247
- "Ô",
248
- "Ơ",
249
- "Ư",
250
- "ă",
251
- "â",
252
- "ê",
253
- "ô",
254
- "ơ",
255
- "ư",
256
- "1",
257
- "2",
258
- "3",
259
- "4",
260
- "5",
261
- "6",
262
- "7",
263
- "8",
264
- "9",
265
- "0",
266
- "‘",
267
- "?",
268
- "’",
269
- "“",
270
- "!",
271
- "”",
272
- "(",
273
- "%",
274
- ")",
275
- "[",
276
- "#",
277
- "]",
278
- "{",
279
- "@",
280
- "}",
281
- "/",
282
- "&",
283
- "\\",
284
- "<",
285
- "-",
286
- "+",
287
- "÷",
288
- "×",
289
- "=",
290
- ">",
291
- "®",
292
- "©",
293
- "$",
294
- "€",
295
- "£",
296
- "¥",
297
- "¢",
298
- ":",
299
- ";",
300
- ",",
301
- ".",
302
- "*",
303
- "Ä",
304
- "ä",
305
- "Ö",
306
- "ö",
307
- "Ü",
308
- "ü",
309
- "ẞ",
310
- "ß"
311
- ],
312
- "fontSpacing": [
313
- 0,
314
- 0
315
- ],
316
- "fontPadding": [
317
- 12,
318
- 12,
319
- 12,
320
- 12
321
- ],
322
- "textureWidth": 1024,
323
- "textureHeight": 1024,
324
- "tolerance": 0
325
- },
326
- "pages": [
327
- "arial.ttf.png"
328
- ],
329
- "packer": {
330
- "bins": [
331
- {
332
- "width": 1024,
333
- "height": 1024,
334
- "maxWidth": 1024,
335
- "maxHeight": 1024,
336
- "freeRects": [
337
- {
338
- "x": 40,
339
- "y": 266,
340
- "width": 43,
341
- "height": 2
342
- },
343
- {
344
- "x": 62,
345
- "y": 96,
346
- "width": 16,
347
- "height": 7
348
- },
349
- {
350
- "x": 41,
351
- "y": 157,
352
- "width": 42,
353
- "height": 1
354
- },
355
- {
356
- "x": 78,
357
- "y": 150,
358
- "width": 5,
359
- "height": 8
360
- },
361
- {
362
- "x": 83,
363
- "y": 204,
364
- "width": 2,
365
- "height": 8
366
- },
367
- {
368
- "x": 116,
369
- "y": 48,
370
- "width": 5,
371
- "height": 48
372
- },
373
- {
374
- "x": 33,
375
- "y": 487,
376
- "width": 1,
377
- "height": 1
378
- },
379
- {
380
- "x": 71,
381
- "y": 376,
382
- "width": 17,
383
- "height": 2
384
- },
385
- {
386
- "x": 83,
387
- "y": 320,
388
- "width": 31,
389
- "height": 2
390
- },
391
- {
392
- "x": 85,
393
- "y": 258,
394
- "width": 43,
395
- "height": 8
396
- },
397
- {
398
- "x": 121,
399
- "y": 102,
400
- "width": 13,
401
- "height": 48
402
- },
403
- {
404
- "x": 165,
405
- "y": 0,
406
- "width": 2,
407
- "height": 48
408
- },
409
- {
410
- "x": 201,
411
- "y": 48,
412
- "width": 19,
413
- "height": 5
414
- },
415
- {
416
- "x": 220,
417
- "y": 101,
418
- "width": 2,
419
- "height": 1
420
- },
421
- {
422
- "x": 254,
423
- "y": 0,
424
- "width": 6,
425
- "height": 48
426
- },
427
- {
428
- "x": 34,
429
- "y": 541,
430
- "width": 8,
431
- "height": 2
432
- },
433
- {
434
- "x": 88,
435
- "y": 430,
436
- "width": 21,
437
- "height": 3
438
- },
439
- {
440
- "x": 114,
441
- "y": 374,
442
- "width": 5,
443
- "height": 2
444
- },
445
- {
446
- "x": 128,
447
- "y": 311,
448
- "width": 25,
449
- "height": 9
450
- },
451
- {
452
- "x": 134,
453
- "y": 250,
454
- "width": 40,
455
- "height": 8
456
- },
457
- {
458
- "x": 222,
459
- "y": 154,
460
- "width": 1,
461
- "height": 1
462
- },
463
- {
464
- "x": 42,
465
- "y": 589,
466
- "width": 1,
467
- "height": 8
468
- },
469
- {
470
- "x": 43,
471
- "y": 638,
472
- "width": 3,
473
- "height": 12
474
- },
475
- {
476
- "x": 81,
477
- "y": 535,
478
- "width": 11,
479
- "height": 6
480
- },
481
- {
482
- "x": 109,
483
- "y": 478,
484
- "width": 22,
485
- "height": 9
486
- },
487
- {
488
- "x": 119,
489
- "y": 423,
490
- "width": 40,
491
- "height": 7
492
- },
493
- {
494
- "x": 153,
495
- "y": 360,
496
- "width": 16,
497
- "height": 14
498
- },
499
- {
500
- "x": 174,
501
- "y": 299,
502
- "width": 29,
503
- "height": 12
504
- },
505
- {
506
- "x": 223,
507
- "y": 203,
508
- "width": 1,
509
- "height": 47
510
- },
511
- {
512
- "x": 307,
513
- "y": 50,
514
- "width": 4,
515
- "height": 3
516
- },
517
- {
518
- "x": 46,
519
- "y": 687,
520
- "width": 40,
521
- "height": 12
522
- },
523
- {
524
- "x": 92,
525
- "y": 583,
526
- "width": 43,
527
- "height": 6
528
- },
529
- {
530
- "x": 131,
531
- "y": 526,
532
- "width": 10,
533
- "height": 9
534
- },
535
- {
536
- "x": 159,
537
- "y": 472,
538
- "width": 21,
539
- "height": 6
540
- },
541
- {
542
- "x": 169,
543
- "y": 409,
544
- "width": 35,
545
- "height": 14
546
- },
547
- {
548
- "x": 203,
549
- "y": 348,
550
- "width": 7,
551
- "height": 12
552
- },
553
- {
554
- "x": 38,
555
- "y": 894,
556
- "width": 11,
557
- "height": 1
558
- },
559
- {
560
- "x": 49,
561
- "y": 942,
562
- "width": 37,
563
- "height": 1
564
- },
565
- {
566
- "x": 224,
567
- "y": 252,
568
- "width": 26,
569
- "height": 47
570
- },
571
- {
572
- "x": 268,
573
- "y": 199,
574
- "width": 3,
575
- "height": 4
576
- },
577
- {
578
- "x": 271,
579
- "y": 247,
580
- "width": 19,
581
- "height": 5
582
- },
583
- {
584
- "x": 311,
585
- "y": 99,
586
- "width": 5,
587
- "height": 2
588
- },
589
- {
590
- "x": 87,
591
- "y": 893,
592
- "width": 8,
593
- "height": 1
594
- },
595
- {
596
- "x": 86,
597
- "y": 736,
598
- "width": 30,
599
- "height": 12
600
- },
601
- {
602
- "x": 116,
603
- "y": 784,
604
- "width": 16,
605
- "height": 13
606
- },
607
- {
608
- "x": 130,
609
- "y": 735,
610
- "width": 32,
611
- "height": 1
612
- },
613
- {
614
- "x": 162,
615
- "y": 783,
616
- "width": 13,
617
- "height": 1
618
- },
619
- {
620
- "x": 95,
621
- "y": 941,
622
- "width": 33,
623
- "height": 1
624
- },
625
- {
626
- "x": 132,
627
- "y": 832,
628
- "width": 44,
629
- "height": 13
630
- },
631
- {
632
- "x": 175,
633
- "y": 831,
634
- "width": 1,
635
- "height": 14
636
- },
637
- {
638
- "x": 176,
639
- "y": 879,
640
- "width": 1,
641
- "height": 14
642
- },
643
- {
644
- "x": 177,
645
- "y": 927,
646
- "width": 25,
647
- "height": 14
648
- },
649
- {
650
- "x": 135,
651
- "y": 632,
652
- "width": 41,
653
- "height": 6
654
- },
655
- {
656
- "x": 176,
657
- "y": 728,
658
- "width": 25,
659
- "height": 7
660
- },
661
- {
662
- "x": 201,
663
- "y": 770,
664
- "width": 13,
665
- "height": 13
666
- },
667
- {
668
- "x": 214,
669
- "y": 818,
670
- "width": 4,
671
- "height": 13
672
- },
673
- {
674
- "x": 218,
675
- "y": 866,
676
- "width": 37,
677
- "height": 13
678
- },
679
- {
680
- "x": 180,
681
- "y": 521,
682
- "width": 4,
683
- "height": 5
684
- },
685
- {
686
- "x": 141,
687
- "y": 575,
688
- "width": 43,
689
- "height": 8
690
- },
691
- {
692
- "x": 204,
693
- "y": 458,
694
- "width": 17,
695
- "height": 14
696
- },
697
- {
698
- "x": 210,
699
- "y": 396,
700
- "width": 35,
701
- "height": 13
702
- },
703
- {
704
- "x": 290,
705
- "y": 295,
706
- "width": 3,
707
- "height": 5
708
- },
709
- {
710
- "x": 184,
711
- "y": 617,
712
- "width": 31,
713
- "height": 15
714
- },
715
- {
716
- "x": 221,
717
- "y": 506,
718
- "width": 5,
719
- "height": 15
720
- },
721
- {
722
- "x": 245,
723
- "y": 444,
724
- "width": 18,
725
- "height": 14
726
- },
727
- {
728
- "x": 293,
729
- "y": 343,
730
- "width": 29,
731
- "height": 5
732
- },
733
- {
734
- "x": 316,
735
- "y": 147,
736
- "width": 27,
737
- "height": 3
738
- },
739
- {
740
- "x": 351,
741
- "y": 98,
742
- "width": 12,
743
- "height": 1
744
- },
745
- {
746
- "x": 354,
747
- "y": 48,
748
- "width": 40,
749
- "height": 2
750
- },
751
- {
752
- "x": 304,
753
- "y": 198,
754
- "width": 39,
755
- "height": 1
756
- },
757
- {
758
- "x": 343,
759
- "y": 243,
760
- "width": 28,
761
- "height": 4
762
- },
763
- {
764
- "x": 363,
765
- "y": 146,
766
- "width": 26,
767
- "height": 1
768
- },
769
- {
770
- "x": 389,
771
- "y": 194,
772
- "width": 17,
773
- "height": 1
774
- },
775
- {
776
- "x": 394,
777
- "y": 96,
778
- "width": 11,
779
- "height": 2
780
- },
781
- {
782
- "x": 405,
783
- "y": 138,
784
- "width": 18,
785
- "height": 8
786
- },
787
- {
788
- "x": 215,
789
- "y": 665,
790
- "width": 34,
791
- "height": 15
792
- },
793
- {
794
- "x": 262,
795
- "y": 663,
796
- "width": 27,
797
- "height": 2
798
- },
799
- {
800
- "x": 249,
801
- "y": 761,
802
- "width": 5,
803
- "height": 9
804
- },
805
- {
806
- "x": 254,
807
- "y": 809,
808
- "width": 10,
809
- "height": 9
810
- },
811
- {
812
- "x": 289,
813
- "y": 711,
814
- "width": 6,
815
- "height": 2
816
- },
817
- {
818
- "x": 226,
819
- "y": 554,
820
- "width": 41,
821
- "height": 15
822
- },
823
- {
824
- "x": 263,
825
- "y": 492,
826
- "width": 6,
827
- "height": 14
828
- },
829
- {
830
- "x": 322,
831
- "y": 391,
832
- "width": 9,
833
- "height": 5
834
- },
835
- {
836
- "x": 371,
837
- "y": 291,
838
- "width": 10,
839
- "height": 4
840
- },
841
- {
842
- "x": 406,
843
- "y": 242,
844
- "width": 5,
845
- "height": 1
846
- },
847
- {
848
- "x": 423,
849
- "y": 186,
850
- "width": 22,
851
- "height": 8
852
- },
853
- {
854
- "x": 453,
855
- "y": 96,
856
- "width": 11,
857
- "height": 42
858
- },
859
- {
860
- "x": 255,
861
- "y": 914,
862
- "width": 14,
863
- "height": 13
864
- },
865
- {
866
- "x": 264,
867
- "y": 857,
868
- "width": 33,
869
- "height": 9
870
- },
871
- {
872
- "x": 295,
873
- "y": 759,
874
- "width": 40,
875
- "height": 2
876
- },
877
- {
878
- "x": 269,
879
- "y": 1010,
880
- "width": 756,
881
- "height": 15
882
- },
883
- {
884
- "x": 297,
885
- "y": 905,
886
- "width": 18,
887
- "height": 9
888
- },
889
- {
890
- "x": 335,
891
- "y": 807,
892
- "width": 21,
893
- "height": 2
894
- },
895
- {
896
- "x": 315,
897
- "y": 953,
898
- "width": 33,
899
- "height": 9
900
- },
901
- {
902
- "x": 348,
903
- "y": 1001,
904
- "width": 677,
905
- "height": 24
906
- },
907
- {
908
- "x": 356,
909
- "y": 855,
910
- "width": 27,
911
- "height": 2
912
- },
913
- {
914
- "x": 383,
915
- "y": 903,
916
- "width": 13,
917
- "height": 2
918
- },
919
- {
920
- "x": 433,
921
- "y": 999,
922
- "width": 592,
923
- "height": 26
924
- },
925
- {
926
- "x": 396,
927
- "y": 951,
928
- "width": 37,
929
- "height": 2
930
- },
931
- {
932
- "x": 269,
933
- "y": 540,
934
- "width": 41,
935
- "height": 14
936
- },
937
- {
938
- "x": 267,
939
- "y": 602,
940
- "width": 43,
941
- "height": 15
942
- },
943
- {
944
- "x": 310,
945
- "y": 636,
946
- "width": 21,
947
- "height": 27
948
- },
949
- {
950
- "x": 331,
951
- "y": 684,
952
- "width": 7,
953
- "height": 27
954
- },
955
- {
956
- "x": 338,
957
- "y": 732,
958
- "width": 37,
959
- "height": 27
960
- },
961
- {
962
- "x": 375,
963
- "y": 780,
964
- "width": 21,
965
- "height": 27
966
- },
967
- {
968
- "x": 396,
969
- "y": 828,
970
- "width": 31,
971
- "height": 27
972
- },
973
- {
974
- "x": 470,
975
- "y": 924,
976
- "width": 555,
977
- "height": 101
978
- },
979
- {
980
- "x": 442,
981
- "y": 924,
982
- "width": 583,
983
- "height": 27
984
- },
985
- {
986
- "x": 427,
987
- "y": 876,
988
- "width": 15,
989
- "height": 27
990
- },
991
- {
992
- "x": 482,
993
- "y": 876,
994
- "width": 543,
995
- "height": 149
996
- },
997
- {
998
- "x": 507,
999
- "y": 828,
1000
- "width": 518,
1001
- "height": 197
1002
- },
1003
- {
1004
- "x": 331,
1005
- "y": 439,
1006
- "width": 20,
1007
- "height": 5
1008
- },
1009
- {
1010
- "x": 381,
1011
- "y": 339,
1012
- "width": 29,
1013
- "height": 4
1014
- },
1015
- {
1016
- "x": 411,
1017
- "y": 290,
1018
- "width": 12,
1019
- "height": 1
1020
- },
1021
- {
1022
- "x": 351,
1023
- "y": 487,
1024
- "width": 30,
1025
- "height": 5
1026
- },
1027
- {
1028
- "x": 410,
1029
- "y": 387,
1030
- "width": 11,
1031
- "height": 4
1032
- },
1033
- {
1034
- "x": 423,
1035
- "y": 338,
1036
- "width": 27,
1037
- "height": 1
1038
- },
1039
- {
1040
- "x": 381,
1041
- "y": 533,
1042
- "width": 1,
1043
- "height": 7
1044
- },
1045
- {
1046
- "x": 417,
1047
- "y": 485,
1048
- "width": 4,
1049
- "height": 2
1050
- },
1051
- {
1052
- "x": 445,
1053
- "y": 234,
1054
- "width": 9,
1055
- "height": 8
1056
- },
1057
- {
1058
- "x": 505,
1059
- "y": 138,
1060
- "width": 6,
1061
- "height": 6
1062
- },
1063
- {
1064
- "x": 524,
1065
- "y": 90,
1066
- "width": 28,
1067
- "height": 6
1068
- },
1069
- {
1070
- "x": 529,
1071
- "y": 46,
1072
- "width": 42,
1073
- "height": 2
1074
- },
1075
- {
1076
- "x": 454,
1077
- "y": 279,
1078
- "width": 10,
1079
- "height": 11
1080
- },
1081
- {
1082
- "x": 487,
1083
- "y": 228,
1084
- "width": 8,
1085
- "height": 6
1086
- },
1087
- {
1088
- "x": 511,
1089
- "y": 180,
1090
- "width": 20,
1091
- "height": 6
1092
- },
1093
- {
1094
- "x": 552,
1095
- "y": 132,
1096
- "width": 3,
1097
- "height": 6
1098
- },
1099
- {
1100
- "x": 382,
1101
- "y": 575,
1102
- "width": 36,
1103
- "height": 13
1104
- },
1105
- {
1106
- "x": 421,
1107
- "y": 531,
1108
- "width": 7,
1109
- "height": 2
1110
- },
1111
- {
1112
- "x": 221,
1113
- "y": 208,
1114
- "width": 3,
1115
- "height": 42
1116
- },
1117
- {
1118
- "x": 421,
1119
- "y": 429,
1120
- "width": 34,
1121
- "height": 10
1122
- },
1123
- {
1124
- "x": 450,
1125
- "y": 380,
1126
- "width": 17,
1127
- "height": 7
1128
- },
1129
- {
1130
- "x": 464,
1131
- "y": 321,
1132
- "width": 32,
1133
- "height": 17
1134
- },
1135
- {
1136
- "x": 495,
1137
- "y": 270,
1138
- "width": 12,
1139
- "height": 9
1140
- },
1141
- {
1142
- "x": 531,
1143
- "y": 222,
1144
- "width": 4,
1145
- "height": 6
1146
- },
1147
- {
1148
- "x": 555,
1149
- "y": 174,
1150
- "width": 15,
1151
- "height": 6
1152
- },
1153
- {
1154
- "x": 418,
1155
- "y": 617,
1156
- "width": 28,
1157
- "height": 19
1158
- },
1159
- {
1160
- "x": 428,
1161
- "y": 573,
1162
- "width": 28,
1163
- "height": 2
1164
- },
1165
- {
1166
- "x": 449,
1167
- "y": 527,
1168
- "width": 20,
1169
- "height": 4
1170
- },
1171
- {
1172
- "x": 455,
1173
- "y": 471,
1174
- "width": 33,
1175
- "height": 14
1176
- },
1177
- {
1178
- "x": 467,
1179
- "y": 422,
1180
- "width": 26,
1181
- "height": 7
1182
- },
1183
- {
1184
- "x": 496,
1185
- "y": 363,
1186
- "width": 11,
1187
- "height": 17
1188
- },
1189
- {
1190
- "x": 507,
1191
- "y": 312,
1192
- "width": 30,
1193
- "height": 9
1194
- },
1195
- {
1196
- "x": 535,
1197
- "y": 264,
1198
- "width": 12,
1199
- "height": 6
1200
- },
1201
- {
1202
- "x": 570,
1203
- "y": 216,
1204
- "width": 5,
1205
- "height": 6
1206
- },
1207
- {
1208
- "x": 446,
1209
- "y": 659,
1210
- "width": 13,
1211
- "height": 25
1212
- },
1213
- {
1214
- "x": 456,
1215
- "y": 615,
1216
- "width": 25,
1217
- "height": 2
1218
- },
1219
- {
1220
- "x": 469,
1221
- "y": 569,
1222
- "width": 27,
1223
- "height": 4
1224
- },
1225
- {
1226
- "x": 488,
1227
- "y": 513,
1228
- "width": 20,
1229
- "height": 14
1230
- },
1231
- {
1232
- "x": 493,
1233
- "y": 464,
1234
- "width": 33,
1235
- "height": 7
1236
- },
1237
- {
1238
- "x": 507,
1239
- "y": 405,
1240
- "width": 25,
1241
- "height": 17
1242
- },
1243
- {
1244
- "x": 537,
1245
- "y": 354,
1246
- "width": 9,
1247
- "height": 9
1248
- },
1249
- {
1250
- "x": 547,
1251
- "y": 306,
1252
- "width": 27,
1253
- "height": 6
1254
- },
1255
- {
1256
- "x": 575,
1257
- "y": 258,
1258
- "width": 13,
1259
- "height": 6
1260
- },
1261
- {
1262
- "x": 481,
1263
- "y": 657,
1264
- "width": 19,
1265
- "height": 2
1266
- },
1267
- {
1268
- "x": 500,
1269
- "y": 699,
1270
- "width": 525,
1271
- "height": 2
1272
- },
1273
- {
1274
- "x": 534,
1275
- "y": 699,
1276
- "width": 491,
1277
- "height": 326
1278
- },
1279
- {
1280
- "x": 496,
1281
- "y": 611,
1282
- "width": 23,
1283
- "height": 4
1284
- },
1285
- {
1286
- "x": 537,
1287
- "y": 653,
1288
- "width": 488,
1289
- "height": 372
1290
- },
1291
- {
1292
- "x": 519,
1293
- "y": 653,
1294
- "width": 506,
1295
- "height": 4
1296
- },
1297
- {
1298
- "x": 508,
1299
- "y": 555,
1300
- "width": 27,
1301
- "height": 14
1302
- },
1303
- {
1304
- "x": 547,
1305
- "y": 597,
1306
- "width": 478,
1307
- "height": 428
1308
- },
1309
- {
1310
- "x": 535,
1311
- "y": 597,
1312
- "width": 490,
1313
- "height": 14
1314
- },
1315
- {
1316
- "x": 526,
1317
- "y": 506,
1318
- "width": 20,
1319
- "height": 7
1320
- },
1321
- {
1322
- "x": 574,
1323
- "y": 548,
1324
- "width": 451,
1325
- "height": 477
1326
- },
1327
- {
1328
- "x": 546,
1329
- "y": 548,
1330
- "width": 479,
1331
- "height": 7
1332
- },
1333
- {
1334
- "x": 532,
1335
- "y": 447,
1336
- "width": 35,
1337
- "height": 17
1338
- },
1339
- {
1340
- "x": 586,
1341
- "y": 489,
1342
- "width": 439,
1343
- "height": 536
1344
- },
1345
- {
1346
- "x": 567,
1347
- "y": 489,
1348
- "width": 458,
1349
- "height": 17
1350
- },
1351
- {
1352
- "x": 546,
1353
- "y": 396,
1354
- "width": 24,
1355
- "height": 9
1356
- },
1357
- {
1358
- "x": 570,
1359
- "y": 438,
1360
- "width": 455,
1361
- "height": 9
1362
- },
1363
- {
1364
- "x": 574,
1365
- "y": 348,
1366
- "width": 11,
1367
- "height": 6
1368
- },
1369
- {
1370
- "x": 588,
1371
- "y": 300,
1372
- "width": 25,
1373
- "height": 6
1374
- },
1375
- {
1376
- "x": 608,
1377
- "y": 431,
1378
- "width": 417,
1379
- "height": 594
1380
- },
1381
- {
1382
- "x": 585,
1383
- "y": 390,
1384
- "width": 21,
1385
- "height": 6
1386
- },
1387
- {
1388
- "x": 606,
1389
- "y": 431,
1390
- "width": 419,
1391
- "height": 16
1392
- },
1393
- {
1394
- "x": 613,
1395
- "y": 342,
1396
- "width": 10,
1397
- "height": 6
1398
- },
1399
- {
1400
- "x": 646,
1401
- "y": 383,
1402
- "width": 379,
1403
- "height": 642
1404
- },
1405
- {
1406
- "x": 663,
1407
- "y": 0,
1408
- "width": 362,
1409
- "height": 1025
1410
- },
1411
- {
1412
- "x": 623,
1413
- "y": 383,
1414
- "width": 402,
1415
- "height": 7
1416
- },
1417
- {
1418
- "x": 571,
1419
- "y": 88,
1420
- "width": 24,
1421
- "height": 2
1422
- },
1423
- {
1424
- "x": 595,
1425
- "y": 166,
1426
- "width": 430,
1427
- "height": 8
1428
- },
1429
- {
1430
- "x": 609,
1431
- "y": 166,
1432
- "width": 416,
1433
- "height": 50
1434
- },
1435
- {
1436
- "x": 613,
1437
- "y": 166,
1438
- "width": 412,
1439
- "height": 92
1440
- },
1441
- {
1442
- "x": 628,
1443
- "y": 166,
1444
- "width": 397,
1445
- "height": 134
1446
- },
1447
- {
1448
- "x": 572,
1449
- "y": 42,
1450
- "width": 42,
1451
- "height": 4
1452
- },
1453
- {
1454
- "x": 641,
1455
- "y": 81,
1456
- "width": 384,
1457
- "height": 261
1458
- },
1459
- {
1460
- "x": 653,
1461
- "y": 0,
1462
- "width": 372,
1463
- "height": 342
1464
- },
1465
- {
1466
- "x": 614,
1467
- "y": 81,
1468
- "width": 411,
1469
- "height": 7
1470
- },
1471
- {
1472
- "x": 635,
1473
- "y": 81,
1474
- "width": 390,
1475
- "height": 219
1476
- },
1477
- {
1478
- "x": 161,
1479
- "y": 1023,
1480
- "width": 864,
1481
- "height": 2
1482
- },
1483
- {
1484
- "x": 459,
1485
- "y": 729,
1486
- "width": 34,
1487
- "height": 3
1488
- },
1489
- {
1490
- "x": 0,
1491
- "y": 1024,
1492
- "width": 86,
1493
- "height": 1
1494
- },
1495
- {
1496
- "x": 128,
1497
- "y": 989,
1498
- "width": 33,
1499
- "height": 1
1500
- },
1501
- {
1502
- "x": 161,
1503
- "y": 1022,
1504
- "width": 41,
1505
- "height": 3
1506
- },
1507
- {
1508
- "x": 194,
1509
- "y": 989,
1510
- "width": 8,
1511
- "height": 36
1512
- },
1513
- {
1514
- "x": 493,
1515
- "y": 776,
1516
- "width": 532,
1517
- "height": 4
1518
- },
1519
- {
1520
- "x": 514,
1521
- "y": 776,
1522
- "width": 511,
1523
- "height": 249
1524
- },
1525
- {
1526
- "x": 526,
1527
- "y": 743,
1528
- "width": 499,
1529
- "height": 282
1530
- },
1531
- {
1532
- "x": 84,
1533
- "y": 991,
1534
- "width": 2,
1535
- "height": 34
1536
- },
1537
- {
1538
- "x": 615,
1539
- "y": 28,
1540
- "width": 410,
1541
- "height": 14
1542
- },
1543
- {
1544
- "x": 643,
1545
- "y": 0,
1546
- "width": 382,
1547
- "height": 42
1548
- },
1549
- {
1550
- "x": 39,
1551
- "y": 322,
1552
- "width": 32,
1553
- "height": 1
1554
- }
1555
- ],
1556
- "rects": [],
1557
- "options": {
1558
- "smart": false,
1559
- "pot": false,
1560
- "square": false,
1561
- "allowRotation": false,
1562
- "tag": false,
1563
- "exclusiveTag": true,
1564
- "border": 0,
1565
- "logic": 1
1566
- }
1567
- }
1568
- ]
1569
- }
1570
- }