|
@@ -0,0 +1,481 @@
|
|
1
|
+using System;
|
|
2
|
+using System.Collections.Generic;
|
|
3
|
+using System.Linq;
|
|
4
|
+using System.Text;
|
|
5
|
+using System.Threading.Tasks;
|
|
6
|
+
|
|
7
|
+using TQLComm;
|
|
8
|
+
|
|
9
|
+namespace XHPZ.Desktop
|
|
10
|
+{
|
|
11
|
+ public class PenEvents : PenEvent
|
|
12
|
+ {
|
|
13
|
+ int SA = 0;
|
|
14
|
+ int SB = 0;
|
|
15
|
+ int SC = 0;
|
|
16
|
+ int SD = 0;
|
|
17
|
+ int Sindex = 0;
|
|
18
|
+
|
|
19
|
+ int S = 0;
|
|
20
|
+ int O = 0;
|
|
21
|
+ int B = 0;
|
|
22
|
+ int P = 0;
|
|
23
|
+ public static bool ConnectPen = false;
|
|
24
|
+ public bool ShowPointLog = false;
|
|
25
|
+
|
|
26
|
+ public static bool DrawIngend = true;
|
|
27
|
+
|
|
28
|
+ public PenCommManager Manager;
|
|
29
|
+
|
|
30
|
+ /// <summary>
|
|
31
|
+ /// TQL事件初始化,进入类型1录制2录屏
|
|
32
|
+ /// </summary>
|
|
33
|
+ /// <param name="type">进入类型1录制2录屏</param>
|
|
34
|
+ public PenEvents()//(Form1 form)
|
|
35
|
+ {
|
|
36
|
+ //this.form = form;
|
|
37
|
+ Manager = new PenCommManager(this);
|
|
38
|
+ Manager.Init();
|
|
39
|
+ }
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+ public void StartRecvDataTimer1()
|
|
43
|
+ {
|
|
44
|
+ DrawIngend = false;
|
|
45
|
+ System.Timers.Timer t = new System.Timers.Timer(1000);
|
|
46
|
+ t.Elapsed += new System.Timers.ElapsedEventHandler(timerCall);
|
|
47
|
+ t.AutoReset = false;//设置是执行一次(false)还是一直执行(true);
|
|
48
|
+ t.Enabled = true;//是否执行System.Timers.Timer.Elapsed事件;
|
|
49
|
+ }
|
|
50
|
+
|
|
51
|
+ //委托执行的方法
|
|
52
|
+ private void timerCall(object source, System.Timers.ElapsedEventArgs e)
|
|
53
|
+ {
|
|
54
|
+ DrawIngend = true;
|
|
55
|
+ //MessageBox.Show("ni");
|
|
56
|
+ }
|
|
57
|
+
|
|
58
|
+ public void OnGetOIDType(uint oType)
|
|
59
|
+ {
|
|
60
|
+
|
|
61
|
+ }
|
|
62
|
+
|
|
63
|
+ public void OnSetOIDType(bool bSuccess)
|
|
64
|
+ {
|
|
65
|
+
|
|
66
|
+ }
|
|
67
|
+
|
|
68
|
+ public void onConfirmReceiveOfflineData(bool bSuccess)
|
|
69
|
+ {
|
|
70
|
+ }
|
|
71
|
+
|
|
72
|
+ /// <summary>
|
|
73
|
+ /// 智能笔连接状态
|
|
74
|
+ /// </summary>
|
|
75
|
+ /// <param name="bConnected"></param>
|
|
76
|
+ public void onConnectionStatus(bool bConnected)
|
|
77
|
+ {
|
|
78
|
+ ConnectPen = bConnected;
|
|
79
|
+ try
|
|
80
|
+ {
|
|
81
|
+ if (bConnected)
|
|
82
|
+ {
|
|
83
|
+ APP.TQLPenStatus = true;
|
|
84
|
+ //form.AddLog("智能笔已连接!");
|
|
85
|
+ //APP.W_XHMicroLessonSystemWindow.UpdateDevStatus();
|
|
86
|
+ }
|
|
87
|
+ else
|
|
88
|
+ {
|
|
89
|
+ APP.TQLPenStatus = false;
|
|
90
|
+ //form.DisConnect();
|
|
91
|
+ //form.AddLog("智能笔已断开连接!");
|
|
92
|
+ //APP.W_XHMicroLessonSystemWindow.UpdateDevStatus();
|
|
93
|
+ }
|
|
94
|
+ }
|
|
95
|
+ catch (Exception)
|
|
96
|
+ {
|
|
97
|
+ }
|
|
98
|
+ }
|
|
99
|
+
|
|
100
|
+ public void onContinueOfflineData(bool bSuccess)
|
|
101
|
+ {
|
|
102
|
+
|
|
103
|
+ }
|
|
104
|
+ /// <summary>
|
|
105
|
+ /// 下载离线数据
|
|
106
|
+ /// </summary>
|
|
107
|
+ /// <param name="bEnd"></param>
|
|
108
|
+ public void onEndOfDownloadOfflineData(bool bEnd)
|
|
109
|
+ {
|
|
110
|
+ if (bEnd)
|
|
111
|
+ {
|
|
112
|
+ //if (form.StartDownload) form.StartDownload = false;
|
|
113
|
+ //form.StartOrStop(form.StartDownload);
|
|
114
|
+ //form.DrawOffType = -1;
|
|
115
|
+
|
|
116
|
+ //form.AddLog("下载离线数据成功!");
|
|
117
|
+
|
|
118
|
+ //form.SetProGress(100);
|
|
119
|
+ }
|
|
120
|
+ else
|
|
121
|
+ {
|
|
122
|
+ //if (!form.StartDownload) form.StartDownload = true;
|
|
123
|
+ //form.AddLog("下载离线数据失败!");
|
|
124
|
+ }
|
|
125
|
+ }
|
|
126
|
+
|
|
127
|
+ public void onGetAutoPowerOffTime(short Data)
|
|
128
|
+ {
|
|
129
|
+ //if (form.PenAttribute != null) form.PenAttribute.SetoffTextString(Data.ToString());
|
|
130
|
+ //form.AddLog("当前自动休眠时间:" + Data.ToString() + "!");
|
|
131
|
+ }
|
|
132
|
+
|
|
133
|
+ public void onGetAutoPowerOnMode(bool bSetOn)
|
|
134
|
+ {
|
|
135
|
+ //if (form.PenAttribute != null) form.PenAttribute.SetSevseepComBox(bSetOn);
|
|
136
|
+ //form.AddLog("当前唤醒模式笔尖压力是否唤醒:" + bSetOn.ToString() + "!");
|
|
137
|
+ }
|
|
138
|
+
|
|
139
|
+ public void onGetBatteryPower(short Data)
|
|
140
|
+ {
|
|
141
|
+ //if (form.PenAttribute != null) form.PenAttribute.SetBatteryTextString(Data.ToString() + "%");
|
|
142
|
+ //form.AddLog("当前剩余电量:" + Data.ToString() + "%!");
|
|
143
|
+ }
|
|
144
|
+
|
|
145
|
+ public void onGetBeepStatus(bool bSetOn)
|
|
146
|
+ {
|
|
147
|
+ //if (form.PenAttribute != null) form.PenAttribute.SetBeetComBox(bSetOn);
|
|
148
|
+ //form.AddLog("当前蜂鸣器模式是否响动:" + bSetOn.ToString() + "!");
|
|
149
|
+ }
|
|
150
|
+
|
|
151
|
+ public void onGetCustomerID(uint ID1, uint ID2)
|
|
152
|
+ {
|
|
153
|
+
|
|
154
|
+ }
|
|
155
|
+
|
|
156
|
+ public void onGetElementCode(uint OID, uint SID, int Size)
|
|
157
|
+ {
|
|
158
|
+
|
|
159
|
+ }
|
|
160
|
+
|
|
161
|
+ public void onGetFWVersion(string strData)
|
|
162
|
+ {
|
|
163
|
+ //if (form.PenAttribute != null) form.PenAttribute.SetBTTextString(strData);
|
|
164
|
+ //form.AddLog("当前蓝牙版本号:" + strData + "!");
|
|
165
|
+ }
|
|
166
|
+
|
|
167
|
+ public void onGetMCUFWVersion(string strData)
|
|
168
|
+ {
|
|
169
|
+ //if (form.PenAttribute != null) form.PenAttribute.SetMCUTextString(strData);
|
|
170
|
+ //form.AddLog("当前MCU版本号:" + strData + "!");
|
|
171
|
+ }
|
|
172
|
+
|
|
173
|
+ public void onGetMacAddress(string macAddress)
|
|
174
|
+ {
|
|
175
|
+ //if (form.PenAttribute != null) form.PenAttribute.SetMAcTextString(macAddress);
|
|
176
|
+ //form.AddLog("当前MAC:" + macAddress + "!");
|
|
177
|
+ }
|
|
178
|
+
|
|
179
|
+ public void onGetOID4ElementCode(int SA, int SB, int SC, int SD, int index)
|
|
180
|
+ {
|
|
181
|
+ //if (this.SA != SA || this.SB != SB || this.SC != SC || this.SD != SD || this.Sindex != index)
|
|
182
|
+ //{
|
|
183
|
+ // this.SA = SA; this.SB = SB; this.SC = SC; this.SD = SD; this.Sindex = index;
|
|
184
|
+ // form.AddLog("SA:" + SA.ToString() + "," + "SB:" + SB.ToString() + "," + "SC:" + SC.ToString() + "," + "SD:" + SD.ToString() + "," + "index:" + index.ToString());
|
|
185
|
+ //}
|
|
186
|
+ }
|
|
187
|
+
|
|
188
|
+ public void onGetOfflineDataNo(int Data)
|
|
189
|
+ {
|
|
190
|
+ //ConnectPen = true;
|
|
191
|
+ //form.AddLog("当前离线数据量:" + Data.ToString() + "!");
|
|
192
|
+ //if (Data == 0 && form.StartDownload == true)
|
|
193
|
+ //{
|
|
194
|
+ // form.StartDownload = false;
|
|
195
|
+ // form.StartOrStop(form.StartDownload);
|
|
196
|
+ // form.AddLog("下载离线数据成功!");
|
|
197
|
+ //}
|
|
198
|
+
|
|
199
|
+ }
|
|
200
|
+
|
|
201
|
+ public void onGetPenColor(short Data)
|
|
202
|
+ {
|
|
203
|
+ //if (form.PenAttribute != null) form.PenAttribute.SetLEDComBox(Data);
|
|
204
|
+ //switch (Data)
|
|
205
|
+ //{
|
|
206
|
+ // case 1:
|
|
207
|
+ // form.timing.SetPenColor(Color.Blue);
|
|
208
|
+ // break;
|
|
209
|
+ // case 2:
|
|
210
|
+ // form.timing.SetPenColor(Color.Green);
|
|
211
|
+ // break;
|
|
212
|
+ // case 3:
|
|
213
|
+ // form.timing.SetPenColor(Color.Cyan);
|
|
214
|
+ // break;
|
|
215
|
+ // case 4:
|
|
216
|
+ // form.timing.SetPenColor(Color.Red);
|
|
217
|
+ // break;
|
|
218
|
+ // case 5:
|
|
219
|
+ // form.timing.SetPenColor(Color.Magenta);
|
|
220
|
+ // break;
|
|
221
|
+ // case 6:
|
|
222
|
+ // form.timing.SetPenColor(Color.Yellow);
|
|
223
|
+ // break;
|
|
224
|
+ // case 7:
|
|
225
|
+ // form.timing.SetPenColor(Color.Black);
|
|
226
|
+ // break;
|
|
227
|
+ // default:
|
|
228
|
+ // break;
|
|
229
|
+ //}
|
|
230
|
+
|
|
231
|
+ }
|
|
232
|
+ /// <summary>
|
|
233
|
+ /// 获取笔名
|
|
234
|
+ /// </summary>
|
|
235
|
+ /// <param name="localName"></param>
|
|
236
|
+ public void onGetPenLocalName(string localName)
|
|
237
|
+ {
|
|
238
|
+ //if (form.PenAttribute != null) form.PenAttribute.SetNameTextString(localName);
|
|
239
|
+ //form.AddLog("当前笔名:" + localName + "!");
|
|
240
|
+ }
|
|
241
|
+
|
|
242
|
+ public void onGetPressureCalibrationData(uint LData, uint HData)
|
|
243
|
+ {
|
|
244
|
+
|
|
245
|
+ }
|
|
246
|
+
|
|
247
|
+ private DateTime ConvertLongToDateTime(long d)
|
|
248
|
+ {
|
|
249
|
+ DateTime dtStart = Convert.ToDateTime("1970-1-1");
|
|
250
|
+ long lTime = long.Parse(d.ToString());
|
|
251
|
+ TimeSpan toNow = new TimeSpan(lTime);
|
|
252
|
+ DateTime dtResult = dtStart.AddSeconds(lTime);
|
|
253
|
+ return dtResult;
|
|
254
|
+ // return dtResult;
|
|
255
|
+ }
|
|
256
|
+
|
|
257
|
+ public void onGetRTC(long Data)
|
|
258
|
+ {
|
|
259
|
+ //DateTime time = ConvertLongToDateTime(Data);
|
|
260
|
+ //if (form.PenAttribute != null) form.PenAttribute.SetRTCTextString(time.ToString("yyyy-MM-dd HH:mm:ss"));
|
|
261
|
+ //form.AddLog("当前RTC:" + time.ToString("yyyy-MM-dd HH:mm:ss") + "!");
|
|
262
|
+ }
|
|
263
|
+
|
|
264
|
+ public void onGetSensitivityLevel(short Data)
|
|
265
|
+ {
|
|
266
|
+ //ConnectPen = true;
|
|
267
|
+ //if (form.PenAttribute != null) form.PenAttribute.SetSevComBox(Data);
|
|
268
|
+ //form.AddLog("当前压力敏感度:" + Data.ToString() + "!");
|
|
269
|
+ }
|
|
270
|
+ /// <summary>
|
|
271
|
+ /// 内存使用量
|
|
272
|
+ /// </summary>
|
|
273
|
+ /// <param name="Data"></param>
|
|
274
|
+ public void onGetUsedMemory(short Data)
|
|
275
|
+ {
|
|
276
|
+ //if (form.PenAttribute != null) form.PenAttribute.SetmemTextString(Data.ToString());
|
|
277
|
+ //form.AddLog("当前使用内存为:" + Data.ToString() + "!");
|
|
278
|
+ }
|
|
279
|
+ /// <summary>
|
|
280
|
+ /// 获取蓝牙适配器连接状态
|
|
281
|
+ /// </summary>
|
|
282
|
+ /// <param name="bReady"></param>
|
|
283
|
+ public void onHIDGetReady(bool bReady)
|
|
284
|
+ {
|
|
285
|
+ //if (bReady)
|
|
286
|
+ //{
|
|
287
|
+ // form.AddLog("蓝牙适配器已连接!");
|
|
288
|
+ //}
|
|
289
|
+ //else
|
|
290
|
+ //{
|
|
291
|
+ // form.AddLog("蓝牙适配器已断开连接!");
|
|
292
|
+ //}
|
|
293
|
+ }
|
|
294
|
+
|
|
295
|
+ public void onPauseOfflineData(bool bSuccess)
|
|
296
|
+ {
|
|
297
|
+
|
|
298
|
+ }
|
|
299
|
+
|
|
300
|
+ /// <summary>
|
|
301
|
+ /// 书写点
|
|
302
|
+ /// </summary>
|
|
303
|
+ /// <param name="dot"></param>
|
|
304
|
+ /// <param name="count"></param>
|
|
305
|
+ public void onReceiveDot(Dot dot, int count)
|
|
306
|
+ {
|
|
307
|
+
|
|
308
|
+ //录屏模式
|
|
309
|
+ if (dot.type == DotType.PEN_HOVER)
|
|
310
|
+ {
|
|
311
|
+ return;
|
|
312
|
+ }
|
|
313
|
+ else if (dot.type == DotType.PEN_DOWN)
|
|
314
|
+ {
|
|
315
|
+ APP.W_PracticeWindow.TQLDown();
|
|
316
|
+ }
|
|
317
|
+ else if (dot.type == DotType.PEN_UP)
|
|
318
|
+ {
|
|
319
|
+ APP.W_PracticeWindow.TQLUp();
|
|
320
|
+ }
|
|
321
|
+ else if (dot.type == DotType.PEN_MOVE)
|
|
322
|
+ {
|
|
323
|
+ double CX = (double)dot.x + (double)dot.fx / 100.00;
|
|
324
|
+ double CY = (double)dot.y + (double)dot.fy / 100.00;
|
|
325
|
+ APP.W_PracticeWindow.TQLPenWrite(CX, CY, dot.force);
|
|
326
|
+ //form.AddLog("x:" + (dot.x + dot.fx / 100f).ToString() + ", " + "y:" + (dot.y + dot.fy / 100f).ToString());
|
|
327
|
+ }
|
|
328
|
+ }
|
|
329
|
+ /// <summary>
|
|
330
|
+ /// 接收脱机数据
|
|
331
|
+ /// </summary>
|
|
332
|
+ /// <param name="dot"></param>
|
|
333
|
+ /// <param name="count"></param>
|
|
334
|
+ public void onReceiveOfflineData(Dot dot, int count)
|
|
335
|
+ {
|
|
336
|
+ //if (form.StartDownload == false)
|
|
337
|
+ //{
|
|
338
|
+ // Manager.StopDownloadOfflineData();
|
|
339
|
+ // return;
|
|
340
|
+ //}
|
|
341
|
+ //if (this.S != dot.sectionId || this.O != dot.ownerId || this.B != dot.noteId || this.P != dot.pageId)
|
|
342
|
+ //{
|
|
343
|
+ // this.S = dot.sectionId; this.O = dot.ownerId; this.B = dot.noteId; this.P = dot.pageId;
|
|
344
|
+ // form.AddLog("Dot_S:" + this.S.ToString() + ", " + "Dot_O:" + this.O.ToString() + ", " + "Dot_B:" + this.B.ToString() + ", " + "Dot_P:" + this.P.ToString());
|
|
345
|
+ //}
|
|
346
|
+
|
|
347
|
+ ///*long unixTimeStamp = (long)(dot.timeLong - 28800000);//1478162177;
|
|
348
|
+ //System.DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(new System.DateTime(2010, 1, 1)); // 当地时区
|
|
349
|
+ //DateTime dt = startTime.AddMilliseconds(unixTimeStamp);
|
|
350
|
+ //form.AddLog("OFF:" + dt.ToString("MM/dd HH:mm:ss.fff"));
|
|
351
|
+ //*/
|
|
352
|
+
|
|
353
|
+ ///* DateTime tmp = new System.DateTime(2010, 1, 1);
|
|
354
|
+ // tmp.AddMilliseconds(dot.timeLong);
|
|
355
|
+ // form.AddLog("TIME:" + tmp.ToString("MM/dd HH:mm:ss"));*/
|
|
356
|
+
|
|
357
|
+ //// form.AddLog("TIME:" + dot.timeLong.ToString());
|
|
358
|
+
|
|
359
|
+ //if (DrawingBox.DrawType != 2) DrawingBox.DrawType = 3;
|
|
360
|
+ //form.Drawing(dot);
|
|
361
|
+ }
|
|
362
|
+
|
|
363
|
+ public void onReceiveOriginalDot(Dot dot, int count)
|
|
364
|
+ {
|
|
365
|
+ //form.Drawing(dot);
|
|
366
|
+ }
|
|
367
|
+
|
|
368
|
+ public void onRemoveOfflineData(bool bRemoved)
|
|
369
|
+ {
|
|
370
|
+ //if (bRemoved)
|
|
371
|
+ //{
|
|
372
|
+
|
|
373
|
+ // form.AddLog("删除离线数据成功!");
|
|
374
|
+ // form.StartDownload = false;
|
|
375
|
+ // form.ContinueDownload = true;
|
|
376
|
+ // form.DrawOffType = -1;
|
|
377
|
+ //}
|
|
378
|
+ //else form.AddLog("删除离线数据失败!");
|
|
379
|
+ }
|
|
380
|
+
|
|
381
|
+ public void onSetAutoPowerOffTime(bool bsuccess)
|
|
382
|
+ {
|
|
383
|
+
|
|
384
|
+ //if (bsuccess) form.AddLog("设置自动休眠时间成功!");
|
|
385
|
+ //else form.AddLog("设置自动休眠时间失败!");
|
|
386
|
+ }
|
|
387
|
+
|
|
388
|
+ public void onSetAutoPowerOnMode(bool bsuccess)
|
|
389
|
+ {
|
|
390
|
+ //if (bsuccess) form.AddLog("设置笔的唤醒模式成功!");
|
|
391
|
+ //else form.AddLog("设置笔的唤醒模式失败!");
|
|
392
|
+ }
|
|
393
|
+
|
|
394
|
+ public void onSetBeepStatus(bool bsuccess)
|
|
395
|
+ {
|
|
396
|
+ //if (bsuccess) form.AddLog("设置蜂鸣器成功!");
|
|
397
|
+ //else form.AddLog("设置蜂鸣器失败!");
|
|
398
|
+ }
|
|
399
|
+
|
|
400
|
+ public void onSetCustomerID(bool bsuccess)
|
|
401
|
+ {
|
|
402
|
+
|
|
403
|
+ }
|
|
404
|
+
|
|
405
|
+ public void onSetElementCode(bool bSuccess)
|
|
406
|
+ {
|
|
407
|
+
|
|
408
|
+ }
|
|
409
|
+
|
|
410
|
+ public void onSetPenColor(bool bsuccess)
|
|
411
|
+ {
|
|
412
|
+ //if (Form1.SetColor == false) return;
|
|
413
|
+ //Form1.SetColor = false;
|
|
414
|
+ //if (bsuccess) form.AddLog("设置笔LED灯颜色成功!");
|
|
415
|
+ //else form.AddLog("设置笔LED灯颜色失败!");
|
|
416
|
+ }
|
|
417
|
+
|
|
418
|
+ public void onSetPenLocalName(bool bsuccess)
|
|
419
|
+ {
|
|
420
|
+ //if (bsuccess) form.AddLog("设置笔名成功!");
|
|
421
|
+ //else form.AddLog("设置笔名失败!");
|
|
422
|
+ }
|
|
423
|
+
|
|
424
|
+ public void onSetSensitivityLevel(bool bsuccess)
|
|
425
|
+ {
|
|
426
|
+ //if (bsuccess) form.AddLog("设置压力敏感度成功!");
|
|
427
|
+ //else form.AddLog("设置压力敏感度失败!");
|
|
428
|
+ }
|
|
429
|
+
|
|
430
|
+ public void onStartDownloadOfflineData(bool bStart)
|
|
431
|
+ {
|
|
432
|
+
|
|
433
|
+ }
|
|
434
|
+
|
|
435
|
+ public void onStopDownloadOfflineData(bool bStart)
|
|
436
|
+ {
|
|
437
|
+
|
|
438
|
+ }
|
|
439
|
+
|
|
440
|
+ public void onWriteRTC(bool bsuccess)
|
|
441
|
+ {
|
|
442
|
+ //if (bsuccess)
|
|
443
|
+ //{
|
|
444
|
+ // form.AddLog("设置RTC成功!");
|
|
445
|
+ // Manager.GetRTC();
|
|
446
|
+ //}
|
|
447
|
+ //else form.AddLog("设置RTC失败!");
|
|
448
|
+ }
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+ public void DownloadOfflineDataRate(float Rate)
|
|
452
|
+ {
|
|
453
|
+ //form.SetProGress(Rate);
|
|
454
|
+ }
|
|
455
|
+
|
|
456
|
+ public void onGetMCUFCode(string strData)
|
|
457
|
+ {
|
|
458
|
+ //if (form.PenAttribute != null) form.PenAttribute.SetMcuCodeTextString(strData);
|
|
459
|
+ //form.AddLog("MCU序列号:" + strData + "!");
|
|
460
|
+ }
|
|
461
|
+
|
|
462
|
+ public void OnGetPenCodeType(uint oType)
|
|
463
|
+ {
|
|
464
|
+
|
|
465
|
+ }
|
|
466
|
+
|
|
467
|
+ public void onSetPenHover(byte type)
|
|
468
|
+ {
|
|
469
|
+ //if (type == 1)
|
|
470
|
+ //{
|
|
471
|
+ // form.AddLog("设置悬浮打开!");
|
|
472
|
+ // form.PenAttribute.SetHoverComBox(0);
|
|
473
|
+ //}
|
|
474
|
+ //else if (type == 0)
|
|
475
|
+ //{
|
|
476
|
+ // form.AddLog("设置悬浮关闭!");
|
|
477
|
+ // form.PenAttribute.SetHoverComBox(1);
|
|
478
|
+ //}
|
|
479
|
+ }
|
|
480
|
+ }
|
|
481
|
+}
|