From d23d20c64f2600361af8dc3c928d8060ef30be84 Mon Sep 17 00:00:00 2001 From: Im-Fran Date: Mon, 24 Jan 2022 22:02:41 +0000 Subject: [PATCH 1/4] Initial gh-pages commit From 1cb6359329210cd7eaab09151218bc1dda70ef40 Mon Sep 17 00:00:00 2001 From: Im-Fran Date: Mon, 24 Jan 2022 22:02:42 +0000 Subject: [PATCH 2/4] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20TheP?= =?UTF-8?q?rogramSrc/SimpleCore-NetworkingModule@510cbbe68da2008a457526144?= =?UTF-8?q?a2b6c0dd66368a6=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- -networking-module/package-list | 42 + .../-request/-request.html | 37 + .../-request/body.html | 37 + .../-request/connect.html | 37 + .../-request/delete.html | 37 + .../-request/get.html | 37 + .../-request/header.html | 37 + .../-request/headers.html | 37 + .../-request/index.html | 260 ++++ .../-request/method.html | 37 + .../-request/post.html | 37 + .../-request/put.html | 37 + .../-request/timeout.html | 37 + .../-request/url.html | 37 + .../-request/use-cache.html | 37 + .../index.html | 56 + .../-response/-response.html | 37 + .../-response/connection.html | 37 + .../-response/expected-status-code.html | 37 + .../-response/get-response-header-count.html | 37 + .../-response/get-response-header-names.html | 37 + .../-response/get-response-header.html | 37 + .../-response/get-response-headers.html | 37 + .../-response/get-response-message.html | 37 + .../-response/get-response-stream.html | 37 + .../-response/get-response-string.html | 37 + .../-response/get-status-code.html | 37 + .../-response/index.html | 189 +++ .../-response/was-successful.html | 37 + .../index.html | 56 + .../-main/-main.html | 37 + .../-main/index.html | 41 + .../index.html | 56 + images/anchor-copy-button.svg | 4 + images/arrow_down.svg | 3 + images/copy-icon.svg | 3 + images/copy-successful-icon.svg | 3 + images/footer-go-to-link.svg | 3 + images/go-to-top-icon.svg | 4 + images/logo-icon.svg | 10 + images/theme-toggle.svg | 4 + index.html | 74 ++ navigation.html | 22 + scripts/clipboard.js | 52 + scripts/main.js | 67 + scripts/navigation-loader.js | 64 + scripts/pages.json | 1 + scripts/platform-content-handler.js | 358 +++++ scripts/prism.js | 13 + scripts/sourceset_dependencies.js | 1 + styles/jetbrains-mono.css | 17 + styles/logo-styles.css | 15 + styles/main.css | 111 ++ styles/prism.css | 103 ++ styles/style.css | 1168 +++++++++++++++++ 55 files changed, 3762 insertions(+) create mode 100644 -networking-module/package-list create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/-request.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/body.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/connect.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/delete.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/get.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/header.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/headers.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/index.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/method.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/post.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/put.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/timeout.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/url.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/use-cache.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule.builder/index.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/-response.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/connection.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/expected-status-code.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-header-count.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-header-names.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-header.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-headers.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-message.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-stream.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-string.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-status-code.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/index.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/was-successful.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule.objects/index.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule/-main/-main.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule/-main/index.html create mode 100644 -networking-module/xyz.theprogramsrc.networkingmodule/index.html create mode 100644 images/anchor-copy-button.svg create mode 100644 images/arrow_down.svg create mode 100644 images/copy-icon.svg create mode 100644 images/copy-successful-icon.svg create mode 100644 images/footer-go-to-link.svg create mode 100644 images/go-to-top-icon.svg create mode 100644 images/logo-icon.svg create mode 100644 images/theme-toggle.svg create mode 100644 index.html create mode 100644 navigation.html create mode 100644 scripts/clipboard.js create mode 100644 scripts/main.js create mode 100644 scripts/navigation-loader.js create mode 100644 scripts/pages.json create mode 100644 scripts/platform-content-handler.js create mode 100644 scripts/prism.js create mode 100644 scripts/sourceset_dependencies.js create mode 100644 styles/jetbrains-mono.css create mode 100644 styles/logo-styles.css create mode 100644 styles/main.css create mode 100644 styles/prism.css create mode 100644 styles/style.css diff --git a/-networking-module/package-list b/-networking-module/package-list new file mode 100644 index 0000000..d570792 --- /dev/null +++ b/-networking-module/package-list @@ -0,0 +1,42 @@ +$dokka.format:html-v1 +$dokka.linkExtension:html +$dokka.location:xyz.theprogramsrc.networkingmodule.builder////PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.builder/index.html +$dokka.location:xyz.theprogramsrc.networkingmodule.builder/Request///PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/index.html +$dokka.location:xyz.theprogramsrc.networkingmodule.builder/Request/Request/#kotlin.String/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/-request.html +$dokka.location:xyz.theprogramsrc.networkingmodule.builder/Request/body/#/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/body.html +$dokka.location:xyz.theprogramsrc.networkingmodule.builder/Request/body/#kotlin.String/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/body.html +$dokka.location:xyz.theprogramsrc.networkingmodule.builder/Request/connect/#/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/connect.html +$dokka.location:xyz.theprogramsrc.networkingmodule.builder/Request/delete/#/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/delete.html +$dokka.location:xyz.theprogramsrc.networkingmodule.builder/Request/get/#/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/get.html +$dokka.location:xyz.theprogramsrc.networkingmodule.builder/Request/header/#kotlin.String#kotlin.String/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/header.html +$dokka.location:xyz.theprogramsrc.networkingmodule.builder/Request/headers/#/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/headers.html +$dokka.location:xyz.theprogramsrc.networkingmodule.builder/Request/method/#/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/method.html +$dokka.location:xyz.theprogramsrc.networkingmodule.builder/Request/post/#/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/post.html +$dokka.location:xyz.theprogramsrc.networkingmodule.builder/Request/put/#/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/put.html +$dokka.location:xyz.theprogramsrc.networkingmodule.builder/Request/timeout/#/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/timeout.html +$dokka.location:xyz.theprogramsrc.networkingmodule.builder/Request/timeout/#kotlin.Int/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/timeout.html +$dokka.location:xyz.theprogramsrc.networkingmodule.builder/Request/url/#/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/url.html +$dokka.location:xyz.theprogramsrc.networkingmodule.builder/Request/useCache/#/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/use-cache.html +$dokka.location:xyz.theprogramsrc.networkingmodule.builder/Request/useCache/#kotlin.Boolean/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/use-cache.html +$dokka.location:xyz.theprogramsrc.networkingmodule.objects////PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.objects/index.html +$dokka.location:xyz.theprogramsrc.networkingmodule.objects/Response///PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/index.html +$dokka.location:xyz.theprogramsrc.networkingmodule.objects/Response/Response/#java.net.HttpURLConnection/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/-response.html +$dokka.location:xyz.theprogramsrc.networkingmodule.objects/Response/connection/#/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/connection.html +$dokka.location:xyz.theprogramsrc.networkingmodule.objects/Response/expectedStatusCode/#/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/expected-status-code.html +$dokka.location:xyz.theprogramsrc.networkingmodule.objects/Response/getResponseHeader/#kotlin.String#kotlin.Int/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-header.html +$dokka.location:xyz.theprogramsrc.networkingmodule.objects/Response/getResponseHeader/#kotlin.String/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-header.html +$dokka.location:xyz.theprogramsrc.networkingmodule.objects/Response/getResponseHeaderCount/#kotlin.String/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-header-count.html +$dokka.location:xyz.theprogramsrc.networkingmodule.objects/Response/getResponseHeaderNames/#/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-header-names.html +$dokka.location:xyz.theprogramsrc.networkingmodule.objects/Response/getResponseHeaders/#/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-headers.html +$dokka.location:xyz.theprogramsrc.networkingmodule.objects/Response/getResponseMessage/#/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-message.html +$dokka.location:xyz.theprogramsrc.networkingmodule.objects/Response/getResponseStream/#/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-stream.html +$dokka.location:xyz.theprogramsrc.networkingmodule.objects/Response/getResponseString/#/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-string.html +$dokka.location:xyz.theprogramsrc.networkingmodule.objects/Response/getStatusCode/#/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-status-code.html +$dokka.location:xyz.theprogramsrc.networkingmodule.objects/Response/wasSuccessful/#/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/was-successful.html +$dokka.location:xyz.theprogramsrc.networkingmodule////PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule/index.html +$dokka.location:xyz.theprogramsrc.networkingmodule/Main///PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule/-main/index.html +$dokka.location:xyz.theprogramsrc.networkingmodule/Main/Main/#/PointingToDeclaration/-networking-module/xyz.theprogramsrc.networkingmodule/-main/-main.html +xyz.theprogramsrc.networkingmodule +xyz.theprogramsrc.networkingmodule.builder +xyz.theprogramsrc.networkingmodule.objects + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/-request.html b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/-request.html new file mode 100644 index 0000000..3f55980 --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/-request.html @@ -0,0 +1,37 @@ + + + + Request + + + + +
+
+
+
+
+
+ +
+

Request

+
+
fun Request(url: String)

Parameters

url

The url of the request

+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/body.html b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/body.html new file mode 100644 index 0000000..f3513df --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/body.html @@ -0,0 +1,37 @@ + + + + body + + + + +
+
+
+
+
+
+ +
+

body

+
+
fun body(body: String): Request

Sets the body of the request

Return

this

Parameters

body

The body of the request


var body: String

The body of the request. (Set to empty string to ignore). Defaults to empty string

+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/connect.html b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/connect.html new file mode 100644 index 0000000..fd2f033 --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/connect.html @@ -0,0 +1,37 @@ + + + + connect + + + + +
+
+
+
+
+
+ +
+

connect

+
+
fun connect(): Response

Sends the request and returns a response

Return

the Response

+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/delete.html b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/delete.html new file mode 100644 index 0000000..a64079d --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/delete.html @@ -0,0 +1,37 @@ + + + + delete + + + + +
+
+
+
+
+
+ +
+

delete

+
+
fun delete(): Request

Sets the request method to DELETE

Return

this

+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/get.html b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/get.html new file mode 100644 index 0000000..de63220 --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/get.html @@ -0,0 +1,37 @@ + + + + get + + + + +
+
+
+
+
+
+ +
+

get

+
+
fun get(): Request

Sets the request method to GET

Return

this

+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/header.html b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/header.html new file mode 100644 index 0000000..e7302f9 --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/header.html @@ -0,0 +1,37 @@ + + + + header + + + + +
+
+
+
+
+
+ +
+

header

+
+
fun header(key: String, value: String): Request

Sets the header of the request. If the header already exists, it will be overwritten

Return

this

Parameters

key

The key of the header

value

The value of the header

+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/headers.html b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/headers.html new file mode 100644 index 0000000..87e624c --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/headers.html @@ -0,0 +1,37 @@ + + + + headers + + + + +
+
+
+
+
+
+ +
+

headers

+
+
var headers: MutableMap<String, String>

The headers of the request. Defaults to map with User-Agent

+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/index.html b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/index.html new file mode 100644 index 0000000..8072ce4 --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/index.html @@ -0,0 +1,260 @@ + + + + Request + + + + +
+
+
+
+
+
+ +
+

Request

+
class Request(url: String)

This class is used to build a request

+
+
+
+
+

Parameters

+
+
url

The url of the request

+
+

Constructors

+
+
+
+
Request +
Link copied to clipboard
+
+
+
+
fun Request(url: String)
+
+
+
+
+
+

Functions

+
+
+
+
body +
Link copied to clipboard
+
+
+
+
fun body(body: String): Request

Sets the body of the request

+
+
+
+
+ +
+
+
connect +
Link copied to clipboard
+
+
+
+
fun connect(): Response

Sends the request and returns a response

+
+
+
+
+ +
+
+
delete +
Link copied to clipboard
+
+
+
+
fun delete(): Request

Sets the request method to DELETE

+
+
+
+
+ +
+
+
get +
Link copied to clipboard
+
+
+
+
fun get(): Request

Sets the request method to GET

+
+
+
+
+ +
+
+
header +
Link copied to clipboard
+
+
+
+
fun header(key: String, value: String): Request

Sets the header of the request. If the header already exists, it will be overwritten

+
+
+
+
+ +
+
+
post +
Link copied to clipboard
+
+
+
+
fun post(): Request

Sets the request method to POST

+
+
+
+
+ +
+
+
put +
Link copied to clipboard
+
+
+
+
fun put(): Request

Sets the request method to PUT

+
+
+
+
+ +
+
+
timeout +
Link copied to clipboard
+
+
+
+
fun timeout(timeout: Int): Request

Sets the timeout of the request

+
+
+
+
+ +
+
+
useCache +
Link copied to clipboard
+
+
+
+
fun useCache(useCache: Boolean): Request

Sets if the request should use the cache

+
+
+
+
+
+

Properties

+
+
+
+
body +
Link copied to clipboard
+
+
+
+
var body: String

The body of the request. (Set to empty string to ignore). Defaults to empty string

+
+
+
+
+ +
+
+
headers +
Link copied to clipboard
+
+
+
+
var headers: MutableMap<String, String>

The headers of the request. Defaults to map with User-Agent

+
+
+
+
+ +
+
+
method +
Link copied to clipboard
+
+
+
+
var method: String

The method of the request. Defaults to GET

+
+
+
+
+ +
+
+
timeout +
Link copied to clipboard
+
+
+
+
var timeout: Int

The timeout of the request (Set to -1 to disable). Defaults to -1

+
+
+
+
+ +
+
+
url +
Link copied to clipboard
+
+
+
+
val url: String
+
+
+
+
+ +
+
+
useCache +
Link copied to clipboard
+
+
+
+
var useCache: Boolean = true

True if the request should use the cache, false otherwise. Defaults to true

+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/method.html b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/method.html new file mode 100644 index 0000000..2b7e20e --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/method.html @@ -0,0 +1,37 @@ + + + + method + + + + +
+
+
+
+
+
+ +
+

method

+
+
var method: String

The method of the request. Defaults to GET

+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/post.html b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/post.html new file mode 100644 index 0000000..7a05c77 --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/post.html @@ -0,0 +1,37 @@ + + + + post + + + + +
+
+
+
+
+
+ +
+

post

+
+
fun post(): Request

Sets the request method to POST

Return

this

+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/put.html b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/put.html new file mode 100644 index 0000000..c52e432 --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/put.html @@ -0,0 +1,37 @@ + + + + put + + + + +
+
+
+
+
+
+ +
+

put

+
+
fun put(): Request

Sets the request method to PUT

Return

this

+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/timeout.html b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/timeout.html new file mode 100644 index 0000000..32aa1ec --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/timeout.html @@ -0,0 +1,37 @@ + + + + timeout + + + + +
+
+
+
+
+
+ +
+

timeout

+
+
fun timeout(timeout: Int): Request

Sets the timeout of the request

Return

this

Parameters

timeout

The timeout of the request. (Set to -1 to disable)


var timeout: Int

The timeout of the request (Set to -1 to disable). Defaults to -1

+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/url.html b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/url.html new file mode 100644 index 0000000..957b655 --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/url.html @@ -0,0 +1,37 @@ + + + + url + + + + +
+
+
+
+
+
+ +
+

url

+
+
val url: String
+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/use-cache.html b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/use-cache.html new file mode 100644 index 0000000..43b076a --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/-request/use-cache.html @@ -0,0 +1,37 @@ + + + + useCache + + + + +
+
+
+
+
+
+ +
+

useCache

+
+
fun useCache(useCache: Boolean): Request

Sets if the request should use the cache

Return

this

Parameters

useCache

True if the request should use the cache, false otherwise


var useCache: Boolean = true

True if the request should use the cache, false otherwise. Defaults to true

+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule.builder/index.html b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/index.html new file mode 100644 index 0000000..62d6aa9 --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule.builder/index.html @@ -0,0 +1,56 @@ + + + + xyz.theprogramsrc.networkingmodule.builder + + + + +
+
+
+
+
+
+ +
+

Package xyz.theprogramsrc.networkingmodule.builder

+
+
+
+
+

Types

+
+
+
+
Request +
Link copied to clipboard
+
+
+
+
class Request(url: String)

This class is used to build a request

+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/-response.html b/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/-response.html new file mode 100644 index 0000000..2c3298d --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/-response.html @@ -0,0 +1,37 @@ + + + + Response + + + + +
+
+
+
+
+
+ +
+

Response

+
+
fun Response(connection: HttpURLConnection)
+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/connection.html b/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/connection.html new file mode 100644 index 0000000..1d87bf4 --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/connection.html @@ -0,0 +1,37 @@ + + + + connection + + + + +
+
+
+
+
+
+ +
+

connection

+
+
val connection: HttpURLConnection
+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/expected-status-code.html b/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/expected-status-code.html new file mode 100644 index 0000000..35e921e --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/expected-status-code.html @@ -0,0 +1,37 @@ + + + + expectedStatusCode + + + + +
+
+
+
+
+
+ +
+

expectedStatusCode

+
+
var expectedStatusCode: Int = 200

The expected response code

+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-header-count.html b/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-header-count.html new file mode 100644 index 0000000..ed16a5b --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-header-count.html @@ -0,0 +1,37 @@ + + + + getResponseHeaderCount + + + + +
+
+
+
+
+
+ +
+

getResponseHeaderCount

+
+
fun getResponseHeaderCount(header: String): Int

Gets the response header count

Return

the response header count

+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-header-names.html b/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-header-names.html new file mode 100644 index 0000000..190cdf0 --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-header-names.html @@ -0,0 +1,37 @@ + + + + getResponseHeaderNames + + + + +
+
+
+
+
+
+ +
+

getResponseHeaderNames

+
+
fun getResponseHeaderNames(): List<String>

Gets the response header names

Return

the response header names

+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-header.html b/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-header.html new file mode 100644 index 0000000..a831342 --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-header.html @@ -0,0 +1,37 @@ + + + + getResponseHeader + + + + +
+
+
+
+
+
+ +
+

getResponseHeader

+
+
fun getResponseHeader(header: String): String?
fun getResponseHeader(header: String, index: Int): String?

Gets the response header

Return

the response header

+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-headers.html b/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-headers.html new file mode 100644 index 0000000..70eb785 --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-headers.html @@ -0,0 +1,37 @@ + + + + getResponseHeaders + + + + +
+
+
+
+
+
+ +
+

getResponseHeaders

+
+
fun getResponseHeaders(): Map<String, List<String>>

Gets the response headers

Return

the response headers

+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-message.html b/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-message.html new file mode 100644 index 0000000..e973625 --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-message.html @@ -0,0 +1,37 @@ + + + + getResponseMessage + + + + +
+
+
+
+
+
+ +
+

getResponseMessage

+
+
fun getResponseMessage(): String

Gets the response message

Return

the response message

+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-stream.html b/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-stream.html new file mode 100644 index 0000000..0dbce36 --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-stream.html @@ -0,0 +1,37 @@ + + + + getResponseStream + + + + +
+
+
+
+
+
+ +
+

getResponseStream

+
+
fun getResponseStream(): InputStream

Gets the response stream

Return

the response stream

+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-string.html b/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-string.html new file mode 100644 index 0000000..f4b7426 --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-response-string.html @@ -0,0 +1,37 @@ + + + + getResponseString + + + + +
+
+
+
+
+
+ +
+

getResponseString

+
+
fun getResponseString(): String

Gets the response string

Return

the response string

+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-status-code.html b/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-status-code.html new file mode 100644 index 0000000..6a1d44f --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/get-status-code.html @@ -0,0 +1,37 @@ + + + + getStatusCode + + + + +
+
+
+
+
+
+ +
+

getStatusCode

+
+
fun getStatusCode(): Int

Gets the status code

Return

the status code

+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/index.html b/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/index.html new file mode 100644 index 0000000..c188660 --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/index.html @@ -0,0 +1,189 @@ + + + + Response + + + + +
+
+
+
+
+
+ +
+

Response

+
class Response(connection: HttpURLConnection)
+
+
+
+
+

Functions

+
+
+
+
getResponseHeader +
Link copied to clipboard
+
+
+
+
fun getResponseHeader(header: String): String?
fun getResponseHeader(header: String, index: Int): String?

Gets the response header

+
+
+
+
+ +
+
+
getResponseHeaderCount +
Link copied to clipboard
+
+
+
+
fun getResponseHeaderCount(header: String): Int

Gets the response header count

+
+
+
+
+ +
+
+
getResponseHeaderNames +
Link copied to clipboard
+
+
+
+
fun getResponseHeaderNames(): List<String>

Gets the response header names

+
+
+
+
+ +
+
+
getResponseHeaders +
Link copied to clipboard
+
+
+
+
fun getResponseHeaders(): Map<String, List<String>>

Gets the response headers

+
+
+
+
+ +
+
+
getResponseMessage +
Link copied to clipboard
+
+
+
+
fun getResponseMessage(): String

Gets the response message

+
+
+
+
+ +
+
+
getResponseStream +
Link copied to clipboard
+
+
+
+
fun getResponseStream(): InputStream

Gets the response stream

+
+
+
+
+ +
+
+
getResponseString +
Link copied to clipboard
+
+
+
+
fun getResponseString(): String

Gets the response string

+
+
+
+
+ +
+
+
getStatusCode +
Link copied to clipboard
+
+
+
+
fun getStatusCode(): Int

Gets the status code

+
+
+
+
+ +
+
+
wasSuccessful +
Link copied to clipboard
+
+
+
+
fun wasSuccessful(): Boolean

Checks if the status code is the same as the expected status code

+
+
+
+
+
+

Properties

+
+
+
+
connection +
Link copied to clipboard
+
+
+
+
val connection: HttpURLConnection
+
+
+
+
+ +
+
+
expectedStatusCode +
Link copied to clipboard
+
+
+
+
var expectedStatusCode: Int = 200

The expected response code

+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/was-successful.html b/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/was-successful.html new file mode 100644 index 0000000..564c0ca --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule.objects/-response/was-successful.html @@ -0,0 +1,37 @@ + + + + wasSuccessful + + + + +
+
+
+
+
+
+ +
+

wasSuccessful

+
+
fun wasSuccessful(): Boolean

Checks if the status code is the same as the expected status code

Return

true if the status code is the same as the expected status code

+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule.objects/index.html b/-networking-module/xyz.theprogramsrc.networkingmodule.objects/index.html new file mode 100644 index 0000000..28dee62 --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule.objects/index.html @@ -0,0 +1,56 @@ + + + + xyz.theprogramsrc.networkingmodule.objects + + + + +
+
+
+
+
+
+ +
+

Package xyz.theprogramsrc.networkingmodule.objects

+
+
+
+
+

Types

+
+
+
+
Response +
Link copied to clipboard
+
+
+
+
class Response(connection: HttpURLConnection)
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule/-main/-main.html b/-networking-module/xyz.theprogramsrc.networkingmodule/-main/-main.html new file mode 100644 index 0000000..f3c0955 --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule/-main/-main.html @@ -0,0 +1,37 @@ + + + + Main + + + + +
+
+
+
+
+
+ +
+

Main

+
+
fun Main()
+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule/-main/index.html b/-networking-module/xyz.theprogramsrc.networkingmodule/-main/index.html new file mode 100644 index 0000000..aaf6424 --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule/-main/index.html @@ -0,0 +1,41 @@ + + + + Main + + + + +
+
+
+
+
+
+ +
+

Main

+
class Main
+
+
+
+
+
+
+ +
+
+ + + diff --git a/-networking-module/xyz.theprogramsrc.networkingmodule/index.html b/-networking-module/xyz.theprogramsrc.networkingmodule/index.html new file mode 100644 index 0000000..8aadfec --- /dev/null +++ b/-networking-module/xyz.theprogramsrc.networkingmodule/index.html @@ -0,0 +1,56 @@ + + + + xyz.theprogramsrc.networkingmodule + + + + +
+
+
+
+
+
+ +
+

Package xyz.theprogramsrc.networkingmodule

+
+
+
+
+

Types

+
+
+
+
Main +
Link copied to clipboard
+
+
+
+
class Main
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/images/anchor-copy-button.svg b/images/anchor-copy-button.svg new file mode 100644 index 0000000..bab9d74 --- /dev/null +++ b/images/anchor-copy-button.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/images/arrow_down.svg b/images/arrow_down.svg new file mode 100644 index 0000000..c0388de --- /dev/null +++ b/images/arrow_down.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/images/copy-icon.svg b/images/copy-icon.svg new file mode 100644 index 0000000..61440f0 --- /dev/null +++ b/images/copy-icon.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/images/copy-successful-icon.svg b/images/copy-successful-icon.svg new file mode 100644 index 0000000..1865f73 --- /dev/null +++ b/images/copy-successful-icon.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/images/footer-go-to-link.svg b/images/footer-go-to-link.svg new file mode 100644 index 0000000..0137e22 --- /dev/null +++ b/images/footer-go-to-link.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/images/go-to-top-icon.svg b/images/go-to-top-icon.svg new file mode 100644 index 0000000..d987f3e --- /dev/null +++ b/images/go-to-top-icon.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/images/logo-icon.svg b/images/logo-icon.svg new file mode 100644 index 0000000..1fea087 --- /dev/null +++ b/images/logo-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/images/theme-toggle.svg b/images/theme-toggle.svg new file mode 100644 index 0000000..2a8d750 --- /dev/null +++ b/images/theme-toggle.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..9cff22f --- /dev/null +++ b/index.html @@ -0,0 +1,74 @@ + + + + NetworkingModule + + + + +
+
+
+
+
+
+ +
+

NetworkingModule

+
+

Packages

+
+
+
+
+
xyz.theprogramsrc.networkingmodule +
Link copied to clipboard
+
+
+
+
+
+
+ +
+
+
+
xyz.theprogramsrc.networkingmodule.builder +
Link copied to clipboard
+
+
+
+
+
+
+ +
+
+
+
xyz.theprogramsrc.networkingmodule.objects +
Link copied to clipboard
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/navigation.html b/navigation.html new file mode 100644 index 0000000..cee3dbe --- /dev/null +++ b/navigation.html @@ -0,0 +1,22 @@ + + diff --git a/scripts/clipboard.js b/scripts/clipboard.js new file mode 100644 index 0000000..b00ce24 --- /dev/null +++ b/scripts/clipboard.js @@ -0,0 +1,52 @@ +window.addEventListener('load', () => { + document.querySelectorAll('span.copy-icon').forEach(element => { + element.addEventListener('click', (el) => copyElementsContentToClipboard(element)); + }) + + document.querySelectorAll('span.anchor-icon').forEach(element => { + element.addEventListener('click', (el) => { + if(element.hasAttribute('pointing-to')){ + const location = hrefWithoutCurrentlyUsedAnchor() + '#' + element.getAttribute('pointing-to') + copyTextToClipboard(element, location) + } + }); + }) +}) + +const copyElementsContentToClipboard = (element) => { + const selection = window.getSelection(); + const range = document.createRange(); + range.selectNodeContents(element.parentNode.parentNode); + selection.removeAllRanges(); + selection.addRange(range); + + copyAndShowPopup(element, () => selection.removeAllRanges()) +} + +const copyTextToClipboard = (element, text) => { + var textarea = document.createElement("textarea"); + textarea.textContent = text; + textarea.style.position = "fixed"; + document.body.appendChild(textarea); + textarea.select(); + + copyAndShowPopup(element, () => document.body.removeChild(textarea)) +} + +const copyAndShowPopup = (element, after) => { + try { + document.execCommand('copy'); + element.nextElementSibling.classList.add('active-popup'); + setTimeout(() => { + element.nextElementSibling.classList.remove('active-popup'); + }, 1200); + } catch (e) { + console.error('Failed to write to clipboard:', e) + } + finally { + if(after) after() + } +} + +const hrefWithoutCurrentlyUsedAnchor = () => window.location.href.split('#')[0] + diff --git a/scripts/main.js b/scripts/main.js new file mode 100644 index 0000000..3141dbe --- /dev/null +++ b/scripts/main.js @@ -0,0 +1,67 @@ +!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=378)}([function(e,t,n){e.exports=n(262)()},function(e,t,n){"use strict";e.exports=n(237)},function(e,t,n){var r; +/*! + Copyright (c) 2017 Jed Watson. + Licensed under the MIT License (MIT), see + http://jedwatson.github.io/classnames +*/!function(){"use strict";var n={}.hasOwnProperty;function o(){for(var e=[],t=0;to;)Q(e,n=r[o++],t[n]);return e},X=function(e){var t=F.call(this,e=x(e,!0));return!(this===W&&o(H,e)&&!o(U,e))&&(!(t||!o(this,e)||!o(H,e)||o(this,N)&&this[N][e])||t)},J=function(e,t){if(e=w(e),t=x(t,!0),e!==W||!o(H,t)||o(U,t)){var n=I(e,t);return!n||!o(H,t)||o(e,N)&&e[N][t]||(n.enumerable=!0),n}},Z=function(e){for(var t,n=z(w(e)),r=[],i=0;n.length>i;)o(H,t=n[i++])||t==N||t==c||r.push(t);return r},ee=function(e){for(var t,n=e===W,r=z(n?U:w(e)),i=[],a=0;r.length>a;)!o(H,t=r[a++])||n&&!o(W,t)||i.push(H[t]);return i};B||(l((R=function(){if(this instanceof R)throw TypeError("Symbol is not a constructor!");var e=p(arguments.length>0?arguments[0]:void 0),t=function(n){this===W&&t.call(U,n),o(this,N)&&o(this[N],e)&&(this[N][e]=!1),K(this,e,S(1,n))};return i&&V&&K(W,e,{configurable:!0,set:t}),q(e)}).prototype,"toString",(function(){return this._k})),E.f=J,C.f=Q,n(111).f=O.f=Z,n(93).f=X,T.f=ee,i&&!n(108)&&l(W,"propertyIsEnumerable",X,!0),h.f=function(e){return q(d(e))}),a(a.G+a.W+a.F*!B,{Symbol:R});for(var te="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),ne=0;te.length>ne;)d(te[ne++]);for(var re=P(d.store),oe=0;re.length>oe;)v(re[oe++]);a(a.S+a.F*!B,"Symbol",{for:function(e){return o(D,e+="")?D[e]:D[e]=R(e)},keyFor:function(e){if(!$(e))throw TypeError(e+" is not a symbol!");for(var t in D)if(D[t]===e)return t},useSetter:function(){V=!0},useSimple:function(){V=!1}}),a(a.S+a.F*!B,"Object",{create:function(e,t){return void 0===t?k(e):Y(k(e),t)},defineProperty:Q,defineProperties:Y,getOwnPropertyDescriptor:J,getOwnPropertyNames:Z,getOwnPropertySymbols:ee});var ie=u((function(){T.f(1)}));a(a.S+a.F*ie,"Object",{getOwnPropertySymbols:function(e){return T.f(_(e))}}),M&&a(a.S+a.F*(!B||u((function(){var e=R();return"[null]"!=A([e])||"{}"!=A({a:e})||"{}"!=A(Object(e))}))),"JSON",{stringify:function(e){for(var t,n,r=[e],o=1;arguments.length>o;)r.push(arguments[o++]);if(n=t=r[1],(y(t)||void 0!==e)&&!$(e))return m(t)||(t=function(e,t){if("function"==typeof n&&(t=n.call(this,e,t)),!$(t))return t}),r[1]=t,A.apply(M,r)}}),R.prototype[L]||n(59)(R.prototype,L,R.prototype.valueOf),f(R,"Symbol"),f(Math,"Math",!0),f(r.JSON,"JSON",!0)},function(e,t,n){var r=n(10);r(r.S+r.F*!n(30),"Object",{defineProperty:n(39).f})},function(e,t,n){"use strict";n(255);var r=n(27),o=n(135),i=n(30),a=/./.toString,l=function(e){n(41)(RegExp.prototype,"toString",e,!0)};n(31)((function(){return"/a/b"!=a.call({source:"a",flags:"b"})}))?l((function(){var e=r(this);return"/".concat(e.source,"/","flags"in e?e.flags:!i&&e instanceof RegExp?o.call(e):void 0)})):"toString"!=a.name&&l((function(){return a.call(this)}))},function(e,t,n){var r=Date.prototype,o=r.toString,i=r.getTime;new Date(NaN)+""!="Invalid Date"&&n(41)(r,"toString",(function(){var e=i.call(this);return e==e?o.call(this):"Invalid Date"}))},function(e,t,n){n(178)("asyncIterator")},function(e,t,n){var r=n(32),o=n(78),i=n(59),a=n(41),l=n(79),c=function(e,t,n){var u,s,f,p,d=e&c.F,h=e&c.G,v=e&c.S,g=e&c.P,m=e&c.B,b=h?r:v?r[t]||(r[t]={}):(r[t]||{}).prototype,y=h?o:o[t]||(o[t]={}),_=y.prototype||(y.prototype={});for(u in h&&(n=t),n)f=((s=!d&&b&&void 0!==b[u])?b:n)[u],p=m&&s?l(f,r):g&&"function"==typeof f?l(Function.call,f):f,b&&a(b,u,f,e&c.U),y[u]!=f&&i(y,u,p),g&&_[u]!=f&&(_[u]=f)};r.core=o,c.F=1,c.G=2,c.S=4,c.P=8,c.B=16,c.W=32,c.U=64,c.R=128,e.exports=c},function(e,t,n){for(var r=n(12),o=n(69),i=n(41),a=n(32),l=n(59),c=n(94),u=n(25),s=u("iterator"),f=u("toStringTag"),p=c.Array,d={CSSRuleList:!0,CSSStyleDeclaration:!1,CSSValueList:!1,ClientRectList:!1,DOMRectList:!1,DOMStringList:!1,DOMTokenList:!0,DataTransferItemList:!1,FileList:!1,HTMLAllCollection:!1,HTMLCollection:!1,HTMLFormElement:!1,HTMLSelectElement:!1,MediaList:!0,MimeTypeArray:!1,NamedNodeMap:!1,NodeList:!0,PaintRequestList:!1,Plugin:!1,PluginArray:!1,SVGLengthList:!1,SVGNumberList:!1,SVGPathSegList:!1,SVGPointList:!1,SVGStringList:!1,SVGTransformList:!1,SourceBufferList:!1,StyleSheetList:!0,TextTrackCueList:!1,TextTrackList:!1,TouchList:!1},h=o(d),v=0;v=e.length?(this._t=void 0,o(1)):o(0,"keys"==t?n:"values"==t?e[n]:[n,e[n]])}),"values"),i.Arguments=i.Array,r("keys"),r("values"),r("entries")},function(e,t,n){var r=n(10);r(r.S,"Object",{create:n(82)})},function(e,t,n){var r=n(10),o=n(82),i=n(80),a=n(27),l=n(29),c=n(31),u=n(180),s=(n(32).Reflect||{}).construct,f=c((function(){function e(){}return!(s((function(){}),[],e)instanceof e)})),p=!c((function(){s((function(){}))}));r(r.S+r.F*(f||p),"Reflect",{construct:function(e,t){i(e),a(t);var n=arguments.length<3?e:i(arguments[2]);if(p&&!f)return s(e,t,n);if(e==n){switch(t.length){case 0:return new e;case 1:return new e(t[0]);case 2:return new e(t[0],t[1]);case 3:return new e(t[0],t[1],t[2]);case 4:return new e(t[0],t[1],t[2],t[3])}var r=[null];return r.push.apply(r,t),new(u.apply(e,r))}var c=n.prototype,d=o(l(c)?c:Object.prototype),h=Function.apply.call(e,d,t);return l(h)?h:d}})},function(e,t,n){var r=n(10);r(r.S,"Object",{setPrototypeOf:n(176).set})},function(e,t,n){var r=n(54),o=n(69);n(250)("keys",(function(){return function(e){return o(r(e))}}))},function(e,t,n){"use strict";var r=n(10),o=n(130)(!1),i=[].indexOf,a=!!i&&1/[1].indexOf(1,-0)<0;r(r.P+r.F*(a||!n(71)(i)),"Array",{indexOf:function(e){return a?i.apply(this,arguments)||0:o(this,e,arguments[1])}})},function(e,t,n){var r=n(26),o=n(264);"string"==typeof(o=o.__esModule?o.default:o)&&(o=[[e.i,o,""]]);var i={insert:"head",singleton:!1};r(o,i);e.exports=o.locals||{}},function(e,t,n){var r=n(10);r(r.S+r.F,"Object",{assign:n(181)})},function(e,t,n){"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n=function(e,t){var n=e[1]||"",r=e[3];if(!r)return n;if(t&&"function"==typeof btoa){var o=(a=r,l=btoa(unescape(encodeURIComponent(JSON.stringify(a)))),c="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(l),"/*# ".concat(c," */")),i=r.sources.map((function(e){return"/*# sourceURL=".concat(r.sourceRoot||"").concat(e," */")}));return[n].concat(i).concat([o]).join("\n")}var a,l,c;return[n].join("\n")}(t,e);return t[2]?"@media ".concat(t[2]," {").concat(n,"}"):n})).join("")},t.i=function(e,n,r){"string"==typeof e&&(e=[[null,e,""]]);var o={};if(r)for(var i=0;i=t.length?{value:void 0,done:!0}:(e=r(t,n),this._i+=e.length,{value:e,done:!1})}))},function(e,t,n){var r=n(35),o=n(28),i=n(96),a=n(73),l=n(74),c=function(e,t,n){var u,s,f,p=e&c.F,d=e&c.G,h=e&c.S,v=e&c.P,g=e&c.B,m=e&c.W,b=d?o:o[t]||(o[t]={}),y=b.prototype,_=d?r:h?r[t]:(r[t]||{}).prototype;for(u in d&&(n=t),n)(s=!p&&_&&void 0!==_[u])&&l(b,u)||(f=s?_[u]:n[u],b[u]=d&&"function"!=typeof _[u]?n[u]:g&&s?i(f,r):m&&_[u]==f?function(e){var t=function(t,n,r){if(this instanceof e){switch(arguments.length){case 0:return new e;case 1:return new e(t);case 2:return new e(t,n)}return new e(t,n,r)}return e.apply(this,arguments)};return t.prototype=e.prototype,t}(f):v&&"function"==typeof f?i(Function.call,f):f,v&&((b.virtual||(b.virtual={}))[u]=f,e&c.R&&y&&!y[u]&&a(y,u,f)))};c.F=1,c.G=2,c.S=4,c.P=8,c.B=16,c.W=32,c.U=64,c.R=128,e.exports=c},function(e,t,n){var r=n(26),o=n(330);"string"==typeof(o=o.__esModule?o.default:o)&&(o=[[e.i,o,""]]);var i={insert:"head",singleton:!1};r(o,i);e.exports=o.locals||{}},function(e,t,n){var r=n(110),o=Math.min;e.exports=function(e){return e>0?o(r(e),9007199254740991):0}},function(e,t,n){var r=n(70);e.exports=function(e){return Object(r(e))}},function(e,t,n){"use strict";var r=n(10),o=n(62)(1);r(r.P+r.F*!n(71)([].map,!0),"Array",{map:function(e){return o(this,e,arguments[1])}})},function(e,t,n){var r=n(64);e.exports=function(e){if(!r(e))throw TypeError(e+" is not an object!");return e}},function(e,t,n){e.exports=!n(84)((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}))},function(e,t,n){"use strict";var r=n(79),o=n(10),i=n(54),a=n(185),l=n(186),c=n(53),u=n(170),s=n(187);o(o.S+o.F*!n(188)((function(e){Array.from(e)})),"Array",{from:function(e){var t,n,o,f,p=i(e),d="function"==typeof this?this:Array,h=arguments.length,v=h>1?arguments[1]:void 0,g=void 0!==v,m=0,b=s(p);if(g&&(v=r(v,h>2?arguments[2]:void 0,2)),null==b||d==Array&&l(b))for(n=new d(t=c(p.length));t>m;m++)u(n,m,g?v(p[m],m):p[m]);else for(f=b.call(p),n=new d;!(o=f.next()).done;m++)u(n,m,g?a(f,v,[o.value,m],!0):o.value);return n.length=m,n}})},function(e,t,n){var r=n(39),o=n(89);e.exports=n(30)?function(e,t,n){return r.f(e,t,o(1,n))}:function(e,t,n){return e[t]=n,e}},function(e,t,n){var r=n(109),o=n(70);e.exports=function(e){return r(o(e))}},function(e,t,n){"use strict";var r=n(10),o=n(62)(0),i=n(71)([].forEach,!0);r(r.P+r.F*!i,"Array",{forEach:function(e){return o(this,e,arguments[1])}})},function(e,t,n){var r=n(79),o=n(109),i=n(54),a=n(53),l=n(257);e.exports=function(e,t){var n=1==e,c=2==e,u=3==e,s=4==e,f=6==e,p=5==e||f,d=t||l;return function(t,l,h){for(var v,g,m=i(t),b=o(m),y=r(l,h,3),_=a(b.length),w=0,x=n?d(t,_):c?d(t,0):void 0;_>w;w++)if((p||w in b)&&(g=y(v=b[w],w,m),e))if(n)x[w]=g;else if(g)switch(e){case 3:return!0;case 5:return v;case 6:return w;case 2:x.push(v)}else if(s)return!1;return f?-1:u||s?s:x}}},function(e,t,n){var r=n(56),o=n(196),i=n(147),a=Object.defineProperty;t.f=n(57)?Object.defineProperty:function(e,t,n){if(r(e),t=i(t,!0),r(n),o)try{return a(e,t,n)}catch(e){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(e[t]=n.value),e}},function(e,t){e.exports=function(e){return"object"==typeof e?null!==e:"function"==typeof e}},function(e,t,n){e.exports={default:n(280),__esModule:!0}},function(e,t,n){"use strict";t.__esModule=!0;var r=a(n(302)),o=a(n(306)),i=a(n(201));function a(e){return e&&e.__esModule?e:{default:e}}t.default=function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+(void 0===t?"undefined":(0,i.default)(t)));e.prototype=(0,o.default)(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(r.default?(0,r.default)(e,t):e.__proto__=t)}},function(e,t,n){var r=n(26),o=n(333);"string"==typeof(o=o.__esModule?o.default:o)&&(o=[[e.i,o,""]]);var i={insert:"head",singleton:!1};r(o,i);e.exports=o.locals||{}},function(e,t,n){var r=n(26),o=n(374);"string"==typeof(o=o.__esModule?o.default:o)&&(o=[[e.i,o,""]]);var i={insert:"head",singleton:!1};r(o,i);e.exports=o.locals||{}},function(e,t,n){var r=n(169),o=n(132);e.exports=Object.keys||function(e){return r(e,o)}},function(e,t){e.exports=function(e){if(null==e)throw TypeError("Can't call method on "+e);return e}},function(e,t,n){"use strict";var r=n(31);e.exports=function(e,t){return!!e&&r((function(){t?e.call(null,(function(){}),1):e.call(null)}))}},function(e,t,n){"use strict";var r=n(27),o=n(54),i=n(53),a=n(110),l=n(138),c=n(139),u=Math.max,s=Math.min,f=Math.floor,p=/\$([$&`']|\d\d?|<[^>]*>)/g,d=/\$([$&`']|\d\d?)/g;n(140)("replace",2,(function(e,t,n,h){return[function(r,o){var i=e(this),a=null==r?void 0:r[t];return void 0!==a?a.call(r,i,o):n.call(String(i),r,o)},function(e,t){var o=h(n,e,this,t);if(o.done)return o.value;var f=r(e),p=String(this),d="function"==typeof t;d||(t=String(t));var g=f.global;if(g){var m=f.unicode;f.lastIndex=0}for(var b=[];;){var y=c(f,p);if(null===y)break;if(b.push(y),!g)break;""===String(y[0])&&(f.lastIndex=l(p,i(f.lastIndex),m))}for(var _,w="",x=0,S=0;S=x&&(w+=p.slice(x,O)+I,x=O+k.length)}return w+p.slice(x)}];function v(e,t,r,i,a,l){var c=r+e.length,u=i.length,s=d;return void 0!==a&&(a=o(a),s=p),n.call(l,s,(function(n,o){var l;switch(o.charAt(0)){case"$":return"$";case"&":return e;case"`":return t.slice(0,r);case"'":return t.slice(c);case"<":l=a[o.slice(1,-1)];break;default:var s=+o;if(0===s)return n;if(s>u){var p=f(s/10);return 0===p?n:p<=u?void 0===i[p-1]?o.charAt(1):i[p-1]+o.charAt(1):n}l=i[s-1]}return void 0===l?"":l}))}}))},function(e,t,n){var r=n(63),o=n(118);e.exports=n(57)?function(e,t,n){return r.f(e,t,o(1,n))}:function(e,t,n){return e[t]=n,e}},function(e,t){var n={}.hasOwnProperty;e.exports=function(e,t){return n.call(e,t)}},function(e,t,n){var r=n(198),o=n(148);e.exports=function(e){return r(o(e))}},function(e,t,n){(function(t){function n(e){try{if(!t.localStorage)return!1}catch(e){return!1}var n=t.localStorage[e];return null!=n&&"true"===String(n).toLowerCase()}e.exports=function(e,t){if(n("noDeprecation"))return e;var r=!1;return function(){if(!r){if(n("throwDeprecation"))throw new Error(t);n("traceDeprecation")?console.trace(t):console.warn(t),r=!0}return e.apply(this,arguments)}}}).call(this,n(105))},function(e,t,n){var r=n(10);r(r.S+r.F*!n(30),"Object",{defineProperties:n(168)})},function(e,t){var n=e.exports={version:"2.6.11"};"number"==typeof __e&&(__e=n)},function(e,t,n){var r=n(80);e.exports=function(e,t,n){if(r(e),void 0===t)return e;switch(n){case 1:return function(n){return e.call(t,n)};case 2:return function(n,r){return e.call(t,n,r)};case 3:return function(n,r,o){return e.call(t,n,r,o)}}return function(){return e.apply(t,arguments)}}},function(e,t){e.exports=function(e){if("function"!=typeof e)throw TypeError(e+" is not a function!");return e}},function(e,t,n){var r=n(10),o=n(247),i=n(60),a=n(92),l=n(170);r(r.S,"Object",{getOwnPropertyDescriptors:function(e){for(var t,n,r=i(e),c=a.f,u=o(r),s={},f=0;u.length>f;)void 0!==(n=c(r,t=u[f++]))&&l(s,t,n);return s}})},function(e,t,n){var r=n(27),o=n(168),i=n(132),a=n(131)("IE_PROTO"),l=function(){},c=function(){var e,t=n(167)("iframe"),r=i.length;for(t.style.display="none",n(249).appendChild(t),t.src="javascript:",(e=t.contentWindow.document).open(),e.write(" - - -