about summary refs log tree commit diff stats
path: root/sandbox
Commit message (Collapse)AuthorAgeFilesLines
...
* 3853Kartik K. Agaram2017-05-121-2/+13
| | | | | | Bring back commit 3844, albeit in simplified form. I'd forgotten that the one place where we still need to buffer rendering is when people hold down up/down arrow keys.
* 3852Kartik K. Agaram2017-05-123-2/+35
| | | | | | | | | | | | | Bugfix of commit 3850 for the sandbox/ app. I'd hoped to just quickly move past this ugly approach, but a cleaner way is more involved than I thought. This way is ugly partly because I'm introducing a bunch of conditionals without testing them. One or more of my additions may well be hiding bugs. Or I may need to add them in a few other places. The clean way is to update the fake screen model to accurately mimic the new real screen, where out of bounds prints aren't silently ignored, and where scrolling is a fact of life.
* 3844Kartik K. Agaram2017-05-061-43/+4
| | | | | Once I start optimizing most events to not repaint everything there's no need to be smart about queued-up events.
* 3843Kartik K. Agaram2017-05-062-7/+10
|
* 3831Kartik K. Agaram2017-04-181-1/+1
| | | | Fix CI.
* 3825Kartik K. Agaram2017-04-161-0/+6
|
* 3824 - experiment: stop buffering in termboxKartik K. Agaram2017-04-168-35/+0
| | | | | | | | | | | | | | | | Now it's much more apparent why things are slow. You can see each repaint happening. Already I fixed one performance bug -- in clear-rest-of-screen. Since this subverts Mu's fake screen there may be bugs. Another salubrious side effect: I've finally internalized that switching to raw mode doesn't have to clear the screen. That was just an artifact of how termbox abstracted operations. Now I can conceive of using termbox to build a repl as well. (I was inspired to poke into termbox internals by http://viewsourcecode.org/snaptoken/kilo and https://github.com/antirez/linenoise)
* 3806Kartik K. Agaram2017-03-211-9/+4
|
* 3797Kartik K. Agaram2017-03-152-2/+0
|
* 3796Kartik K. Agaram2017-03-141-26/+30
| | | | | | Standardize the order of some common blocks in `render`, `render-text` and `render-code`. This is preparation for trying to reorganize them to reduce duplicate code.
* 3795Kartik K. Agaram2017-03-142-5/+5
|
* 3794Kartik K. Agaram2017-03-141-2/+2
| | | | Fix a _very_ misleading comment.
* 3793Kartik K. Agaram2017-03-142-63/+63
| | | | | | Move 'render-code' to the layer where it's used. Thanks Caleb Couch for finding this bit of ugliness.
* 3790Kartik K. Agaram2017-03-121-1/+4
| | | | Don't try to snapshot in scenarios.
* 3789Kartik K. Agaram2017-03-121-0/+1
| | | | | | | | | | | | | I accidentally got rid of git snapshotting of lessons back when I switched to testable file primitives last December (commit 3705). >:-( Bringing it back now, hopefully better. The improvement is that there's now at most one commit every time we hit F4. This change adds yet another reason that running `mu` from a different directory is just not supported.
* 3748Kartik K. Agaram2017-02-281-1/+1
|
* 3733Kartik K. Agaram2017-01-111-1/+1
|
* 3731Kartik K. Agaram2017-01-111-1/+2
| | | | Bitrot in main when loading just layer 1 of the edit/ and sandbox/ apps.
* 3706Kartik K. Agaram2016-12-111-2/+2
|
* 3705 - switch to tested file-system primitivesKartik K. Agaram2016-12-118-256/+393
|
* 3700Kartik K. Agaram2016-11-284-89/+51
| | | | | | Reorder products of some functions in the edit/ and sandbox/ apps. My recent realization: always return 'real' products before ones that just indicate an ingredient is mutable.
* 3699Kartik K. Agaram2016-11-284-13/+10
| | | | | Delete some obsolete /same-as-ingredient attributes. We should always let Mu deduce those at this point.
* 3698Kartik K. Agaram2016-11-276-142/+148
| | | | | | | | Update sandbox/ with recent changes to edit/ (commit 3695 onwards). [Incidentally, this is the first commit to be made while running on OpenBSD. Simulated and host systems are going to blur together from now on.]
* 3656Kartik K. Agaram2016-11-103-5/+5
| | | | | | | | | | | | | | Periodic cleanup to replace 'reply' with 'return' everywhere in the repo. I use 'reply' for students to help reinforce the metaphor of function calls as being like messages through a pipe. But that causes 'reply' to get into my muscle memory when writing Mu code for myself, and I worry that that makes Mu seem unnecessarily alien to anybody reading on Github. Perhaps I should just give it up? I'll try using 'return' with my next student.
* 3599Kartik K. Agaram2016-10-271-2/+4
|
* 3565Kartik K. Agaram2016-10-232-2/+2
| | | | | | Cleaning up the console interfaces before we start changing the socket interfaces to look like them. Reading from sockets need to be non-blocking just like reading from the console.
* 3561Kartik K. Agaram2016-10-224-9/+9
|
* 3552Kartik K. Agaram2016-10-2211-36/+36
| | | | | | | | | | | | | | | | | | Stop requiring jump instructions to explicitly provide a ':label' type for jump targets. This has been a source of repeated confusion for my students: a) They'd add the ':label' to the label definition rather than the jump target (label use) b) They'd spend time thinking about whether the initial '+' prefix was part of the label name. In the process I cleaned up a couple of things: - the space of names is more cleanly partitioned into labels and non-labels (clarifying that '_' and '-' are non-label prefixes) - you can't use label names as regular variables anymore - you can infer the type of a label just from its name
* 3498Kartik K. Agaram2016-10-141-1/+1
|
* 3490Kartik K. Agaram2016-10-098-148/+148
| | | | | | | | | | | | | | | Redo commit 3457. Basically there were 3 unicode characters we changed back then: solid horizontal line: 9473 -> 9472 fuzzy horizontal line: 9480 -> 9548 fuzzy vertical line: 9482 -> 9550 The solid horizontal line has no issues, so we just redo it here. For the other two, we'll perform the substitution only when rendering html. That gives us the best of both worlds: the scenario screens render right in html, and alt-tabbing continues to be snappy when running the edit/ app.
* 3489Kartik K. Agaram2016-10-0811-264/+264
| | | | | | | | | | Revert commit 3457, where I switched the unicode characters used in the edit/ app to something that doesn't render double-wide in html. It turns out that the new unicode characters made iTerm2 sluggish in alt-tabbing between windows. (Commit 3488 only fixed the screen-clearing issue.) I haven't reverted the html files. I'm going to redo commit 3457 next so the html files continue to render like they do now.
* 3457Kartik K. Agaram2016-10-0611-264/+264
| | | | | Switch around some unicode characters in the edit/ app so that it renders more cleanly in html (with monospace fonts).
* 3445Kartik K. Agaram2016-10-0611-395/+395
| | | | | | | Ugly that we didn't need 'screen' to provide a type in scenarios (because assume-screen expands to a definition of 'screen') but we did need a type for 'console'. Just never require types for special names in scenarios.
* 3429 - standardize Mu scenariosKartik K. Agaram2016-09-2811-814/+883
| | | | | | | | | | | | | A long-standing problem has been that I couldn't spread code across 'run' blocks because they were separate scopes, so I've ended up making them effectively comments. Running code inside a 'run' block is identical in every way to simply running the code directly. The 'run' block is merely a visual aid to separate setup from the component under test. In the process I've also standardized all Mu scenarios to always run in a local scope, and only use (raw) numeric addresses for values they want to check later.
* 3428Kartik K. Agaram2016-09-281-2/+2
|
* 3396Kartik K. Agaram2016-09-1712-747/+747
|
* 3391 - type abbreviations everywhereKartik K. Agaram2016-09-1712-1485/+1485
| | | | | | | | | Well, almost. I can't use them in some places in C++ where I'm just creating a temporary reagent without passing it through transforms. Like in some unit tests. I can't use them in memory-should-contain. And there's one remaining bug: I can't use abbreviations in a couple of places in 075channel.mu.
* 3369Kartik K. Agaram2016-09-151-12/+0
| | | | Fix some tests and make them less fragile.
* 3347Kartik K. Agaram2016-09-134-8/+8
| | | | | | | | | Done using 'text' type abbreviation everywhere. There's still a problem. If we define a function with a type abbreviation and then redefine it without, I think we end up creating separate variants. That seems wrong. Let's isolate a scenario for that next.
* 3341Kartik K. Agaram2016-09-123-4/+4
| | | | | | | Process type abbreviations in function headers. Still a couple of places where doing this causes strange errors. We'll track those down next.
* 3338Kartik K. Agaram2016-09-124-6/+6
| | | | Process type abbreviations in container definitions.
* 3337 - first use of type abbreviations: textKartik K. Agaram2016-09-1212-352/+352
| | | | | In the process I've uncover a couple of situations we don't support type abbreviations yet. They're next.
* 3234Kartik K. Agaram2016-08-202-1/+6
| | | | Fix some breaking sandbox/ tests.
* 3233 - change how Mu escapes stringsKartik K. Agaram2016-08-201-4/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | Thanks Sam Putman for helping think through this idea. When you encounter a backslash, strip it out and pass through any following run of backslashes. If we 'escaped' a single following character like C, then the character '\' would be the same as: '\\' escaped once '\\\\' escaped twice '\\\\\\\\' escaped thrice (8 backslashes) ..and so on, the number of backslashes doubling each time. Instead, our approach is to make the character '\' the same as: '\\' escaped once '\\\' escaped twice '\\\\' escaped thrice ..and so on, the number of backslashes merely increasing by one each time. This approach only works as long as backslashes aren't also overloaded to create special characters. So Mu doesn't follow C's approach of overloading backslashes both to escape quote characters and also as a notation for unprintable characters like '\n'.
* 3168 - skip loading recipe 'main' in edit/Kartik K. Agaram2016-08-123-3/+3
| | | | | | | This is part of efforts to allow students to transition gradually from the sandbox to running programs directly on the commandline, writing real scenarios, etc. Running on the commandline requires 'main', but overriding 'main' would mess up edit/ which is itself a Mu program.
* 3101 - purge .traces/ dir from repo historyKartik K. Agaram2016-07-051-4/+0
| | | | | | | | | | | | | | | | | | | | | I'd been toying with this idea for some time now given how large the repo had been growing. The final straw was noticing that people cloning the repo were having to wait *5 minutes*! That's not good, particularly for a project with 'tiny' in its description. After purging .traces/ clone time drops to 7 seconds in my tests. Major issue: some commits refer to .traces/ but don't really change anything there. That could get confusing :/ Minor issues: a) I've linked inside commits on GitHub like a half-dozen times online or over email. Those links are now liable to eventually break. (I seem to recall GitHub keeps them around as long as they get used at least once every 60 days, or something like that.) b) Numbering of commits is messed up because some commits only had changes to the .traces/ sub-directory.
* 3067Kartik K. Agaram2016-06-255-69/+69
|
* 3054 - keep cursor stable on resize in sandbox/Kartik K. Agaram2016-06-127-29/+112
| | | | This ports commits 3052 and 3053 from the edit/ app.
* 3041 - fix 3039 in sandbox/ as wellKartik K. Agaram2016-06-092-0/+42
|
* 3038 - track down a long-standing bugKartik K. Agaram2016-06-081-25/+56
| | | | | | | | | | | | | | | | | | | | | | | | | | | In some rare situations the editor would join a line with the next when it should simply wrap to the next screen row. Thanks Caleb and Ella Couch for finally running into a situation that was easy to reproduce. The scenario diffs are misleading on this commit. I had to: a) delete the obsolete 'editor-wraps-cursor-after-inserting-characters' because it was written back when a line just large enough to fit in a single line would not wrap: | | <-- screen boundary abcde These days it will wrap after making room for the wrap indicator: | | <-- screen boundary abcd↩ e b) rename editor-wraps-cursor-after-inserting-characters-2 to editor-wraps-cursor-after-inserting-characters-in-middle-of-line c) create a new scenario demonstrating the bug: editor-wraps-cursor-after-inserting-characters-at-end-of-line
status' href='/akkartik/mu/commit/edit/005-sandbox.mu?h=main&id=6cb233fc43239c67caffadbd47e51594232e23bd'>6cb233fc ^
a90faae9 ^
6cb233fc ^
a90faae9 ^

6cb233fc ^
23ea8441 ^


3895c4e9 ^
b0bf5321 ^
23ea8441 ^
3895c4e9 ^
b0bf5321 ^

5f52da4a ^
23ea8441 ^
3895c4e9 ^
23ea8441 ^

b4bccf49 ^
b0bf5321 ^
23ea8441 ^
3895c4e9 ^
b0bf5321 ^
1625e908 ^
ea5e7fd4 ^

a90faae9 ^

b0bf5321 ^
a90faae9 ^
3895c4e9 ^
a90faae9 ^
3f7eed6c ^
a90faae9 ^

b0bf5321 ^
a90faae9 ^
3895c4e9 ^
b0bf5321 ^
a90faae9 ^

b0bf5321 ^
a90faae9 ^


b0bf5321 ^

a90faae9 ^
67d2a9c0 ^
a90faae9 ^





4e7186fa ^
a90faae9 ^
3895c4e9 ^
a90faae9 ^
b0bf5321 ^
a01dd595 ^
a90faae9 ^

a01dd595 ^




4e7186fa ^
a01dd595 ^



a90faae9 ^
b0bf5321 ^
a01dd595 ^
aaf61a53 ^
a90faae9 ^

b0bf5321 ^
a90faae9 ^
3895c4e9 ^
1ead3562 ^
a90faae9 ^

1ead3562 ^
a01dd595 ^
a90faae9 ^
a01dd595 ^



5d53e7d0 ^
a01dd595 ^
ea5e7fd4 ^
a01dd595 ^


b0bf5321 ^
a01dd595 ^
ea5e7fd4 ^
a01dd595 ^
b0bf5321 ^
a01dd595 ^

b0bf5321 ^
a01dd595 ^





a01dd595 ^
afdda1ea ^
a01dd595 ^


1ead3562 ^
a01dd595 ^

a90faae9 ^
a01dd595 ^
a90faae9 ^
a01dd595 ^
ea5e7fd4 ^

07a64183 ^
a90faae9 ^
a90faae9 ^
b0bf5321 ^
3151fb23 ^
a01dd595 ^
a90faae9 ^

5d53e7d0 ^



dd30f56d ^



66ee78a7 ^

dd30f56d ^


66ee78a7 ^

dd30f56d ^


66ee78a7 ^

dd30f56d ^

















5d53e7d0 ^

afdda1ea ^





























































a90faae9 ^
b0bf5321 ^
a90faae9 ^
3895c4e9 ^
a90faae9 ^
a90faae9 ^
b0bf5321 ^

a90faae9 ^
b0bf5321 ^

a90faae9 ^
5d5116e3 ^
a90faae9 ^
ea5e7fd4 ^

ac8acc7b ^
ea5e7fd4 ^
5d5116e3 ^




ea5e7fd4 ^

5d5116e3 ^
ea5e7fd4 ^
a90faae9 ^

cf478e14 ^
ea5e7fd4 ^
a90faae9 ^

a90faae9 ^

b0bf5321 ^
a90faae9 ^
3895c4e9 ^
1ead3562 ^
a90faae9 ^
afdda1ea ^
a90faae9 ^
3895c4e9 ^
a90faae9 ^
3895c4e9 ^

b0bf5321 ^
a90faae9 ^












bbe0801a ^




a90faae9 ^













136412d2 ^
a90faae9 ^




bbe0801a ^
a90faae9 ^




bbe0801a ^
a90faae9 ^





a90faae9 ^


e00d4854 ^
a90faae9 ^

b0bf5321 ^
a90faae9 ^
0d3f30c2 ^
a90faae9 ^
c1585c88 ^
a90faae9 ^

b0bf5321 ^

a90faae9 ^



b0bf5321 ^
a90faae9 ^



dd30f56d ^
0d3f30c2 ^



a90faae9 ^



0d3f30c2 ^
a90faae9 ^




b0bf5321 ^
a90faae9 ^





dd30f56d ^
0d3f30c2 ^



a90faae9 ^



a90faae9 ^
e00d4854 ^
a90faae9 ^

b0bf5321 ^
a90faae9 ^
b0bf5321 ^

a90faae9 ^




b0bf5321 ^
a90faae9 ^





dd30f56d ^
d135851e ^
a90faae9 ^










b0bf5321 ^
a90faae9 ^
3895c4e9 ^
b0bf5321 ^

a90faae9 ^

741ef43e ^
1ead3562 ^
a90faae9 ^


c0f43700 ^
741ef43e ^
a90faae9 ^

3895c4e9 ^
a90faae9 ^



b0bf5321 ^

a90faae9 ^




b0bf5321 ^


a90faae9 ^

167d0ca0 ^
a90faae9 ^

aaf61a53 ^
e8eea70a ^






4e7186fa ^
e8eea70a ^



















4e7186fa ^
e8eea70a ^












































































4e7186fa ^
e8eea70a ^
























4e7186fa ^
e8eea70a ^




















aaf61a53 ^



dd30f56d ^
aaf61a53 ^
b0bf5321 ^


4e7186fa ^
aaf61a53 ^


aaf61a53 ^
11569717 ^
aaf61a53 ^
dd30f56d ^




aaf61a53 ^
11569717 ^
aaf61a53 ^
11569717 ^

aaf61a53 ^

b0bf5321 ^
aaf61a53 ^
b0bf5321 ^
aaf61a53 ^



dd30f56d ^




aaf61a53 ^
11569717 ^
aaf61a53 ^
11569717 ^
aaf61a53 ^

b0bf5321 ^
aaf61a53 ^
b0bf5321 ^
aaf61a53 ^
11569717 ^
aaf61a53 ^
dd30f56d ^




aaf61a53 ^


11569717 ^
aaf61a53 ^

ea5e7fd4 ^
11569717 ^

b0bf5321 ^
aaf61a53 ^
a01dd595 ^
aaf61a53 ^
ea5e7fd4 ^
a01dd595 ^

ea5e7fd4 ^
50c4ac80 ^
ea5e7fd4 ^

aaf61a53 ^

4e7186fa ^
aaf61a53 ^




a01dd595 ^
aaf61a53 ^


a01dd595 ^


aaf61a53 ^

1ead3562 ^
aaf61a53 ^


11569717 ^
aaf61a53 ^

ea5e7fd4 ^
11569717 ^

ea5e7fd4 ^

a01dd595 ^
ea5e7fd4 ^

aaf61a53 ^
4e7186fa ^
aaf61a53 ^






b0bf5321 ^
aaf61a53 ^

b0bf5321 ^
1ead3562 ^
b0bf5321 ^
aaf61a53 ^
1ead3562 ^
aaf61a53 ^





1ead3562 ^
aaf61a53 ^



dd30f56d ^
aaf61a53 ^
b0bf5321 ^
aaf61a53 ^

b0bf5321 ^

4e7186fa ^
aaf61a53 ^


b0bf5321 ^
aaf61a53 ^

e8eea70a ^
aaf61a53 ^

b0bf5321 ^
aaf61a53 ^
b0bf5321 ^
aaf61a53 ^
95425355 ^
aaf61a53 ^
dd30f56d ^
e8eea70a ^

dd30f56d ^

aaf61a53 ^




dd30f56d ^
aaf61a53 ^
b0bf5321 ^


4e7186fa ^
aaf61a53 ^







b0bf5321 ^
95425355 ^
b0bf5321 ^
aaf61a53 ^
dd30f56d ^









aaf61a53 ^
11569717 ^
aaf61a53 ^
11569717 ^
aaf61a53 ^

b0bf5321 ^
aaf61a53 ^
b0bf5321 ^
aaf61a53 ^



dd30f56d ^








aaf61a53 ^
11569717 ^
aaf61a53 ^
11569717 ^
aaf61a53 ^

b0bf5321 ^
aaf61a53 ^


dd30f56d ^






aaf61a53 ^
11569717 ^
aaf61a53 ^
11569717 ^
aaf61a53 ^

b0bf5321 ^
aaf61a53 ^


dd30f56d ^






aaf61a53 ^
11569717 ^
aaf61a53 ^
11569717 ^
aaf61a53 ^

b0bf5321 ^
aaf61a53 ^


dd30f56d ^








aaf61a53 ^
11569717 ^
aaf61a53 ^
11569717 ^
aaf61a53 ^

b0bf5321 ^
aaf61a53 ^
b0bf5321 ^
aaf61a53 ^


dd30f56d ^









aaf61a53 ^
11569717 ^
aaf61a53 ^
11569717 ^
aaf61a53 ^

b0bf5321 ^
11569717 ^

aaf61a53 ^


dd30f56d ^









aaf61a53 ^

56d26afb ^


dd30f56d ^
56d26afb ^
b0bf5321 ^


4e7186fa ^
56d26afb ^





b0bf5321 ^
56d26afb ^
dd30f56d ^







56d26afb ^
11569717 ^
56d26afb ^
11569717 ^
56d26afb ^

b0bf5321 ^
56d26afb ^



dd30f56d ^






56d26afb ^
11569717 ^
56d26afb ^
11569717 ^
56d26afb ^

b0bf5321 ^
56d26afb ^


dd30f56d ^







56d26afb ^
11569717 ^
56d26afb ^
11569717 ^
56d26afb ^

b0bf5321 ^
56d26afb ^



dd30f56d ^






56d26afb ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
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
257
258
259
260
261
262
263
264
265
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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194