about summary refs log tree commit diff stats
path: root/043space.cc
Commit message (Collapse)AuthorAgeFilesLines
* 4272 - type-check variables in non-local spacesKartik Agaram2018-06-251-15/+0
| | | | | | So far we only checked if a single recipe used a variable with multiple types in any single space. Now we also ensure that the types deduced for a variable in a space are identical across recipes.
* 4266 - space for alloc-id in heap allocationsKartik Agaram2018-06-241-44/+80
| | | | This has taken me almost 6 weeks :(
* 4258 - undo 4257Kartik Agaram2018-06-151-41/+28
|
* 4257 - abortive attempt at safe fat pointersKartik Agaram2018-06-151-28/+41
| | | | | | | | | | | | | | | | I've been working on this slowly over several weeks, but it's too hard to support 0 as the null value for addresses. I constantly have to add exceptions for scalar value corresponding to an address type (now occupying 2 locations). The final straw is the test for 'reload': x:num <- reload text 'reload' returns an address. But there's no way to know that for arbitrary instructions. New plan: let's put this off for a bit and first create support for literals. Then use 'null' instead of '0' for addresses everywhere. Then it'll be easy to just change what 'null' means.
* 4179 - experiment: rip out memory reclamationKartik K. Agaram2018-01-031-228/+21
| | | | | | | | | | | | | | | | | | | | | I have a plan for a way to avoid use-after-free errors without all the overheads of maintaining refcounts. Has the nice side-effect of requiring manual memory management. The Mu way is to leak memory by default and build tools to help decide when and where to expend effort plugging memory leaks. Arguably programs should be distributed with summaries of their resource use characteristics. Eliminating refcount maintenance reduces time to run tests by 30% for `mu edit`: this commit parent mu test: 3.9s 4.5s mu test edit: 2:38 3:48 Open questions: - making reclamation easier; some sort of support for destructors - reclaiming local scopes (which are allocated on the heap) - should we support automatically reclaiming allocations inside them?
* 4163Kartik K. Agaram2017-12-241-1/+1
|
* 4106Kartik K. Agaram2017-11-031-3/+2
|
* 4104Kartik K. Agaram2017-11-031-2/+2
| | | | | Stop hardcoding Max_depth everywhere; we had a default value for a reason but then we forgot all about it.
* 4100Kartik K. Agaram2017-11-011-1/+1
|
* 4099Kartik K. Agaram2017-11-011-15/+55
| | | | | | | | | | | | | | Generalize commit 4089 to arbitrary closures, and not just the current 'space' or call frame. Now we should be treating spaces just like any other data structure, and reclaiming all addresses inside them when we need to. The cost: all spaces must now specify what recipe generated them (so they know how to interpret the array of locations) using the /names property. We can probably make this ergonomic with a little 'type inference'. But at least things are safe now.
* 4089Kartik K. Agaram2017-10-221-90/+85
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Clean up how we reclaim local scopes. It used to work like this (commit 3216): 1. Update refcounts of products after every instruction, EXCEPT: a) when instruction is a non-primitive and the callee starts with 'local-scope' (because it's already not decremented in 'return') OR: b) when instruction is primitive 'next-ingredient' or 'next-ingredient-without-typechecking', and its result is saved to a variable in the default space (because it's already incremented at the time of the call) 2. If a function starts with 'local-scope', force it to be reclaimed before each return. However, since locals may be returned, *very carefully* don't reclaim those. (See the logic in the old `escaping` and `should_update_refcount` functions.) However, this approach had issues. We needed two separate commands for 'local-scope' (reclaim locals on exit) and 'new-default-space' (programmer takes charge of reclaiming locals). The hard-coded reclamation duplicated refcounting logic. In addition to adding complexity, this implementation failed to work if a function overwrites default-space after setting up a local-scope (the old default-space is leaked). It also fails in the presence of continuations. Calling a continuation more than once was guaranteed to corrupt memory (commit 3986). After this commit, reclaiming local scopes now works like this: Update refcounts of products for every PRIMITIVE instruction. For non-primitive instructions, all the work happens in the `return` instruction: increment refcount of ingredients to `return` (unless -- one last bit of ugliness -- they aren't saved in the caller) decrement the refcount of the default-space use existing infrastructure for reclaiming as necessary if reclaiming default-space, first decrement refcount of each local again, use existing infrastructure for reclaiming as necessary This commit (finally!) completes the bulk[1] of step 2 of the plan in commit 3991. It was very hard until I gave up trying to tweak the existing implementation and just test-drove layer 43 from scratch. [1] There's still potential for memory corruption if we abuse `default-space`. I should probably try to add warnings about that at some point (todo in layer 45).
* 4087Kartik K. Agaram2017-10-211-23/+26
| | | | | Clean up the narrative of spaces as I struggle to reimplement `local-scope` by the plan of commit 3992.
* 4086 - back to cleaning up delimited continuationsKartik K. Agaram2017-10-181-1/+1
|
* 3999Kartik K. Agaram2017-09-151-4/+4
|
* 3987Kartik K. Agaram2017-09-011-5/+7
|
* 3877Kartik K. Agaram2017-05-261-2/+2
|
* 3841Kartik K. Agaram2017-04-271-2/+2
| | | | | Use the real original instruction in error messages. Thanks Ella Couch.
* 3822Kartik K. Agaram2017-04-141-0/+1
| | | | | | Provide an option to disable memory reclamation. This makes edit/ *much* more responsive. The cost: memory use grows monotonically. Since we no longer have a safe way to reclaim heap allocations, we never do so.
* 3819Kartik K. Agaram2017-04-131-7/+4
| | | | | | | Yet another attempt at trying to clean up commit 3216. I think this solution might finally let me stop agonizing over the problem. State variables for distinguishing call-sites are a reasonable mechanism, orthogonal to waypoints and the hook functions to hold them.
* 3754Kartik K. Agaram2017-03-051-1/+1
| | | | | Improve an error message. 'local-scope' is far more common in Mu programs than the more fundamental 'default-space'.
* 3747Kartik K. Agaram2017-02-071-5/+5
|
* 3744Kartik K. Agaram2017-02-071-4/+0
| | | | | | Undo 3743. Really any time we create new instructions from whole cloth during rewriting or transform, the whole notion of 'original name' goes out the window. Pointless trying to fight that fact of life.
* 3743Kartik K. Agaram2017-02-071-0/+4
| | | | | | | | One way to ensure we always set old_name is to create a method to initialize names as opposed to just assigning them. Still not ideal because we still assign directly most of the time, so it's easy to forget.
* 3742 - move instruction.old_name to a later layerKartik K. Agaram2017-02-061-0/+9
| | | | | | The drawback of this is that we forget to initialize old_name when we create instructions out of whole cloth in a few places. But this problem already existed..
* 3707Kartik K. Agaram2016-12-121-5/+2
| | | | | | | | | | | | | | | | | | Be more disciplined about tagging 2 different concepts in the codebase: a) Use the phrase "later layers" to highlight places where a layer doesn't have the simplest possible self-contained implementation. b) Use the word "hook" to point out functions that exist purely to provide waypoints for extension by future layers. Since both these only make sense in the pre-tangled representation of the codebase, using '//:' and '#:' comments to get them stripped out of tangled output. (Though '#:' comments still make it to tangled output at the moment. Let's see if we use it enough to be worth supporting. Scenarios are pretty unreadable in tangled output anyway.)
* 3663 - fix a refcounting bug: '(type)' != 'type'Kartik K. Agaram2016-11-101-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was a large commit, and most of it is a follow-up to commit 3309, undoing what is probably the final ill-considered optimization I added to s-expressions in Mu: I was always representing (a b c) as (a b . c), etc. That is now gone. Why did I need to take it out? The key problem was the error silently ignored in layer 30. That was causing size_of("(type)") to silently return garbage rather than loudly complain (assuming 'type' was a simple type). But to take it out I had to modify types_strictly_match (layer 21) to actually strictly match and not just do a prefix match. In the process of removing the prefix match, I had to make extracting recipe types from recipe headers more robust. So far it only matched the first element of each ingredient's type; these matched: (recipe address:number -> address:number) (recipe address -> address) I didn't notice because the dotted notation optimization was actually representing this as: (recipe address:number -> address number) --- One final little thing in this commit: I added an alias for 'assert' called 'assert_for_now', to indicate that I'm not sure something's really an invariant, that it might be triggered by (invalid) user programs, and so require more thought on error handling down the road. But this may well be an ill-posed distinction. It may be overwhelmingly uneconomic to continually distinguish between model invariants and error states for input. I'm starting to grow sympathetic to Google Analytics's recent approach of just banning assertions altogether. We'll see..
* 3659Kartik K. Agaram2016-11-101-1/+1
|
* 3656Kartik K. Agaram2016-11-101-3/+3
| | | | | | | | | | | | | | 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.
* 3643Kartik K. Agaram2016-11-071-4/+4
| | | | | Standardize on calling literate waypoints "Special-cases" rather than "Cases". Invariably there's a default path already present.
* 3561Kartik K. Agaram2016-10-221-3/+3
|
* 3522Kartik K. Agaram2016-10-191-4/+4
|
* 3394Kartik K. Agaram2016-09-171-9/+15
|
* 3393Kartik K. Agaram2016-09-171-5/+5
|
* 3390Kartik K. Agaram2016-09-171-16/+16
|
* 3389Kartik K. Agaram2016-09-171-31/+31
|
* 3381Kartik K. Agaram2016-09-171-1/+1
|
* 3380Kartik K. Agaram2016-09-171-40/+40
| | | | | One more place we were missing expanding type abbreviations: inside container definitions.
* 3376 - start maximally using all type abbreviationsKartik K. Agaram2016-09-171-2/+2
| | | | | | It might be too much, particularly if students start peeking inside .mu files early. But worth a shot for not just to iron out the kinks in the abbreviation system.
* 3309Kartik K. Agaram2016-09-091-9/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rip out everything to fix one failing unit test (commit 3290; type abbreviations). This commit does several things at once that I couldn't come up with a clean way to unpack: A. It moves to a new representation for type trees without changing the actual definition of the `type_tree` struct. B. It adds unit tests for our type metadata precomputation, so that errors there show up early and in a simpler setting rather than dying when we try to load Mu code. C. It fixes a bug, guarding against infinite loops when precomputing metadata for recursive shape-shifting containers. To do this it uses a dumb way of comparing type_trees, comparing their string representations instead. That is likely incredibly inefficient. Perhaps due to C, this commit has made Mu incredibly slow. Running all tests for the core and the edit/ app now takes 6.5 minutes rather than 3.5 minutes. == more notes and details I've been struggling for the past week now to back out of a bad design decision, a premature optimization from the early days: storing atoms directly in the 'value' slot of a cons cell rather than creating a special 'atom' cons cell and storing it on the 'left' slot. In other words, if a cons cell looks like this: o / | \ left val right ..then the type_tree (a b c) used to look like this (before this commit): o | \ a o | \ b o | \ c null ..rather than like this 'classic' approach to s-expressions which never mixes val and right (which is what we now have): o / \ o o | / \ a o o | / \ b o null | c The old approach made several operations more complicated, most recently the act of replacing a (possibly atom/leaf) sub-tree with another. That was the final straw that got me to realize the contortions I was going through to save a few type_tree nodes (cons cells). Switching to the new approach was hard partly because I've been using the old approach for so long and type_tree manipulations had pervaded everything. Another issue I ran into was the realization that my layers were not cleanly separated. Key parts of early layers (precomputing type metadata) existed purely for far later ones (shape-shifting types). Layers I got repeatedly stuck at: 1. the transform for precomputing type sizes (layer 30) 2. type-checks on merge instructions (layer 31) 3. the transform for precomputing address offsets in types (layer 36) 4. replace operations in supporting shape-shifting recipes (layer 55) After much thrashing I finally noticed that it wasn't the entirety of these layers that was giving me trouble, but just the type metadata precomputation, which had bugs that weren't manifesting until 30 layers later. Or, worse, when loading .mu files before any tests had had a chance to run. A common failure mode was running into types at run time that I hadn't precomputed metadata for at transform time. Digging into these bugs got me to realize that what I had before wasn't really very good, but a half-assed heuristic approach that did a whole lot of extra work precomputing metadata for utterly meaningless types like `((address number) 3)` which just happened to be part of a larger type like `(array (address number) 3)`. So, I redid it all. I switched the representation of types (because the old representation made unit tests difficult to retrofit) and added unit tests to the metadata precomputation. I also made layer 30 only do the minimal metadata precomputation it needs for the concepts introduced until then. In the process, I also made the precomputation more correct than before, and added hooks in the right place so that I could augment the logic when I introduced shape-shifting containers. == lessons learned There's several levels of hygiene when it comes to layers: 1. Every layer introduces precisely what it needs and in the simplest way possible. If I was building an app until just that layer, nothing would seem over-engineered. 2. Some layers are fore-shadowing features in future layers. Sometimes this is ok. For example, layer 10 foreshadows containers and arrays and so on without actually supporting them. That is a net win because it lets me lay out the core of Mu's data structures out in one place. But if the fore-shadowing gets too complex things get nasty. Not least because it can be hard to write unit tests for features before you provide the plumbing to visualize and manipulate them. 3. A layer is introducing features that are tested only in later layers. 4. A layer is introducing features with tests that are invalidated in later layers. (This I knew from early on to be an obviously horrendous idea.) Summary: avoid Level 2 (foreshadowing layers) as much as possible. Tolerate it indefinitely for small things where the code stays simple over time, but become strict again when things start to get more complex. Level 3 is mostly a net lose, but sometimes it can be expedient (a real case of the usually grossly over-applied term "technical debt"), and it's better than the conventional baseline of no layers and no scenarios. Just clean it up as soon as possible. Definitely avoid layer 4 at any time. == minor lessons Avoid unit tests for trivial things, write scenarios in context as much as possible. But within those margins unit tests are fine. Just introduce them before any scenarios (commit 3297). Reorganizing layers can be easy. Just merge layers for starters! Punt on resplitting them in some new way until you've gotten them to work. This is the wisdom of Refactoring: small steps. What made it hard was not wanting to merge *everything* between layer 30 and 55. The eventual insight was realizing I just need to move those two full-strength transforms and nothing else.
* 3260Kartik K. Agaram2016-08-261-1/+1
| | | | | array length = number of elements array size = in locations
* 3255Kartik K. Agaram2016-08-261-8/+9
|
* 3215Kartik K. Agaram2016-08-171-3/+3
|
* 3214Kartik K. Agaram2016-08-171-1/+1
|
* 3213Kartik K. Agaram2016-08-171-2/+1
|
* 3202 - bugfix: 'start-running' and refcountsKartik K. Agaram2016-08-161-2/+2
| | | | | | | | | | | | | | | | | | | | | | When you pass an ingredient to a recipe using 'start-running' it mostly behaves identically to performing a regular function call. However, if the calling function completed before the new routine had a chance to run, the ingredients passed in ran the risk of being reclaimed. In response, let's always increment refcounts at the time of a function call rather than when the ingredients are read inside the callee. Now the summary of commit 3197 is modified to this: Update refcounts of products after every instruction, EXCEPT: a) when instruction is a non-primitive and the callee starts with 'local-scope' (because it's already not decremented in 'return') OR: b) when instruction is primitive 'next-ingredient' or 'next-ingredient-without-typechecking'
* 3199Kartik K. Agaram2016-08-161-6/+7
| | | | | | | | | Never mind, just close your nose and replace that function parameter with a global variable. This may not always be the solution for the problem of layers being unable to add parameters and arguments, but here it works well and it's unclear what problems the global might cause.
* 3198Kartik K. Agaram2016-08-161-15/+16
|
* 3197Kartik K. Agaram2016-08-161-5/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replace an integer with a boolean across two layers of function calls. It has long been one of the ugliest consequences of my approach with layers that functions might need to be introduced with unnecessary arguments simply because we have no clean way to add parameters to a function definition after the fact -- or to add the default argument corresponding to that parameter in calls. This problem is exacerbated by the redundant argument having to be passed in through multiple layers of functions. In this instance: In layer 20 we define write_memory with an argument called 'saving_instruction_products' which isn't used yet. In layer 36 we reveal that we use this argument in a call to should_update_refcounts_in_write_memory() -- where it is again not used yet. Layer 43 finally clarifies what we're shooting for: a) In general when we need to update some memory, we always want to update refcounts. b) The only exception is when we're reclaiming locals in a function that set up its stack frame using 'local-scope' (signalling that it wants immediate reclamation). At that point we avoid decrementing refcounts of 'escaping' addresses that are being returned, and we also avoid incrementing refcounts of products in the caller instruction. The latter case is basically why we need this boolean and its dance across 3 layers. In summary, write_memory() needs to update refcounts except if: we're writing products for an instruction, the instruction is not a primitive, and the (callee) recipe for the instruction starts with 'local-scope'.
* 3196Kartik K. Agaram2016-08-161-1/+1
|
* 2990Kartik K. Agaram2016-05-201-3/+3
| | | | | | | | | | Standardize quotes around reagents in error messages. I'm still sure there's issues. For example, the messages when type-checking 'copy'. I'm not putting quotes around them because in layer 60 I end up creating dilated reagents, and then it's a bit much to have quotes and (two kinds of) brackets. But I'm sure I'm doing that somewhere..
rtik.com> 2015-05-06 00:19:03 -0700 1279 - colorized rendering of the source files' href='/akkartik/mu/commit/html/060string.mu.html?h=hlt&id=672e3e50c6ed6de161e40aa256c3fc0f2b1f7cf9'>672e3e50 ^
9570363a ^

f5465e12 ^











4bbd3ded ^
f5465e12 ^




4bbd3ded ^
f5465e12 ^


9570363a ^
f5465e12 ^
9570363a ^

f5465e12 ^




4bbd3ded ^

f5465e12 ^
65361948 ^
f5465e12 ^

65361948 ^

f5465e12 ^
65361948 ^

672e3e50 ^
f5465e12 ^
65361948 ^
f5465e12 ^

65361948 ^

f5465e12 ^
65361948 ^

672e3e50 ^
f5465e12 ^
65361948 ^
f5465e12 ^

65361948 ^

f5465e12 ^


65361948 ^

672e3e50 ^
c5ffb6e1 ^
f5465e12 ^

c5ffb6e1 ^
f5465e12 ^



9570363a ^
f5465e12 ^
672e3e50 ^
f5465e12 ^


672e3e50 ^
9570363a ^
f5465e12 ^
672e3e50 ^
9570363a ^
f5465e12 ^





672e3e50 ^
f5465e12 ^

672e3e50 ^
9570363a ^
f5465e12 ^
672e3e50 ^
9570363a ^
f5465e12 ^






65361948 ^
672e3e50 ^
f5465e12 ^
65361948 ^
f5465e12 ^



65361948 ^

f5465e12 ^
65361948 ^

672e3e50 ^
f5465e12 ^
90560d71 ^
f5465e12 ^


90560d71 ^

f5465e12 ^
90560d71 ^


f5465e12 ^




76755b28 ^
f5465e12 ^
90560d71 ^

f5465e12 ^
90560d71 ^
f5465e12 ^

90560d71 ^
f5465e12 ^
90560d71 ^

f5465e12 ^
90560d71 ^
f5465e12 ^


90560d71 ^

f5465e12 ^
90560d71 ^


f5465e12 ^
90560d71 ^
f5465e12 ^


90560d71 ^

f5465e12 ^
90560d71 ^


f5465e12 ^
90560d71 ^
f5465e12 ^


90560d71 ^

f5465e12 ^
90560d71 ^


f5465e12 ^
90560d71 ^
f5465e12 ^


90560d71 ^

f5465e12 ^
90560d71 ^


672e3e50 ^

f5465e12 ^


672e3e50 ^
f5465e12 ^


672e3e50 ^
f5465e12 ^

9570363a ^
f5465e12 ^
9570363a ^
f5465e12 ^


672e3e50 ^
f5465e12 ^

672e3e50 ^
f5465e12 ^


672e3e50 ^
f5465e12 ^

672e3e50 ^
f5465e12 ^
672e3e50 ^
9570363a ^
f5465e12 ^
672e3e50 ^
f5465e12 ^


672e3e50 ^
9570363a ^
f5465e12 ^




672e3e50 ^
f5465e12 ^

672e3e50 ^
f5465e12 ^

672e3e50 ^
f5465e12 ^
9570363a ^
f5465e12 ^




672e3e50 ^
f5465e12 ^



672e3e50 ^
f5465e12 ^
672e3e50 ^
9570363a ^
f5465e12 ^
672e3e50 ^
f5465e12 ^
9570363a ^
f5465e12 ^





65361948 ^
672e3e50 ^
f5465e12 ^
65361948 ^
f5465e12 ^



65361948 ^

f5465e12 ^
65361948 ^

672e3e50 ^
f5465e12 ^
65361948 ^
f5465e12 ^



65361948 ^

f5465e12 ^

65361948 ^

672e3e50 ^
f5465e12 ^
65361948 ^
f5465e12 ^



65361948 ^

f5465e12 ^
65361948 ^

c5ffb6e1 ^

f5465e12 ^


c5ffb6e1 ^
f5465e12 ^
76755b28 ^
f5465e12 ^
76755b28 ^
f5465e12 ^
76755b28 ^
f5465e12 ^
76755b28 ^
c5ffb6e1 ^

f5465e12 ^
76755b28 ^
f5465e12 ^
76755b28 ^
f5465e12 ^
76755b28 ^
f5465e12 ^
76755b28 ^
f5465e12 ^
76755b28 ^
f5465e12 ^
76755b28 ^
f5465e12 ^
76755b28 ^
f5465e12 ^
76755b28 ^
f5465e12 ^
76755b28 ^
f5465e12 ^
76755b28 ^
f5465e12 ^
76755b28 ^
f5465e12 ^
76755b28 ^
f5465e12 ^
76755b28 ^
f5465e12 ^
76755b28 ^
f5465e12 ^
76755b28 ^
f5465e12 ^
76755b28 ^
f5465e12 ^
76755b28 ^
f5465e12 ^
76755b28 ^
f5465e12 ^
76755b28 ^
f5465e12 ^
76755b28 ^
f5465e12 ^
76755b28 ^
f5465e12 ^
76755b28 ^
f5465e12 ^
f5465e12 ^
c5ffb6e1 ^


f5465e12 ^



c5ffb6e1 ^
f5465e12 ^


9570363a ^
f5465e12 ^



9570363a ^

f5465e12 ^



c5ffb6e1 ^
f5465e12 ^

9570363a ^
f5465e12 ^
9570363a ^

f5465e12 ^



c5ffb6e1 ^
f5465e12 ^

eaeb9552 ^
f5465e12 ^


c5ffb6e1 ^
9570363a ^
f5465e12 ^
c5ffb6e1 ^
9570363a ^

f5465e12 ^





c5ffb6e1 ^

f5465e12 ^
c5ffb6e1 ^
f5465e12 ^


c5ffb6e1 ^

f5465e12 ^
c5ffb6e1 ^


f5465e12 ^
c5ffb6e1 ^
f5465e12 ^


c5ffb6e1 ^

f5465e12 ^
c5ffb6e1 ^


f5465e12 ^
c5ffb6e1 ^
f5465e12 ^


c5ffb6e1 ^

f5465e12 ^
c5ffb6e1 ^


f5465e12 ^
c5ffb6e1 ^
f5465e12 ^


c5ffb6e1 ^

f5465e12 ^
c5ffb6e1 ^


f5465e12 ^
c5ffb6e1 ^
f5465e12 ^



c5ffb6e1 ^

f5465e12 ^
c5ffb6e1 ^

dbe12410 ^
9570363a ^
f5465e12 ^






9570363a ^
f5465e12 ^
9570363a ^

f5465e12 ^




dbe12410 ^

f5465e12 ^
dbe12410 ^
f5465e12 ^

dbe12410 ^

f5465e12 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
f5465e12 ^

dbe12410 ^

f5465e12 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
f5465e12 ^

dbe12410 ^

f5465e12 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
f5465e12 ^

dbe12410 ^

f5465e12 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
f5465e12 ^

dbe12410 ^

f5465e12 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
f5465e12 ^

dbe12410 ^

f5465e12 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
f5465e12 ^

dbe12410 ^

f5465e12 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
f5465e12 ^

dbe12410 ^

f5465e12 ^
dbe12410 ^


90560d71 ^
dbe12410 ^

f5465e12 ^





dbe12410 ^
f5465e12 ^

dbe12410 ^
9570363a ^
f5465e12 ^



dbe12410 ^
9570363a ^
f5465e12 ^


dbe12410 ^

f5465e12 ^
dbe12410 ^
f5465e12 ^


dbe12410 ^

f5465e12 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
f5465e12 ^


dbe12410 ^

f5465e12 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
f5465e12 ^


dbe12410 ^

f5465e12 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
f5465e12 ^


dbe12410 ^

f5465e12 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
f5465e12 ^


dbe12410 ^

f5465e12 ^
dbe12410 ^




f5465e12 ^





dbe12410 ^
f5465e12 ^

9570363a ^

f5465e12 ^


dbe12410 ^
f5465e12 ^

9570363a ^
f5465e12 ^
9570363a ^
f5465e12 ^













dbe12410 ^
f5465e12 ^


dbe12410 ^

f5465e12 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
f5465e12 ^

dbe12410 ^

f5465e12 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
f5465e12 ^


dbe12410 ^

f5465e12 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
f5465e12 ^


dbe12410 ^

f5465e12 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
f5465e12 ^


dbe12410 ^

f5465e12 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
f5465e12 ^


dbe12410 ^

f5465e12 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
f5465e12 ^

dbe12410 ^

f5465e12 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
f5465e12 ^


dbe12410 ^

f5465e12 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
f5465e12 ^


dbe12410 ^

f5465e12 ^
dbe12410 ^



f5465e12 ^



dbe12410 ^
f5465e12 ^






dbe12410 ^
f5465e12 ^


9570363a ^

f5465e12 ^




dbe12410 ^
f5465e12 ^
dbe12410 ^
f5465e12 ^


dbe12410 ^
9570363a ^
f5465e12 ^
9570363a ^
dbe12410 ^
f5465e12 ^

dbe12410 ^
f5465e12 ^




dbe12410 ^

f5465e12 ^
dbe12410 ^
f5465e12 ^






dbe12410 ^

f5465e12 ^


dbe12410 ^


f5465e12 ^
dbe12410 ^
f5465e12 ^








dbe12410 ^

f5465e12 ^



dbe12410 ^


f5465e12 ^
dbe12410 ^
f5465e12 ^




dbe12410 ^

f5465e12 ^

dbe12410 ^


f5465e12 ^
dbe12410 ^
f5465e12 ^


dbe12410 ^

f5465e12 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
f5465e12 ^










dbe12410 ^

f5465e12 ^




dbe12410 ^



f5465e12 ^



dbe12410 ^
f5465e12 ^















dbe12410 ^
f5465e12 ^



dbe12410 ^

f5465e12 ^

dbe12410 ^




f5465e12 ^




dbe12410 ^
f5465e12 ^

dbe12410 ^
9570363a ^
f5465e12 ^
dbe12410 ^
f5465e12 ^


9570363a ^
f5465e12 ^
9570363a ^

f5465e12 ^





dbe12410 ^

f5465e12 ^
dbe12410 ^
f5465e12 ^


dbe12410 ^

f5465e12 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
f5465e12 ^


dbe12410 ^

f5465e12 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
f5465e12 ^


dbe12410 ^

f5465e12 ^

























dbe12410 ^
672e3e50 ^



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
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356