summary refs log tree commit diff stats
path: root/compiler
Commit message (Collapse)AuthorAgeFilesLines
...
* fixes #23973; fixes #23974; Memory corruption with lent and ORC (#23981)ringabout2024-08-201-2/+15
| | | | fixes #23973; fixes #23974
* allow `untyped` arguments to fail to compile in overload mismatch error (#23984)metagn2024-08-201-6/+17
| | | | | | | | | | | | | | | | fixes #8697, fixes #9620, fixes #23265 When matching a `template` with an `untyped` argument fails because of a mismatching typed argument, `presentFailedCandidates` tries to sem every single argument to show their types, but trying to type the `untyped` argument can fail if it's supposed to use an injected symbol, so we get an unrelated error message like "undeclared identifier". Instead we use `tryExpr` as the comment suggests, setting the type to `untyped` if it fails to compile. We could also maybe check if an `untyped` argument is expected in its place and not try to compile the expression if it is but this would require a bit of reorganizing the code here and IMO it's better to have the information of what type it would be if it can be typed.
* make all generic aliases tyAlias (#23978)metagn2024-08-201-1/+2
| | | | | | | | | | | | | fixes #23977 The problem is that for *any* body of a generic declaration, [semstmts](https://github.com/nim-lang/Nim/blob/2e4d344b43b040a4dce2c478ca13e49979e491fc/compiler/semstmts.nim#L1610-L1611) sets the sym of its value to the generic type name, and [semtypes](https://github.com/nim-lang/Nim/blob/2e4d344b43b040a4dce2c478ca13e49979e491fc/compiler/semtypes.nim#L2143) just directly gives the referenced type *specifically* when the expression is a generic body. I'm blaming `semtypes` here because it's responsible for the type given but the exact opposite behavior specifically written in makes me think generating an alias type here maybe breaks something.
* fixes for 32bit system (#23980)ringabout2024-08-191-1/+1
|
* Fixes #23962 `resetLoc`doenst produce any cgen code in `importcpp` types ↵Juan M Gómez2024-08-181-1/+4
| | | | (#23964)
* allow generic compileTime proc folding (#22022)metagn2024-08-184-2/+11
| | | | | | | | | | | | | | fixes #10753, fixes #22021, refs #19365 (was fixed by #22029, but more faithful test added) For whatever reason `compileTime` proc calls did not fold if the proc was generic ([since this folding was introduced](https://github.com/nim-lang/Nim/commit/c25ffbf2622a197c15a4a3bd790b1bc788db2c7f#diff-539da3a63df08fa987f1b0c67d26cdc690753843d110b6bf0805a685eeaffd40)). I'm guessing the intention was for *unresolved* generic procs to not fold, which is now the logic. Non-magic `compileTime` procs also now don't fold at compile time in `typeof` contexts to avoid possible runtime errors (only the important) and prevent double/needless evaluation.
* always lookup pure enum symbols if expected type is enum (#23976)metagn2024-08-172-3/+7
| | | | | | | | | | | | | | | | | | | | fixes #23689 Normally pure enum symbols only "exist" in lookup if nothing else with the same name is in scope. But if an expression is expected to be an enum type, we know that ambiguity can be resolved between different symbols based on their type, so we can include the normally inaccessible pure enum fields in the ambiguity resolution in the case that the expected enum type is actually a pure enum. This handles the use case in the issue of the type inference for enums reverted in #23588. I know pure enums are supposed to be on their way out so this might seem excessive, but the `pure` pragma can't be removed in the code in the issue due to a redefinition error, they have to be separated into different modules. Normal enums can still resolve the ambiguity here though. I always think about making a list of all the remaining use cases for pure enums and I always forget. Will close #23694 if CI passes
* fixes default float ranges (#23957)ringabout2024-08-162-6/+10
|
* fix `is` with `type`/`typedesc` crashing the compiler (#23967)metagn2024-08-161-2/+1
| | | | | | | | | | fixes #22850 The `is` operator checks the type of the left hand side, and if it's generic or if it's a `typedesc` type with no base type, it leaves it to be evaluated later. But `typedesc` types with no base type precisely describe the default typeclass `type`/`typeclass`, so this condition is removed. Maybe at some point this represented an unresolved generic type?
* remove nontoplevel type hack + consider symbol disamb in type hash (#23969)metagn2024-08-162-4/+4
| | | | | | | | | | | | | | fixes #22571 Removes the hack added in #13589 which made non-top-level object type symbols `gensym` because they couldn't be mangled into different names for codegen vs. top-level types. Now we consider the new `disamb` field (added in #21667) of the type symbols in the type hash (which is used for the mangled name) to differentiate between the types. In other parts of the compiler, specifically the [proc mangling](https://github.com/nim-lang/Nim/blob/298ada3412c9cf5971abc2b3b891b9bb8612e170/compiler/mangleutils.nim#L59), `itemId.item` is used instead of the `disamb` field, but I didn't use it in case it's the outdated method.
* fixes #23954; uint8 > 8 bit at compile-time (#23955)ringabout2024-08-151-1/+2
| | | fixes #23954
* supports `default` for range types using `firstOrd` with ↵ringabout2024-08-131-3/+10
| | | | | `nimPreviewRangeDefault` (#23950) ref https://github.com/nim-lang/Nim/issues/23943
* fixes #23947; .uint8 compile-time error (#23948)ringabout2024-08-131-11/+14
| | | fixes #23947
* opensym as node kind + fixed experimental switch (#23892)metagn2024-08-1211-43/+82
| | | | | | | | | | | | | | | refs https://github.com/nim-lang/Nim/pull/23873#discussion_r1687995060, fixes #23386, fixes #23385, supersedes #23572 Turns the `nfOpenSym` node flag implemented in #23091 and extended in #23102 and #23873, into a node kind `nkOpenSym` that forms a unary node containing either `nkSym` or `nkOpenSymChoice`. Since this affects macros working on generic proc AST, the node kind is now only generated when the experimental switch `genericsOpenSym` is enabled, and a new node flag `nfDisabledOpenSym` is set to the `nkSym` or `nkOpenSymChoice` when the switch is not enabled so that we can give a warning. Now that the experimental switch has more reasonable semantics, we define `nimHasGenericsOpenSym2`.
* Implemented `compileOption` for `experimental` to test if a feature i… ↵Don-Duong Quach2024-08-121-1/+8
| | | | | | | | (#23933) …s enabled at compile time. #8644 This doesn't handle the case if `{.push experimental.}` is used, but at least we can test if a feature was enabled globally.
* fixes #23936; opcParseFloat accepts the wrong register as the first param ↵ringabout2024-08-121-1/+1
| | | | | | [backport] (#23941) fixes #23936 follow up https://github.com/nim-lang/Nim/pull/20527
* fixes jsbigint64 regression; keeps convs to `Number` in danger mode (#23926)ringabout2024-08-111-1/+7
| | | fixes jsbigint64 regression
* fixes #23932; vmopsDanger for os.getCurrentDir errors (#23934)ringabout2024-08-111-2/+3
| | | | fixes #23932 ref https://github.com/jmgomez/NimForUE/issues/36
* don't treat template/macro/module as overloaded for opensym (#23939)metagn2024-08-112-2/+7
| | | | | | | | | | | | | | actually fixes #23865 following up #23873 In the handling of `nkIdent` in `semExpr`, the compiler looks for the closest symbol with the name and [checks the symbol kind](https://github.com/nim-lang/Nim/blob/6126a0bf46f4e29a368b8baefea69a2bcae54e93/compiler/semexprs.nim#L3171) to also consider the overloads if the symbol kind is overloadable. But it treats the normally overloadable template/macro/module sym kinds the same as non-overloadable symbols, just calling `semSym` on it. We need to mirror this behavior in `semOpenSym`; we treat the captured symchoice as a fresh identifier, so if the symbol we find is a template/macro/module, we use that symbol immediately as opposed to waiting for overloads.
* fixes #14522 #22085 #12700 #23132; no range check for uints (#23930)ringabout2024-08-112-4/+10
| | | | | | | | | | fixes #14522 fixes #22085 fixes #12700 fixes #23132 closes https://github.com/nim-lang/Nim/pull/22343 (succeeded by this PR) completes https://github.com/nim-lang/RFCs/issues/175 follow up https://github.com/nim-lang/Nim/pull/12688
* fixes #23914; jsondoc broken in devel (#23916)ringabout2024-08-111-1/+1
| | | | | follows up https://github.com/nim-lang/Nim/pull/23064 fixes #23914
* fixes #23907; Double destroy using proc type alias with a sink (#23909)ringabout2024-08-111-1/+2
| | | fixes #23907
* fixes #23902; Compiler infers sink in return type from auto (#23904)ringabout2024-08-111-3/+3
| | | fixes #23902
* special handlings for nimble packages to shorten function names (#23891)ringabout2024-08-112-29/+45
| | | | | | | | | | | | | | | | | | | If we need keep readabilities for functions' names, we might put the original names in the comments or in the identifiers like what currently has been done. The new nimble having been shipped since Nim 2.0.0 uses a directory ending with a full hash of a commit for cloned repos, the function names are burderen by this. This PR strips these from package paths and prepends "pkg" for readability. Before: raiseNilAccess__OOZOOZOnimbleZpkgs2Zthreading450O2O045288108d1dfa34d5ade5ce4d922af51909c83cebfZthreadingZsmartptrs_u4 After: raiseNilAccess__pkgZthreadingZsmartptrs_u4
* fixes #13391; VM: Can't get address of object (#23903)ringabout2024-07-291-0/+2
| | | fixes #13391
* fixes #23894; succ/pred shouldn't raise OverflowDefect for unsigned integers ↵ringabout2024-07-261-1/+1
| | | | | | | (#23895) fixes #23894 keeps it consistent with `inc`
* implement genericsOpenSym for symchoices (#23873)metagn2024-07-253-24/+57
| | | | | | | | | | fixes #23865 The node flag `nfOpenSym` implemented in #23091 for sym nodes is now also implemented for open symchoices. This means the intended behavior is still achieved when multiple overloads are in scope to be captured, so the issue is fixed. The code for the flag is documented and moved into a helper proc and the experimental switch is now enabled for the compiler test suite.
* Overload resultion with generic variables an inheritance (#23870)Ryan McConnell2024-07-241-25/+33
| | | The test case diff is self explanatory
* minor improvement on cgen (#23887)ringabout2024-07-241-4/+2
|
* improve mangling packages version names with checksums (#23888)ringabout2024-07-241-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | follow up https://github.com/nim-lang/Nim/pull/19821 dights cannot clash with letters 'Z' and 'O' For `threading-0.2.0-288108d1dfa34d5ade5ce4d922af51909c83cebf` Before: raiseNilAccess__OOZOOZOnimbleZpkgs50Zthreading4548O50O4845505656494856d49dfa5152d53ade53ce52d575050af5349574857c5651cebfZthreadingZsmartptrs_u4 After: raiseNilAccess__OOZOOZOnimbleZpkgs2Zthreading450O2O045288108d1dfa34d5ade5ce4d922af51909c83cebfZthreadingZsmartptrs_u4 <del> nimble or something might use `git rev-parse --short HEAD` to shorten the length of package version names ref https://github.com/nim-lang/nimble/pull/913 </del>
* fixes #19171; have `openArray` converted from `ptr UncheckedArray` be ↵Buldram2024-07-241-2/+9
| | | | | | mutable (#23882) Makes `toOpenArray(x: ptr UncheckedArray)` always return a `var openArray` regardless of if `x` is mutable.
* fixes #23867; fixes #23316; rework nimsuggest for ORC (#23879)ringabout2024-07-231-2/+1
| | | | | | | | fixes #23867 fixes #23316 follow up https://github.com/nim-lang/Nim/pull/22805; fixes https://github.com/nim-lang/Nim/issues/22794 in a different method
* turn some sym flag aliases into enums (#23884)ringabout2024-07-231-18/+13
|
* fixes #23869; sink generic typeclass (#23874)Ryan McConnell2024-07-221-2/+2
| | | | | | | Still have to look this over some. We'll see. I put sink in this branch simply because I saw `tyVar` there and for no other reason. In any case the problem appears to be coming from `liftParamType` as it removes the `sink` type from the formals. #23869
* remove unused field in ConfigRef (#23875)ringabout2024-07-221-1/+0
| | | follow up https://github.com/nim-lang/Nim/pull/14763
* Merge tyUncheckedArray with tySeq in typeRel (#23866)SirOlaf2024-07-201-10/+4
| | | | | | Ref https://github.com/nim-lang/Nim/issues/23836#issuecomment-2233957324 Their types are basically equivalent so they should behave the same way for type relations.
* bypass constraints for tyFromExpr in generic bodies (#23863)metagn2024-07-201-4/+9
| | | | | | | | | | | | | | | | | | | | | | | fixes #19819, fixes #23339 Since #22029 `tyFromExpr` does not match anything in overloading, so generic bodies can know which call expressions to delay until the type can be evaluated. However generic type invocations also run overloading to check for generic constraints even in generic bodies. To prevent them from failing early from the overload not matching, pretend that `tyFromExpr` matches. This mirrors the behavior of the compiler in more basic cases like: ```nim type Foo[T: int] = object x: T Bar[T] = object y: Foo[T] ``` Unfortunately this case doesn't respect the constraint (#21181, some other bugs) but `tyFromExpr` should easily use the same principle when it does.
* fixes nim secret not flushing stdout (#23862)ringabout2024-07-201-0/+1
| | | | | | | | | | | | | | | related to https://github.com/nim-lang/Nim/pull/19584 On Vscode wsl2 Before: ![image](https://github.com/user-attachments/assets/4bb4f92d-757d-4edf-9dcf-17fcb98f0b60) After ![image](https://github.com/user-attachments/assets/289a113e-c27c-4b76-9d13-725ca28f2828)
* fix generics treating symchoice symbols as uninstantiated (#23860)metagn2024-07-191-1/+5
| | | | | | | | | | | | | fixes #23853 Since #22610 generics turns the `Name` in the `GT.Name` expression in the test code into a sym choice. The problem is when the compiler tries to instantiate `GT.Name` it also instantiates the sym choice symbols. `Name` has type `template (E: type ExtensionField)` which contains the unresolved generic type `ExtensionField`, which the compiler mistakes as an uninstantiated node, when it's just part of the type of the template. The compilation of the node itself and hence overloading will handle the instantiation of the proc, so we avoid instantiating it in `semtypinst`, similar to how the first nodes of call nodes aren't instantiated.
* fixes #23858; 2.2.0 rc1 regression with cdecl functions (#23859)ringabout2024-07-183-4/+6
| | | | | | fixes #23858 We should not assign fields to fields for returns of function calls because calls might have side effects.
* Set type of object constructor during annotateType (#23852)SirOlaf2024-07-171-0/+1
| | | | | | Fix https://github.com/nim-lang/Nim/issues/23547 Tested locally with the included test, the test from constantine and the original issue.
* fixes #23848; The comand `nim gendepend` defaults to ORC (#23851)ringabout2024-07-171-1/+2
| | | fixes #23848
* fixes #23837; cursor now processes distinct types with a destructor (#23845)ringabout2024-07-171-2/+11
| | | fixes #23837
* make routine implicitly gensym when other gensym symbol exists again (#23842)metagn2024-07-161-5/+7
| | | | | | | | | | | | | fixes #23813, partially reverts #23392 Before #23392, if a `gensym` symbol was defined before a proc with the same name in a template even with an `inject` annotation, the proc would be `gensym`. After #23392 the proc was instead changed to be `inject` as long as no `gensym` annotation was given. Now, to keep compatibility with the old behavior, the behavior is changed back to infer the proc as `gensym` when no `inject` annotation is given, however an explicit `inject` annotation will still inject the proc. This is also documented in the manual as the old behavior was undocumented and the new behavior is slightly different.
* fixes semi-regression; discard check now skips `nkHiddenSubConv` (#23840)ringabout2024-07-161-1/+1
| | | | | follow up https://github.com/nim-lang/Nim/pull/23681 ref https://forum.nim-lang.org/t/11987
* fixes regression; block can have arbitrary exit points; too hard for a ↵ringabout2024-07-161-5/+6
| | | | | | | | simple analysis (#23839) follow up https://github.com/nim-lang/Nim/pull/23681 ref https://forum.nim-lang.org/t/11987 ref https://github.com/nim-lang/Nim/issues/23836#issuecomment-2227267251
* [minor] fixes wrong error messages (#23841)ringabout2024-07-161-1/+1
|
* refactor: The popular 'r' field is now named 'snippet' (#23829)Andreas Rumpf2024-07-1218-292/+291
|
* fixes 23823; array static overload - again (#23824)Ryan McConnell2024-07-111-0/+2
| | | #23823
* fixes #3011; handles meta fields defined in the ref object (#23818)ringabout2024-07-111-2/+7
| | | | | | | | | | | | | | | | | | | | | | | fixes #3011 In https://github.com/nim-lang/Nim/pull/23532, meta fields that defined in the object are handled. In this PR, RefObjectTy is handled as well: ```nim type Type = ref object context: ref object ``` Ref alias won't trigger mata fields checking so there won't have cascaded errors on `TypeBase`. ```nim type TypeBase = object context: ref object Type = ref TypeBase context: ref object ```
locks part 4 (#20189)' href='/ahoang/Nim/commit/doc/manual_experimental.md?h=devel&id=713f39083ee37085ba24345af741e5b448fdcc05'>713f39083 ^
4d0f05a98 ^



713f39083 ^
aac8f6757 ^
4d0f05a98 ^



713f39083 ^
4d0f05a98 ^

















713f39083 ^
4d0f05a98 ^
713f39083 ^
4d0f05a98 ^
aac8f6757 ^






713f39083 ^
aac8f6757 ^






















713f39083 ^
aac8f6757 ^
4d0f05a98 ^
2bd1aa186 ^


f6ee066ee ^
2bd1aa186 ^



713f39083 ^
2bd1aa186 ^

713f39083 ^
2bd1aa186 ^





















713f39083 ^
2bd1aa186 ^



713f39083 ^
2bd1aa186 ^


713f39083 ^
2bd1aa186 ^



713f39083 ^
2bd1aa186 ^








713f39083 ^
2bd1aa186 ^







713f39083 ^
2bd1aa186 ^





b8b0e9b21 ^



dbf8d0b89 ^
b8b0e9b21 ^
2ea728721 ^

b8b0e9b21 ^
713f39083 ^
dbf8d0b89 ^
da29222f8 ^
b8b0e9b21 ^












713f39083 ^
b8b0e9b21 ^




417b90a7e ^
4d0f05a98 ^
0ddd9519c ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^


4d0f05a98 ^
5933aece9 ^





0ddd9519c ^
5933aece9 ^


4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^


4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^
4d0f05a98 ^
713f39083 ^
5933aece9 ^
0ddd9519c ^
4d0f05a98 ^
5933aece9 ^


4d0f05a98 ^
5933aece9 ^





4d0f05a98 ^
5933aece9 ^




713f39083 ^
0ddd9519c ^
4d0f05a98 ^
5933aece9 ^
f6ee066ee ^
4d0f05a98 ^
4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^
4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^
4d0f05a98 ^
713f39083 ^
4d0f05a98 ^
5933aece9 ^


713f39083 ^
4d0f05a98 ^
4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
713f39083 ^
5933aece9 ^



713f39083 ^
4d0f05a98 ^
4d0f05a98 ^
5933aece9 ^

0ddd9519c ^
5933aece9 ^
4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^


4d0f05a98 ^
5933aece9 ^
4d0f05a98 ^
713f39083 ^
5933aece9 ^
4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^






4d0f05a98 ^
5933aece9 ^




4d0f05a98 ^
4d0f05a98 ^
5933aece9 ^
713f39083 ^
4d0f05a98 ^
4d0f05a98 ^
5933aece9 ^


4d0f05a98 ^
5933aece9 ^
4d0f05a98 ^
5933aece9 ^
4d0f05a98 ^
5933aece9 ^







4d0f05a98 ^
4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^





d102b2f54 ^
5933aece9 ^




4d0f05a98 ^
4d0f05a98 ^
5933aece9 ^

f6ee066ee ^
5933aece9 ^
4d0f05a98 ^
5933aece9 ^

0ddd9519c ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^


4d0f05a98 ^
713f39083 ^
5933aece9 ^
4d0f05a98 ^

5933aece9 ^

4d0f05a98 ^
5933aece9 ^



713f39083 ^
4d0f05a98 ^
4d0f05a98 ^
5933aece9 ^
4d0f05a98 ^
713f39083 ^
5933aece9 ^



713f39083 ^
4d0f05a98 ^
4d0f05a98 ^
5933aece9 ^
f6ee066ee ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^
4d0f05a98 ^
713f39083 ^
5933aece9 ^




713f39083 ^
4d0f05a98 ^
5933aece9 ^


4d0f05a98 ^
4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^
4d0f05a98 ^
5933aece9 ^


4d0f05a98 ^
4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^
0ddd9519c ^
4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^


4d0f05a98 ^
4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^



4d0f05a98 ^
5933aece9 ^


4d0f05a98 ^
5933aece9 ^




4d0f05a98 ^
5933aece9 ^



4d0f05a98 ^
5933aece9 ^
0ddd9519c ^
5933aece9 ^


4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^


4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^







4d0f05a98 ^
4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^
4d0f05a98 ^
713f39083 ^
5933aece9 ^


4d0f05a98 ^
5933aece9 ^


0ddd9519c ^
5933aece9 ^
4d0f05a98 ^
5933aece9 ^

713f39083 ^
4d0f05a98 ^
5933aece9 ^
4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^




4d0f05a98 ^
713f39083 ^
5933aece9 ^


713f39083 ^
4d0f05a98 ^
5933aece9 ^


4d0f05a98 ^
713f39083 ^
5933aece9 ^


713f39083 ^
4d0f05a98 ^
5933aece9 ^



4d0f05a98 ^
713f39083 ^
5933aece9 ^






4d0f05a98 ^
5933aece9 ^



4d0f05a98 ^
5933aece9 ^



713f39083 ^
4d0f05a98 ^
5933aece9 ^



4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^




4d0f05a98 ^
713f39083 ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^
713f39083 ^
4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^
4d0f05a98 ^
713f39083 ^
5933aece9 ^
4d0f05a98 ^
5933aece9 ^
4d0f05a98 ^
5933aece9 ^




0ddd9519c ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^
4d0f05a98 ^
5933aece9 ^
4d0f05a98 ^
5933aece9 ^
4d0f05a98 ^
5933aece9 ^



38b836b49 ^
5933aece9 ^

38b836b49 ^
5933aece9 ^

38b836b49 ^
5933aece9 ^

38b836b49 ^
5933aece9 ^





38b836b49 ^
5933aece9 ^

38b836b49 ^
5933aece9 ^



38b836b49 ^
5933aece9 ^

38b836b49 ^
5933aece9 ^
38b836b49 ^
5933aece9 ^


38b836b49 ^
5933aece9 ^

713f39083 ^
38b836b49 ^
5933aece9 ^



38b836b49 ^
5933aece9 ^


4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
713f39083 ^
5933aece9 ^


713f39083 ^
0ddd9519c ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^




4d0f05a98 ^
713f39083 ^
5933aece9 ^



4d0f05a98 ^
5933aece9 ^



4d0f05a98 ^
5933aece9 ^

0ddd9519c ^
5933aece9 ^


713f39083 ^
4d0f05a98 ^
5933aece9 ^


6563a685c ^
713f39083 ^
5933aece9 ^




4d0f05a98 ^
5933aece9 ^



713f39083 ^
0ddd9519c ^
5933aece9 ^



4d0f05a98 ^
5933aece9 ^









4d0f05a98 ^
713f39083 ^
5933aece9 ^
4d0f05a98 ^
5933aece9 ^




4d0f05a98 ^
5933aece9 ^


4d0f05a98 ^
5933aece9 ^




0ddd9519c ^
5933aece9 ^

713f39083 ^
4d0f05a98 ^

5933aece9 ^

4d0f05a98 ^
5933aece9 ^


4d0f05a98 ^
713f39083 ^
5933aece9 ^



4d0f05a98 ^
5933aece9 ^
0ddd9519c ^
5933aece9 ^


4d0f05a98 ^
5933aece9 ^
4d0f05a98 ^
5933aece9 ^




4d0f05a98 ^
5933aece9 ^

713f39083 ^
4d0f05a98 ^
4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^





4d0f05a98 ^
713f39083 ^
5933aece9 ^




4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^


0ddd9519c ^
5933aece9 ^


4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^
4d0f05a98 ^
5933aece9 ^




4d0f05a98 ^
5933aece9 ^
4d0f05a98 ^
5933aece9 ^


713f39083 ^
4d0f05a98 ^
5933aece9 ^


4d0f05a98 ^
5933aece9 ^


4d0f05a98 ^
713f39083 ^
5933aece9 ^



4d0f05a98 ^
5933aece9 ^


4d0f05a98 ^
5933aece9 ^




4d0f05a98 ^
5933aece9 ^


0ddd9519c ^
5933aece9 ^



713f39083 ^
4d0f05a98 ^

5933aece9 ^


4d0f05a98 ^
5933aece9 ^




4d0f05a98 ^
5933aece9 ^


4d0f05a98 ^
5933aece9 ^




0ddd9519c ^
5933aece9 ^



4d0f05a98 ^
713f39083 ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^


4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^

713f39083 ^
0ddd9519c ^
5933aece9 ^




4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^
5933aece9 ^



4d0f05a98 ^
5933aece9 ^

4d0f05a98 ^

342b74ef7 ^






3cb645ab5 ^
342b74ef7 ^
3cb645ab5 ^
713f39083 ^
342b74ef7 ^
713f39083 ^
3cb645ab5 ^
342b74ef7 ^

3cb645ab5 ^
342b74ef7 ^
f6ee066ee ^
3cb645ab5 ^
3cb645ab5 ^
5933aece9 ^

3cb645ab5 ^
5933aece9 ^

0ddd9519c ^
713f39083 ^
5933aece9 ^
3cb645ab5 ^
5933aece9 ^
3cb645ab5 ^
5933aece9 ^

3cb645ab5 ^
5933aece9 ^

713f39083 ^
3cb645ab5 ^
3cb645ab5 ^
5933aece9 ^

3cb645ab5 ^
5933aece9 ^



3cb645ab5 ^
713f39083 ^
5933aece9 ^
3cb645ab5 ^
5933aece9 ^

713f39083 ^
3cb645ab5 ^
5933aece9 ^




3cb645ab5 ^
5933aece9 ^





3cb645ab5 ^
5933aece9 ^

3cb645ab5 ^
713f39083 ^
5933aece9 ^






713f39083 ^
5933aece9 ^


3cb645ab5 ^
713f39083 ^
5933aece9 ^
3cb645ab5 ^
5933aece9 ^


3cb645ab5 ^
5933aece9 ^
713f39083 ^
3cb645ab5 ^
5933aece9 ^


3cb645ab5 ^
5933aece9 ^


3cb645ab5 ^
713f39083 ^
5933aece9 ^
713f39083 ^
3cb645ab5 ^
5933aece9 ^
3cb645ab5 ^
713f39083 ^
5933aece9 ^
713f39083 ^
3cb645ab5 ^
5933aece9 ^

3cb645ab5 ^
3cb645ab5 ^
3cb645ab5 ^
5933aece9 ^

3cb645ab5 ^
5933aece9 ^

3cb645ab5 ^
5933aece9 ^





































3cb645ab5 ^
5933aece9 ^




3cb645ab5 ^
713f39083 ^
5933aece9 ^



713f39083 ^
3cb645ab5 ^
5933aece9 ^
3cb645ab5 ^
713f39083 ^
5933aece9 ^




3cb645ab5 ^
5933aece9 ^







713f39083 ^
3cb645ab5 ^
3cb645ab5 ^
5933aece9 ^

3cb645ab5 ^
5933aece9 ^

0ddd9519c ^
3cb645ab5 ^
62b81d7f1 ^
3cb645ab5 ^
5933aece9 ^
3cb645ab5 ^
713f39083 ^
5933aece9 ^



713f39083 ^
3cb645ab5 ^
5933aece9 ^

3cb645ab5 ^
713f39083 ^
5933aece9 ^


713f39083 ^
3cb645ab5 ^
5933aece9 ^



3cb645ab5 ^
3cb645ab5 ^
62b81d7f1 ^
3cb645ab5 ^
5933aece9 ^

3cb645ab5 ^
713f39083 ^
5933aece9 ^



713f39083 ^
5933aece9 ^
3cb645ab5 ^
62b81d7f1 ^
3cb645ab5 ^
5933aece9 ^
3cb645ab5 ^
713f39083 ^
5933aece9 ^









713f39083 ^
3cb645ab5 ^
3cb645ab5 ^
62b81d7f1 ^
3cb645ab5 ^
5933aece9 ^

3cb645ab5 ^
713f39083 ^
5933aece9 ^






3cb645ab5 ^
5933aece9 ^
3cb645ab5 ^
5933aece9 ^

3cb645ab5 ^
5933aece9 ^

713f39083 ^
3cb645ab5 ^
3cb645ab5 ^
5933aece9 ^




3cb645ab5 ^
713f39083 ^


3cb645ab5 ^
3cb645ab5 ^
62b81d7f1 ^
3cb645ab5 ^
5933aece9 ^

3cb645ab5 ^
713f39083 ^
5933aece9 ^
3cb645ab5 ^
5933aece9 ^


3cb645ab5 ^
5933aece9 ^





3cb645ab5 ^
5933aece9 ^


0ddd9519c ^
5933aece9 ^
3cb645ab5 ^
5933aece9 ^
713f39083 ^
3cb645ab5 ^
5933aece9 ^

3cb645ab5 ^
5933aece9 ^







3cb645ab5 ^
5933aece9 ^
3cb645ab5 ^
0ddd9519c ^
5933aece9 ^

3cb645ab5 ^
5933aece9 ^



713f39083 ^
5933aece9 ^




713f39083 ^
3cb645ab5 ^

80320c72d ^





5e9dd81ba ^
80320c72d ^
83ae70cb5 ^

80320c72d ^
713f39083 ^
f0cfc9537 ^
80320c72d ^


713f39083 ^
80320c72d ^
83ae70cb5 ^
80320c72d ^

2aca748dd ^
5933aece9 ^

50b6f6996 ^
5933aece9 ^

50b6f6996 ^
713f39083 ^
5933aece9 ^

50b6f6996 ^
5933aece9 ^

713f39083 ^
2aca748dd ^
2aca748dd ^
5933aece9 ^

2aca748dd ^
5933aece9 ^
2aca748dd ^
713f39083 ^
5933aece9 ^
10988d484 ^
5933aece9 ^


10988d484 ^
5933aece9 ^


713f39083 ^
10988d484 ^
5933aece9 ^



405880160 ^
10988d484 ^
5933aece9 ^

10988d484 ^
5933aece9 ^

405880160 ^
713f39083 ^
5933aece9 ^



405880160 ^
5933aece9 ^

405880160 ^
5933aece9 ^

405880160 ^
5933aece9 ^


713f39083 ^
405880160 ^
5933aece9 ^

405880160 ^
10988d484 ^
5933aece9 ^

10988d484 ^
5933aece9 ^


10988d484 ^
5933aece9 ^

f6ee066ee ^
5933aece9 ^
10988d484 ^
5933aece9 ^



10988d484 ^
5933aece9 ^




10988d484 ^
5933aece9 ^
10988d484 ^
5933aece9 ^

10988d484 ^

5933aece9 ^

10988d484 ^
5933aece9 ^
10988d484 ^
713f39083 ^
5933aece9 ^
405880160 ^
5933aece9 ^

405880160 ^
5933aece9 ^


713f39083 ^
405880160 ^
5933aece9 ^

405880160 ^
5933aece9 ^











10988d484 ^
405880160 ^
5933aece9 ^



405880160 ^
713f39083 ^
5933aece9 ^
10988d484 ^
5933aece9 ^








713f39083 ^
405880160 ^
5933aece9 ^




2ea728721 ^
405880160 ^
405880160 ^
5933aece9 ^

405880160 ^
5933aece9 ^
405880160 ^
713f39083 ^
5933aece9 ^


405880160 ^
5933aece9 ^
405880160 ^
5933aece9 ^






405880160 ^
5933aece9 ^
713f39083 ^
405880160 ^
405880160 ^
5933aece9 ^




405880160 ^
5933aece9 ^

405880160 ^
5933aece9 ^












405880160 ^
405880160 ^
405880160 ^
5933aece9 ^

405880160 ^
5933aece9 ^



405880160 ^
5933aece9 ^



ab405c936 ^
713f39083 ^
5933aece9 ^









ab405c936 ^
5933aece9 ^



ab405c936 ^
5933aece9 ^


713f39083 ^
ab405c936 ^
ab405c936 ^
5933aece9 ^


ab405c936 ^
713f39083 ^
5933aece9 ^












713f39083 ^
405880160 ^

5933aece9 ^


405880160 ^
713f39083 ^
5933aece9 ^
405880160 ^
5933aece9 ^



713f39083 ^
405880160 ^
405880160 ^
5933aece9 ^


405880160 ^
5933aece9 ^







405880160 ^
713f39083 ^
5933aece9 ^


405880160 ^
5933aece9 ^



713f39083 ^
405880160 ^
5933aece9 ^
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
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939