magic.endpoint.contracts 17.1.7

dotnet add package magic.endpoint.contracts --version 17.1.7
NuGet\Install-Package magic.endpoint.contracts -Version 17.1.7
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="magic.endpoint.contracts" Version="17.1.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add magic.endpoint.contracts --version 17.1.7
#r "nuget: magic.endpoint.contracts, 17.1.7"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install magic.endpoint.contracts as a Cake Addin
#addin nuget:?package=magic.endpoint.contracts&version=17.1.7

// Install magic.endpoint.contracts as a Cake Tool
#tool nuget:?package=magic.endpoint.contracts&version=17.1.7

magic.endpoint - How Hyperlambda endpoints are resolved

magic.endpoint is your dynamic endpoint URL controller responsible for handling all HTTP requests. It has two implementations. Which implementation is being used depends upon the URL you specify.

  • HttpApiExecutorAsync - Resolves everything starting out with "magic/" and is your primary API URL resolver
  • HttpFileExecutorAsync - Resolving everything else and is your document and HTML resolver

API URLs

The HttpApiExecutorAsync resolver will be invoked for all relative URLs starting with "magic/", for the following verbs.

  • GET
  • POST
  • PUT
  • DELETE
  • PATCH

The default service implementation will resolve everything after the "magic/" parts in the given URL to a Hyperlambda file assumed to be found relatively inside your "/files/" folder. The HTTP verb is assumed to be the last parts of your filename, before its extension, implying an HTTP request such as the following.

GET magic/modules/foo/bar

Will resolve to the following physical file on disc.

files/modules/foo/bar.get.hl

Only the "magic" part of your URL is rewritten before the verb is appended to the URL, and finally the extension ".hl" appended. Then the file is loaded and parsed as Hyperlambda, and whatever arguments you pass in, either as query parameters or as your JSON payload is appended into your resulting lambda node's [.arguments] node as arguments to your Hyperlambda file invocation.

The resolver will never return files directly, but is only able to execute Hyperlambda files, so by default there is no way to get static files starting with "magic/" as the URL, unless you create a Hyperlambda endpoint that returns a static file somehow.

The default resolver will only allow the client to resolve files inside your "/files/modules/" folder and "/files/system/" folder. This allows you to safely keep files that parts of your system relies upon inside your dynamic "/files/" folder, without accidentally creating endpoints clients can resolve, resulting in breaches in your security.

Only the characters a-z, 0-9 and '-', '_' and '/' are legal characters for the resolvers, and only lowercase characters to avoid file system incompatibilities between Linux and Windows.

There is one exception to this rule though, which is that the resolver will resolve files and folder starting out with a period (.) character, since this is necessary to allow for having "hidden files" being resolved as endpoints - Which is a requirement to make things such as Apple's ".well-known" endpoints being resolved.

Below is probably the simplest HTTP endpoint you could create. Save the following Hyperlambda in a file at the path of /modules/tutorials/foo.get.hl using for instance your Magic "Hyper IDE" menu item.

return
   result:Hello from Magic Backend

Then invoke the endpoint using the GET verb with the following URL.

http://localhost:5000/magic/modules/tutorials/foo

Hyperlambda endpoints and arguments

The default IHttpExecutorAsync implementation can explicitly declare what arguments the file can legally accept, and if an argument is given during invocation that the file doesn't allow for, an exception will be thrown and the file will never be executed. This allows you to declare what arguments your Hyperlambda file can accept, and avoid having anything but arguments explicitly declared in your Hyperlambda file from being sent into your endpoint during invocation of your HTTP endpoint. An example Hyperlambda file taking two arguments can be found below.

.arguments
   arg1:string
   arg2:int

strings.concat
   get-value:x:@.arguments/*/arg1
   .:" - "
   get-value:x:@.arguments/*/arg2

unwrap:x:+/*
return
   result:x:@strings.concat

If you save this file on disc as /files/modules/tutorials/foo2.get.hl, you can invoke it as follows using the HTTP GET verb - Assuming your backend is running on localhost at port 5000.

http://localhost:5000/magic/modules/tutorials/foo2?arg1=howdy&arg2=5

JSON payloads and form URL encoded payloads are automatically converted to lambda/nodes - And query parameters are treated indiscriminately the same way as JSON payloads - Except of course, query parameters cannot pass in complex graph objects, but only simply key/value arguments. Only POST, PUT and PATCH endpoints can handle payloads. If you supply a payload to a GET or DELETE endpoint, an exception will be thrown, and an error returned to the caller.

To allow for any arguments to your files, simply ommit the [.arguments] node in your Hyperlambda althogether, or supply an [.arguments] node and set its value to *. Alternatively, you can also partially ignore arguments sanity checking of individual nodes, by setting their values to *, such as the following illustrates.

.arguments
   arg1:string
   arg2:date
   arg3:*

In the above arguments declaration, [arg1] and [arg2] will be sanity checked, and input converted to string or date (DateTime) - But the [arg3] parts will be completely ignored, allowing the caller to invoke it with anything as arg3 during invocation - Including complete graph JSON objects, assuming the above declaration is for a PUT, POST or PATCH Hyperlambda file.

The '*' value for an argument also turn off all conversion, implying everything will be given to your lambda object with the JSON type the argument was passed in as. All arguments declared are considered optional, and the file will still resolve if the argument is not given, except of course the argument won't exist in the [.arguments] node. However, no argument not found in your [.arguments] declaration can be provided during invocations, assuming you choose to declare an [.arguments] collection in your Hyperlambda endpoint file, and you don't set its value to *.

To declare what type your arguments can be, set the value of the argument declaration node to the Hyperlambda type value inside of your arguments declaration, such as illustrated above. Arguments will be converted if possible, to the type declaration in your argument's declaration. If no conversion is possible, an exception will be thrown. Although the sanity check will check graph objects, passed in as JSON payloads, it has its restrictions, such as not being able to sanity check complex objects passed in as arrays, etc. If you need stronger sanity checking of your arguments, you will have to manually check your more complex graph objects yourself in your own Hyperlambda files.

Also realise that if the value originates from a payload, as in from a PUT, PATCH or POST JSON object for instance, these types of objects might contain null values. If they do, no conversion will be attempted, and internally within your endpoint's Hyperlambda code, you might therefor expect to see for instance long values being in fact null, even though technically these are not nullable types in .Net.

Accepted Content-Type values for Hyperlambda endpoints

The POST, PUT and PATCH endpoints can intelligently handle any of the following Content-Types.

  • application/json
  • application/x-json
  • application/www-form-urlencoded
  • application/x-www-form-urlencoded
  • multipart/form-data

JSON types of payloads are fairly well described above, and URL encoded form payloads are handled the exact same way, except of course the [.arguments] node is built from URL encoded values instead of JSON - However, internally this is transparent for you, and JSON, query parameters, URL encoded forms, and "multipart/form-data" can be interchanged 100% transparently from your code's perspective - Except "multipart/form-data" might have [file] arguments wrapping streams that you need to handle separately as such. File attachments will be passed into your endpoint as follows.

.arguments
   file
      name:filename-on-client.txt
      stream:[raw Stream object here]

All other types of payloads will be passed in as the raw stream, not trying to read from it in any ways, allowing you to intercept reading with things such as authentication, authorisation, logic of where to persist content, etc. To understand how you can handle these streams, check out the "magic.lambda.io" project's documentation, and specifically the [io.stream.xxx] slots.

Extending the Hyperlambda Content-Type request and response resolver

The Content-Type resolver/parser is extendible, allowing you to change its behaviour by providing your own callback that will be invoked for some specific Content-Type value provided. This is useful if you want to be able to for instance handle "text/xml" or "text/csv" types of request/response objects, and intelligently and automatically create an argument collection from it. Below is example code illustrating how to create your own HTTP request resolver for the MIME type of "application/x-foo".

EndpointController.RegisterContentType("application/x-foo", async (signaler, request) =>
{
   var args = new Node();

   /* ... Create some sort of collection of arguments and put into args node here ... */

   return args;
});

Notice - The argument sanity checking will still be invoked with a custom handler, implying your Content-Type handler and the [.arguments] declaration in your Hyperlambda file still needs to agree upon the arguments, and if a non-valid argument is specified to a Hyperlambda file, an exception will be thrown. Also notice that registering a custom Content-Type is not thread safe, and should be done as you start your application, and not during its life time.

You can also provide your own HTTP response resolver that will be invoked given some specified Content-Type from your Hyperlambda file. This is done in a similar manner using something resembling the following.

EndpointController.RegisterContentType("application/x-foo", (response) =>
{
   /* ... Return some sort of IActionResult here ... */
   return new ObjectResult(response.Content) { StatusCode = response.Result };
});

The above method should also exclusively be used during startup, and not later, since it is not thread safe. The above method assumes you register your Content-Type handlers as your application is starting.

Hyperlambda endpoints and meta information

Due to the semantic structure of Hyperlambda, retrieving meta information from your HTTP endpoints using this module is very easy. The project has one slot called [endpoints.list] that returns meta information about all your endpoints. This slot again can be invoked using the following URL.

http://localhost:5000/magic/system/endpoints/list

This endpoint/slot will semantically traverse your endpoints, recursively loading up all Hyperlambda files from disc that are resolved from a valid URL, and return meta information about the file/endpoint back to the caller. This allows the system to easily figure out things such as the following about your endpoints.

  • What is the endpoint's HTTP VERB
  • What is the endpoint's URL
  • What arguments can the endpoint handle
  • Has the file been given a friendly description, through a [.description] node
  • Etc ...

This slot/endpoint is what allows you to see meta information about all your HTTP REST endpoints in the "Endpoints" menu item in the Magic dashboard for instance. The return value from this slot/endpoint again, is what's used as some sort of frontend is being generated using the Magic dashboard.

Extending the meta data retrieval process

You can extend the meta data retrieval process by invoking ListEndpoints.AddMetaDataResolver, and pass in your own function. This class can be found in the magic.endpoint.services.slots namespace. The AddMetaDataResolver method takes one function object, which will be invoked for every file the meta generator is trying to create meta data for, with the complete lambda, verb and args of your endpoint. This allows you to semantically traverse the lambda/args nodes, and append any amount of (additional) meta information you wish - Allowing you to extend the generating of meta data, if you have some sort of general custom Hyperlambda module, creating custom HTTP endpoints of some sort.

This function will be invoked for every single Hyperlambda file in your system, every time meta data is retrieved, so you might want to ensure it executes in a fairly short amount of time, not clogging the server or HTTP endpoint meta generating process in any ways.

Changing your Hyperlambda endpoint's response type

Unless you explicitly change the Content-Type of your response object, by using the [response.headers.set] slot, a Content-Type of application/json will be assumed, and this header will be added to the resulting HTTP response object. If you wish to override this behavious and return plain text for instance, you could create an endpoint containing the following.

response.headers.set
   Content-Type:text/plain
return:Hello from Magic Backend

If you intend to return anything but JSON, you must set the Content-Type header, because the resolver will by default try to serialize your content as JSON, and obviously fail unless it is valid JSON. You can also return stream objects using for instance the [return-value] slot, at which point ASP.NET Core will automatically stream your content back over the response object, and Dispose your stream automatically for you afterwards. This allows you to for instance return large files back to the client without loading them into memory first. If you do this, you'll have to change your Content-Type accordingly.

Hyperlambda code behind files

The HttpFileExecutorAsync resolver will resolve everything not starting out with magic/ as a file, optionally applied as a mixin file having a Hyperlambda code behind file for mixing in dynamic content with ".html" files. This allows you to render HTML, CSS, JavaScript and "whatever", with the ability to dynamically render parts of your HTML files using Hyperlambda. This logic relies upon the [io.file.mixin] slot from the "magic.lambda.io" project. If you create two files such as follows, and put both of these files in your "/etc/www/" folder, you can see this logic in action.

index.html

<html>
    <head>
        <title>Hello world</title>
    </head>
    <body>
        <h1>Hello world</h1>
        <p>
           Hello there Thomas Hansen,
           2+2 equals {{"{ {"}}*/.calculate} }
        </p>
    </body>
</html>

index.hl

.calculate
   math.add
      .:int:2
      .:int:2
   return:x:-

Notice, in the above code there are SP characters between the { characters. These should be removed if you copy and paste the code to execute it.

The above will substitute your {{"{ {"}}*/.calculate} } parts with the result of invoking your [.calculate] lambda object, resulting in 4. To understand how this works, you need to read about the [io.file.mixin] slot in the "magic.lambda.io" project, and realise that the above will actually transform to the following as the mixin logic is executed.

io.file.mixin:/etc/www/index.html
   .calculate
      math.add
         .:int:2
         .:int:2
      return:x:-

This allows you to serve dynamically rendered HTML files, where parts of your HTML is substituted with the result of invoking some lambda object. If you have an HTML file without a Hyperlambda code behind file, it will be served as a static file. CSS files, JavaScript files, and images will also be served as static files.

This resolver will resolve to everything within your "/etc/www/" folder. If you've got an "index.html" page in some folder, this file will be assumed to be the default document of that folder.

Interceptor Hyperlambda files will be executed as normally, allowing you to apply interceptor files similarly to how you apply these with your "/magic/" endpoints.

The resolver will also rewrite and redirect automatically every URL ending with ".html" and remove the file extension parts, in addition to removing "index" at the end afterwards, to avoid duplicated URLs.

Dynamic URLs

If you've got a file called "default.html", and the client is requesting a URL that does not have an associated physical file existing for the absolute path specified - Then your "default.html" file will resolve the specified URL. Such a "default.html" file can also optionally have a Hyperlambda code behind file, allowing you to serve dynamic content based upon the URL of the request. This allows you to use dynamic URLs, to for instance lookup files from your database and serve back as dynamic content.

If you want to use dynamic pages, you can retrieve the request URL by invoking the [request.url] slot to retrieve the request URL.

Configuring your code behind resolver

You can also apply a [.config] file at the root of you "/etc/www/" folder that partially changes the resolver's behavior. To illustrate how to use such a config file, consider the following.

/etc/www/.config

static_files
   headers
      *
         Cache-Control:public, max-age=31536000
      woff2
         Cache-Control:public, max-age=31536000
         Content-Type:font/woff2
         Access-Control-Allow-Origin:*
      css
         Access-Control-Allow-Origin:*
not_found:/etc/www/.sys/404.html
spa_enabled:bool:true

The first parts named [static_files] is for file without a mixin file, which includes ".html" files without a Hyperlambda code behind file, and all other files ending with any other extension. It applies the first Cache-Control to all files except those ending with ".woff" and ".css". Then it applies its [woff] HTTP headers and [css] parts for files ending with ".woff" and ".css" respectively.

The [not_found] parts declares an HTML file to serve if no file is found that resolves the URL. Its default value is "/etc/www/.components/404.html", but you can override this with the above [not_found] configuration setting. This file will resolve as a "mixin file" allowing you to have code behind Hyperlambda file somehow modifying the end result. If you don't have any 404 file at all, the resolver will simply return the static string "Not found".

The last setting called [spa_enabled] will default resolving to your "/etc/www/index.html" file, unless some other file matches any other rules, such as a "default.html" file in some sub-folder triggering a match. This allows you to create SPA web applications, where resolving occurs on the frontend. This is useful for things such as Angular and ReactJS that's using frontend URL routing, where everything is still served the same "index.html" file. Its default value is false.

Interceptors

Interceptors are a common feature for both the HttpApiExecutorAsync resolver and the HttpFileExecutorAsync resolver. An interceptor is a Hyperlambda file named "interceptor.hl". It will intercept all requests going to the folder it's located, or a sub-folder, and create a combined lambda object consisting of both the interceptor.hl file, and the file responsible for resolving the URL.

To understand interceptors, imagining the following two Hyperlambda files.

/modules/foo/interceptor.hl

data.connect:magic
   .interceptor

/modules/foo/bar.get.hl

data.read
   table:roles
   columns
      name

When an HTTP GET request enters your backend with the URL of "magic/modules/foo/bar" , the Hyperlambda that actually executes becomes the following.

data.connect:magic
   data.read
      table:roles
      columns
         name

The above [.interceptor] node in your interceptor will be replaced by the content of your resolved Hyperlambda file. This allows you to create more DRY code, by having commonalities inside a common Hyperlambda file, one common file for each folder, and/or its sub-folders. You can have as many [.interceptor] nodes as you wish in your interceptors, but for obvious reasons we recommend only having one.

Interceptors such as the above are recursively applied, allowing you to create as many levels of interceptors as you wish.

Exception handlers

If you've got a file named "exceptions.hl" inside one of your folders, it will be invoked if an unhandled exception occurs. Your exception handler will be invoked only for unhandled exceptions for requests inside the folder where it exists physically, allowing you to have different exceptions handlers for different parts of your app.

Notice, contrary to interceptors exception handlers will not be recursively applied, and only the inner most exception handler will be invoked. Below is a simple exception handler that simply creates a log entry, returning a static message to the client, with the message propagating to the client, and its status code being 456.

log.error:x:@.arguments/*/message
   url:x:@.arguments/*/path
return
   message:Jo dude! Erred!
   public:bool:true
   status:int:456

In addition to the meta retrieval endpoint described above, the module contains the following slots.

  • [server.ip] - Returns the IP address of the server itself
  • [response.status.set] - Sets the status code (e.g. 404) on the response object
  • [request.cookies.list] - Lists all HTTP request cookies
  • [request.cookies.get] - Returns the value of a cookie sent by the request
  • [response.cookies.set] - Creates a cookie that will be returned to the client over the response
  • [request.headers.list] - Lists all HTTP request headers sent by the request
  • [request.headers.get] - Returns a single HTTP header associated with the request
  • [request.ip] - Returns the IP address of the HTTP request
  • [request.url] - Returns the relative URL associated with the request, without its magic/ prefix, and query parameters as children nodes as a key/value list
  • [request.host] - Returns the host name associated with the request
  • [request.scheme] - Returns the scheme associated with the request
  • [response.headers.set] - Adds an HTTP header to the response object
  • [mime.add] - Associates a file extension with a MIME type, only relevant for the HttpFileExecutorAsync resolver

Hyperlambda and cookies

Since cookies have more parameters than just a simple key/value declaration, the [response.cookies.set] slot takes the following arguments.

  • [value] - The string content of your cookie
  • [expires] - Absolute expiration date of your cookie, as a Hyperlambda date value
  • [http-only] - Boolean value declaring whether or not the cookie should only be accessible on the server
  • [secure] - Boolean value declaring whether or not cookie should only be transmitted from the client to the server over a secure (https) connection
  • [domain] - Domain value of your cookie
  • [path] - Path value of your cookie
  • [same-site] - Same-site value of your cookie

Only the [value] from above is mandatory. To delete a cookie on the client, set the expiration date to a value in the past.

How to use [mime.add]

This slots associates a file extension with a MIME type. Notice, it will override previous associations if existing. Example usage can be found below.

mime.add:py
   .:application/python

Then later when the endpoint resolver is returning files ending with ".py", it will return these with a Content-Type of "application/python".

Project website for magic.endpoint

The source code for this repository can be found at github.com/polterguy/magic.endpoint, and you can provide feedback, provide bug reports, etc at the same place.

  • Build status
  • Quality Gate Status
  • Bugs
  • Code Smells
  • Coverage
  • Duplicated Lines (%)
  • Lines of Code
  • Maintainability Rating
  • Reliability Rating
  • Security Rating
  • Technical Debt
  • Vulnerabilities

The projects is copyright Thomas Hansen 2023 - 2024, and professionally maintained by AINIRO.IO.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on magic.endpoint.contracts:

Package Downloads
magic.endpoint.services

Service implementations for magic.endpoint, that allows you to dynamically evaluate Hyperlambda files associated with a URL. To use package go to https://polterguy.github.io

magic.endpoint

Magic endpoint is a dynamic Hyperlambda endpoint evaluator, allowing you to create HTTP REST API endpoints dynamically, that will execute a Hyperlambda file when evaluated, where the URL is a reference to the physical path on disc to your Hyperlambda file. To use package go to https://polterguy.github.io

magic.lambda.sockets

Web socket helper project for Magic, giving you support for web sockets connections from and to Hyperlambda. To use package go to https://polterguy.github.io

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
17.1.7 377 1/12/2024
17.1.6 386 1/11/2024
17.1.5 391 1/5/2024
17.0.1 447 1/1/2024
17.0.0 842 12/14/2023
16.11.5 1,012 11/12/2023
16.9.0 863 10/9/2023
16.7.0 1,397 7/11/2023
16.4.1 1,269 7/2/2023
16.4.0 1,277 6/22/2023
16.3.1 1,318 6/7/2023
16.3.0 1,270 5/28/2023
16.1.9 1,894 4/30/2023
15.10.11 1,386 4/13/2023
15.9.1 1,993 3/26/2023
15.9.0 1,534 3/24/2023
15.8.2 1,531 3/20/2023
15.7.0 1,527 3/6/2023
15.5.0 2,824 1/28/2023
15.2.0 1,938 1/18/2023
15.1.0 2,425 12/28/2022
14.5.7 1,993 12/13/2022
14.5.5 2,136 12/6/2022
14.5.1 2,009 11/23/2022
14.5.0 1,973 11/18/2022
14.4.5 2,232 10/22/2022
14.4.1 2,253 10/22/2022
14.4.0 2,178 10/17/2022
14.3.1 3,426 9/12/2022
14.3.0 2,300 9/10/2022
14.1.3 2,545 8/7/2022
14.1.2 2,237 8/7/2022
14.1.1 2,298 8/7/2022
14.0.14 2,302 7/26/2022
14.0.12 2,313 7/24/2022
14.0.11 2,335 7/23/2022
14.0.10 2,321 7/23/2022
14.0.9 2,303 7/23/2022
14.0.8 2,457 7/17/2022
14.0.5 2,481 7/11/2022
14.0.4 2,381 7/6/2022
14.0.3 2,375 7/2/2022
14.0.2 2,363 7/2/2022
14.0.0 2,574 6/25/2022
13.4.0 4,197 5/31/2022
13.3.6 2,120 5/14/2022
13.3.4 3,070 5/9/2022
13.3.0 3,176 5/1/2022
13.2.0 2,934 4/21/2022
13.1.0 2,741 4/7/2022
13.0.0 2,414 4/5/2022
11.0.5 3,176 3/2/2022
11.0.4 2,604 2/22/2022
11.0.3 1,929 2/9/2022
11.0.2 2,806 2/6/2022
11.0.1 2,394 2/5/2022
11.0.0 2,507 2/5/2022
10.0.21 2,513 1/28/2022
10.0.20 2,560 1/27/2022
10.0.19 2,473 1/23/2022
10.0.18 2,494 1/17/2022
10.0.15 2,181 12/31/2021
10.0.14 1,874 12/28/2021
10.0.7 2,714 12/22/2021
10.0.5 2,336 12/18/2021
9.9.9 2,419 11/29/2021
9.9.3 2,728 11/9/2021
9.9.2 1,984 11/4/2021
9.9.0 2,129 10/30/2021
9.8.9 2,073 10/29/2021
9.8.7 2,025 10/27/2021
9.8.6 2,064 10/27/2021
9.8.5 2,066 10/26/2021
9.8.0 2,808 10/20/2021
9.7.9 1,969 10/19/2021
9.7.5 3,139 10/14/2021
9.7.2 1,758 10/14/2021
9.7.0 2,683 10/9/2021
9.6.6 2,468 8/14/2021
9.2.1 12,464 6/1/2021
9.2.0 1,513 5/26/2021
9.1.9 1,389 5/5/2021
9.1.4 3,211 4/21/2021
9.1.0 1,734 4/14/2021
9.0.0 1,657 4/5/2021
8.9.9 1,944 3/30/2021
8.9.3 2,455 3/19/2021
8.9.2 1,929 1/29/2021
8.9.1 1,972 1/24/2021
8.9.0 2,010 1/22/2021
8.6.9 3,908 11/8/2020
8.6.6 2,873 11/2/2020
8.6.1 4,292 10/29/2020
8.6.0 2,070 10/28/2020
8.5.0 2,804 10/23/2020
8.4.3 3,759 10/17/2020
8.4.2 2,182 10/16/2020
8.4.1 2,860 10/15/2020
8.4.0 2,228 10/13/2020
8.3.1 3,571 10/5/2020
8.3.0 2,187 10/3/2020
8.2.3 2,091 10/1/2020
8.2.2 2,300 9/26/2020
8.2.1 2,243 9/25/2020
8.2.0 2,187 9/25/2020
8.1.18 4,109 9/21/2020
8.1.17 5,986 9/13/2020
8.1.16 2,183 9/13/2020
8.1.15 2,132 9/12/2020
8.1.11 3,463 9/11/2020
8.1.10 2,201 9/6/2020
8.1.9 2,179 9/3/2020
8.1.8 2,288 9/2/2020
8.1.7 2,072 8/28/2020
8.1.4 2,059 8/25/2020
8.1.3 2,245 8/18/2020
8.1.2 2,129 8/16/2020
8.1.1 2,204 8/15/2020
8.1.0 1,507 8/15/2020
8.0.1 3,505 8/7/2020
8.0.0 2,088 8/7/2020
7.0.0 3,500 6/28/2020
5.0.0 10,360 2/25/2020
4.0.5 7,528 2/21/2020
4.0.4 7,030 1/27/2020
4.0.3 2,267 1/27/2020
4.0.2 2,332 1/16/2020
4.0.1 2,357 1/11/2020
4.0.0 2,359 1/5/2020
3.1.0 8,008 11/10/2019
3.0.0 5,094 10/23/2019
2.0.2 10,253 10/15/2019
2.0.1 2,801 10/14/2019
2.0.0 1,982 10/13/2019
1.2.0 2,368 10/11/2019
1.1.9 2,345 10/10/2019
1.1.8 1,765 10/10/2019
1.1.7 1,800 10/9/2019
1.1.6 1,646 10/7/2019
1.1.5 1,760 10/6/2019
1.1.4 1,643 10/6/2019